svn commit: r281511 - head/sys/kern

Randall Stewart rrs at FreeBSD.org
Tue Apr 14 00:02:41 UTC 2015


Author: rrs
Date: Tue Apr 14 00:02:39 2015
New Revision: 281511
URL: https://svnweb.freebsd.org/changeset/base/281511

Log:
  Fix my stupid restoral of old code.. must be  c_iflags now.
  
  Thanks jhb for catching my stupidity...
  MFC after:	3 days

Modified:
  head/sys/kern/kern_timeout.c

Modified: head/sys/kern/kern_timeout.c
==============================================================================
--- head/sys/kern/kern_timeout.c	Mon Apr 13 23:06:13 2015	(r281510)
+++ head/sys/kern/kern_timeout.c	Tue Apr 14 00:02:39 2015	(r281511)
@@ -592,7 +592,7 @@ callout_cc_add(struct callout *c, struct
 	c->c_iflags &= ~CALLOUT_PROCESSED;
 	c->c_flags |= CALLOUT_ACTIVE;
 	if (flags & C_DIRECT_EXEC)
-		c->c_flags |= CALLOUT_DIRECT;
+		c->c_iflags |= CALLOUT_DIRECT;
 	c->c_func = func;
 	c->c_time = sbt;
 	c->c_precision = precision;


More information about the svn-src-all mailing list