[NTOSKRNL]
authorThomas Faber <thomas.faber@reactos.org>
Wed, 20 Jun 2012 08:32:35 +0000 (08:32 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Wed, 20 Jun 2012 08:32:35 +0000 (08:32 +0000)
- tcpip is called too often. Don't spam the debug log.
See issue #7129 for more details.

svn path=/trunk/; revision=56757

reactos/ntoskrnl/ke/wait.c

index 1edf2ba..2a24c00 100644 (file)
@@ -596,8 +596,8 @@ KeWaitForMultipleObjects(IN ULONG Count,
              (!Timeout || Timeout->QuadPart != 0))
     {
         /* HACK: tcpip is broken and waits with spinlocks acquired (bug #7129) */
-        DPRINT1("%s called at DISPATCH_LEVEL with non-zero timeout!\n",
-                __FUNCTION__);
+        DPRINT("%s called at DISPATCH_LEVEL with non-zero timeout!\n",
+               __FUNCTION__);
     }
     else
         ASSERT(KeGetCurrentIrql() <= DISPATCH_LEVEL);