K 10 svn:author V 8 bmilekic K 8 svn:date V 27 2001-01-20T21:29:10.000000Z K 7 svn:log V 437 When short of mbufs or mbuf clusters, we sleep on appropriate "counters." The counters are incremented when a thread goes to sleep and decremented either when a thread is woken up by another thread or when the sleep times out. There existed a race where the sleep count could be decremented twice resulting in an eventual underflow. Move the decrementing of the "counters" to the thread initiating the sleep and thus remedy the problem. END