From: Thomas Faber Date: Wed, 20 Jun 2012 08:32:35 +0000 (+0000) Subject: [NTOSKRNL] X-Git-Tag: backups/ros-csrss@57560~786 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=f0c893c3f62b2ef0ef7b6877d1092e25e58179a2 [NTOSKRNL] - tcpip is called too often. Don't spam the debug log. See issue #7129 for more details. svn path=/trunk/; revision=56757 --- diff --git a/reactos/ntoskrnl/ke/wait.c b/reactos/ntoskrnl/ke/wait.c index 1edf2bac15e..2a24c006b2f 100644 --- a/reactos/ntoskrnl/ke/wait.c +++ b/reactos/ntoskrnl/ke/wait.c @@ -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);