Lines Matching defs:c_iflags

175 #define	callout_migrating(c)	((c)->c_iflags & CALLOUT_DFRMIGRATION)
336 c->c_iflags = CALLOUT_LOCAL_ALLOC;
491 if (tmp->c_iflags & CALLOUT_DIRECT) {
511 tmp->c_iflags |= CALLOUT_PROCESSED;
597 c->c_iflags |= CALLOUT_PENDING;
598 c->c_iflags &= ~CALLOUT_PROCESSED;
601 c->c_iflags |= CALLOUT_DIRECT;
631 if ((c->c_iflags & CALLOUT_LOCAL_ALLOC) == 0)
650 int c_iflags;
665 KASSERT((c->c_iflags & CALLOUT_PENDING) == CALLOUT_PENDING,
666 ("softclock_call_cc: pend %p %x", c, c->c_iflags));
680 c_iflags = c->c_iflags;
681 if (c->c_iflags & CALLOUT_LOCAL_ALLOC)
682 c->c_iflags = CALLOUT_LOCAL_ALLOC;
684 c->c_iflags &= ~CALLOUT_PENDING;
748 if ((c_iflags & CALLOUT_RETURNUNLOCKED) == 0)
777 c->c_iflags &= ~CALLOUT_DFRMIGRATION;
784 KASSERT((c_iflags & CALLOUT_LOCAL_ALLOC) == 0,
811 c->c_iflags &= ~CALLOUT_DFRMIGRATION;
827 * Note: we need to check the cached copy of c_iflags because
831 KASSERT((c_iflags & CALLOUT_LOCAL_ALLOC) == 0 ||
832 c->c_iflags == CALLOUT_LOCAL_ALLOC,
834 if (c_iflags & CALLOUT_LOCAL_ALLOC)
1040 if ((c->c_iflags & CALLOUT_LOCAL_ALLOC) ||
1084 if (c->c_iflags & CALLOUT_PENDING) {
1085 if ((c->c_iflags & CALLOUT_PROCESSED) == 0) {
1093 c->c_iflags &= ~ CALLOUT_PENDING;
1126 c->c_iflags |= (CALLOUT_DFRMIGRATION | CALLOUT_PENDING);
1189 if (c->c_iflags & CALLOUT_DIRECT) {
1199 if ((c->c_iflags & (CALLOUT_DFRMIGRATION | CALLOUT_PENDING)) ==
1214 c->c_iflags &= ~CALLOUT_PENDING;
1323 c->c_iflags &= ~CALLOUT_DFRMIGRATION;
1344 c->c_iflags &= ~CALLOUT_DFRMIGRATION;
1380 if ((c->c_iflags & CALLOUT_PENDING) == 0) {
1393 c->c_iflags &= ~CALLOUT_PENDING;
1399 if ((c->c_iflags & CALLOUT_PROCESSED) == 0) {
1418 c->c_iflags = CALLOUT_RETURNUNLOCKED;
1421 c->c_iflags = 0;
1438 c->c_iflags = flags & (CALLOUT_RETURNUNLOCKED | CALLOUT_SHAREDLOCK);
1639 C_DB_PRINTF("%#x", c_iflags);