From f0c893c3f62b2ef0ef7b6877d1092e25e58179a2 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Wed, 20 Jun 2012 08:32:35 +0000 Subject: [PATCH] [NTOSKRNL] - 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);