1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Fix my stupid restoral of old code.. must be c_iflags now.

Thanks jhb for catching my stupidity...
MFC after:	3 days
This commit is contained in:
Randall Stewart 2015-04-14 00:02:39 +00:00
parent 07a2df5d83
commit b132edb56f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281511

View File

@ -592,7 +592,7 @@ callout_cc_add(struct callout *c, struct callout_cpu *cc,
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;