Searched refs:next_timer (Results 1 – 7 of 7) sorted by relevance
/linux-4.1.27/drivers/usb/chipidea/ |
D | otg_fsm.c | 241 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_del_timer() local 259 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_del_timer() 260 (ci->hr_timeouts[next_timer].tv64 < in ci_otg_del_timer() 262 next_timer = cur_timer; in ci_otg_del_timer() 266 if (next_timer != NUM_OTG_FSM_TIMERS) { in ci_otg_del_timer() 267 ci->next_otg_timer = next_timer; in ci_otg_del_timer() 269 ci->hr_timeouts[next_timer], NSEC_PER_MSEC, in ci_otg_del_timer() 372 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_hrtimer_func() local 386 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_hrtimer_func() 388 ci->hr_timeouts[next_timer].tv64)) in ci_otg_hrtimer_func() [all …]
|
/linux-4.1.27/kernel/time/ |
D | timer.c | 82 unsigned long next_timer; member 419 time_before(timer->expires, base->next_timer)) in internal_add_timer() 420 base->next_timer = timer->expires; in internal_add_timer() 731 if (timer->expires == base->next_timer) in detach_if_pending() 732 base->next_timer = base->timer_jiffies; in detach_if_pending() 1372 if (time_before_eq(base->next_timer, base->timer_jiffies)) in get_next_timer_interrupt() 1373 base->next_timer = __next_timer_interrupt(base); in get_next_timer_interrupt() 1374 expires = base->next_timer; in get_next_timer_interrupt() 1639 base->next_timer = base->timer_jiffies; in init_timer_cpu()
|
D | hrtimer.c | 878 struct timerqueue_node *next_timer; in __remove_hrtimer() local 882 next_timer = timerqueue_getnext(&base->active); in __remove_hrtimer() 884 if (&timer->node == next_timer) { in __remove_hrtimer()
|
/linux-4.1.27/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 826 unsigned long next_timer = jiffies + msecs_to_jiffies(FIP_VN_KA_PERIOD); in fcoe_ctlr_age_fcfs() local 846 } else if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs() 847 next_timer = deadline; in fcoe_ctlr_age_fcfs() 863 if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs() 864 next_timer = deadline; in fcoe_ctlr_age_fcfs() 882 return next_timer; in fcoe_ctlr_age_fcfs() 1772 unsigned long next_timer; in fcoe_ctlr_timer_work() local 1784 next_timer = fcoe_ctlr_age_fcfs(fip); in fcoe_ctlr_timer_work() 1791 } else if (time_after(next_timer, fip->sel_time)) in fcoe_ctlr_timer_work() 1792 next_timer = fip->sel_time; in fcoe_ctlr_timer_work() [all …]
|
/linux-4.1.27/net/bridge/ |
D | br_fdb.c | 273 unsigned long next_timer = jiffies + br->ageing_time; in br_fdb_cleanup() local 288 else if (time_before(this_timer, next_timer)) in br_fdb_cleanup() 289 next_timer = this_timer; in br_fdb_cleanup() 294 mod_timer(&br->gc_timer, round_jiffies_up(next_timer)); in br_fdb_cleanup()
|
/linux-4.1.27/drivers/net/ |
D | tun.c | 300 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local 317 else if (time_before(this_timer, next_timer)) in tun_flow_cleanup() 318 next_timer = this_timer; in tun_flow_cleanup() 323 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
|
D | vxlan.c | 2125 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local 2149 } else if (time_before(timeout, next_timer)) in vxlan_cleanup() 2150 next_timer = timeout; in vxlan_cleanup() 2155 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()
|