[NTOSKRNL]

- tcpip is called too often. Don't spam the debug log.
See issue #7129 for more details.

svn path=/trunk/; revision=56757
This commit is contained in:
Thomas Faber 2012-06-20 08:32:35 +00:00
parent c5a2cddfc9
commit f0c893c3f6

View 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);