svn commit: r247711 - projects/calloutng/sys/kern
Davide Italiano
davide at FreeBSD.org
Sun Mar 3 13:53:59 UTC 2013
Author: davide
Date: Sun Mar 3 13:53:58 2013
New Revision: 247711
URL: http://svnweb.freebsd.org/changeset/base/247711
Log:
Fix a braino. Pointy hat to me, I've realized I was wrong after a cup of
coffe.
Modified:
projects/calloutng/sys/kern/kern_timeout.c
Modified: projects/calloutng/sys/kern/kern_timeout.c
==============================================================================
--- projects/calloutng/sys/kern/kern_timeout.c Sun Mar 3 13:39:54 2013 (r247710)
+++ projects/calloutng/sys/kern/kern_timeout.c Sun Mar 3 13:53:58 2013 (r247711)
@@ -1135,7 +1135,7 @@ again:
* will be packed up, just let softclock()
* take care of it.
*/
- cc->cc_exec_entity[direct].cc_waiting = FALSE;
+ cc->cc_exec_entity[direct].cc_waiting = TRUE;
DROP_GIANT();
CC_UNLOCK(cc);
sleepq_add(
More information about the svn-src-projects
mailing list