Home
last modified time | relevance | path

Searched refs:callout_reset_on (Results 1 – 7 of 7) sorted by relevance

/f-stack/tools/compat/include/sys/
H A Dcallout.h109 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ macro
113 callout_reset_on((c), (on_tick), (fn), (arg), -1)
115 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid))
/f-stack/freebsd/sys/
H A Dcallout.h111 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ macro
115 callout_reset_on((c), (on_tick), (fn), (arg), -1)
117 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid))
/f-stack/lib/
H A Dff_kern_timeout.c782 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, cpu); in callout_schedule_on()
788 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu); in callout_schedule()
/f-stack/freebsd/kern/
H A Dkern_timeout.c1041 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, cpu); in callout_schedule_on()
1047 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu); in callout_schedule()
/f-stack/freebsd/netinet/
H A Dtcp_timer.c939 callout_reset_on(t_callout, delta, f_callout, tp, cpu); in tcp_timer_activate()
/f-stack/freebsd/net/
H A Diflib.c2372 callout_reset_on(&txq->ift_timer, iflib_timer_default, iflib_timer, in iflib_timer()
2491 callout_reset_on(&txq->ift_timer, iflib_timer_default, iflib_timer, txq, in iflib_init_locked()
4004 callout_reset_on(&txq->ift_timer, iflib_timer_default, iflib_timer, txq, in _task_fn_admin()
/f-stack/freebsd/netpfil/ipfw/
H A Dip_fw_dynamic.c2768 callout_reset_on(&V_dyn_timeout, hz, dyn_tick, vnetx, 0); in dyn_tick()