Home
last modified time | relevance | path

Searched refs:next_timer (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/usb/chipidea/
H A Dotg_fsm.c249 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_del_timer() local
269 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_del_timer()
270 ktime_before(ci->hr_timeouts[next_timer], in ci_otg_del_timer()
272 next_timer = cur_timer; in ci_otg_del_timer()
276 if (next_timer != NUM_OTG_FSM_TIMERS) { in ci_otg_del_timer()
277 ci->next_otg_timer = next_timer; in ci_otg_del_timer()
279 ci->hr_timeouts[next_timer], NSEC_PER_MSEC, in ci_otg_del_timer()
389 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_hrtimer_func() local
403 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_hrtimer_func()
405 ci->hr_timeouts[next_timer])) in ci_otg_hrtimer_func()
[all …]
/linux/drivers/scsi/fcoe/
H A Dfcoe_ctlr.c823 unsigned long next_timer = jiffies + msecs_to_jiffies(FIP_VN_KA_PERIOD); in fcoe_ctlr_age_fcfs() local
842 } else if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs()
843 next_timer = deadline; in fcoe_ctlr_age_fcfs()
859 if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs()
860 next_timer = deadline; in fcoe_ctlr_age_fcfs()
877 return next_timer; in fcoe_ctlr_age_fcfs()
1797 unsigned long next_timer; in fcoe_ctlr_timer_work() local
1809 next_timer = fcoe_ctlr_age_fcfs(fip); in fcoe_ctlr_timer_work()
1816 } else if (time_after(next_timer, fip->sel_time)) in fcoe_ctlr_timer_work()
1817 next_timer = fip->sel_time; in fcoe_ctlr_timer_work()
[all …]
/linux/drivers/net/ethernet/rocker/
H A Drocker_ofdpa.c1975 unsigned long next_timer = jiffies + ofdpa->ageing_time; in ofdpa_fdb_cleanup() local
1994 } else if (time_before(expires, next_timer)) { in ofdpa_fdb_cleanup()
1995 next_timer = expires; in ofdpa_fdb_cleanup()
2001 mod_timer(&ofdpa->fdb_cleanup_timer, round_jiffies_up(next_timer)); in ofdpa_fdb_cleanup()
/linux/drivers/net/
H A Dtun.c386 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local
404 if (time_before(this_timer, next_timer)) in tun_flow_cleanup()
405 next_timer = this_timer; in tun_flow_cleanup()
410 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
/linux/drivers/net/vxlan/
H A Dvxlan_core.c2855 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local
2881 } else if (time_before(timeout, next_timer)) { in vxlan_cleanup()
2882 next_timer = timeout; in vxlan_cleanup()
2887 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()