Home
last modified time | relevance | path

Searched refs:CALLOUT_DFRMIGRATION (Results 1 – 2 of 2) sorted by relevance

/freebsd-14-stable/sys/kern/
HDkern_timeout.c180 #define callout_migrating(c) ((c)->c_iflags & CALLOUT_DFRMIGRATION)
765 c->c_iflags &= ~CALLOUT_DFRMIGRATION; in softclock_call_cc()
796 c->c_iflags &= ~CALLOUT_DFRMIGRATION; in softclock_call_cc()
1047 c->c_iflags |= (CALLOUT_DFRMIGRATION | CALLOUT_PENDING); in callout_reset_sbt_on()
1123 if ((c->c_iflags & (CALLOUT_DFRMIGRATION | CALLOUT_PENDING)) == in _callout_stop_safe()
1124 (CALLOUT_DFRMIGRATION | CALLOUT_PENDING) && in _callout_stop_safe()
1251 c->c_iflags &= ~CALLOUT_DFRMIGRATION; in _callout_stop_safe()
1272 c->c_iflags &= ~CALLOUT_DFRMIGRATION; in _callout_stop_safe()
/freebsd-14-stable/sys/sys/
HDcallout.h50 #define CALLOUT_DFRMIGRATION 0x0040 /* callout in deferred migration mode */ macro