Searched refs:nextcl (Results 1 – 1 of 1) sorted by relevance
175 #define CALLOUT_LIST_BEFORE(cl, nextcl) \ argument177 (cl)->cl_prev = (nextcl)->cl_prev; \178 (cl)->cl_next = (nextcl); \179 (nextcl)->cl_prev = (cl); \359 callout_list_t *nextcl; in callout_queue_add() local363 nextcl = ct->ct_queue.ch_head; in callout_queue_add()364 if ((nextcl == NULL) || (expiration < nextcl->cl_expiration)) { in callout_queue_add()369 while (nextcl != NULL) { in callout_queue_add()370 if (expiration < nextcl->cl_expiration) { in callout_queue_add()371 CALLOUT_LIST_BEFORE(cl, nextcl); in callout_queue_add()[all …]