Searched refs:next_timer (Results 1 – 10 of 10) sorted by relevance
/Linux-v4.19/drivers/usb/chipidea/ |
D | otg_fsm.c | 249 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_del_timer() local 267 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_del_timer() 268 ktime_before(ci->hr_timeouts[next_timer], in ci_otg_del_timer() 270 next_timer = cur_timer; in ci_otg_del_timer() 274 if (next_timer != NUM_OTG_FSM_TIMERS) { in ci_otg_del_timer() 275 ci->next_otg_timer = next_timer; in ci_otg_del_timer() 277 ci->hr_timeouts[next_timer], NSEC_PER_MSEC, in ci_otg_del_timer() 387 enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS; in ci_otg_hrtimer_func() local 401 if ((next_timer == NUM_OTG_FSM_TIMERS) || in ci_otg_hrtimer_func() 403 ci->hr_timeouts[next_timer])) in ci_otg_hrtimer_func() [all …]
|
/Linux-v4.19/kernel/time/ |
D | hrtimer.c | 525 cpu_base->next_timer = timer; in __hrtimer_next_event_base() 559 struct hrtimer *next_timer = NULL; in __hrtimer_get_next_event() local 568 next_timer = cpu_base->softirq_next_timer; in __hrtimer_get_next_event() 573 cpu_base->next_timer = next_timer; in __hrtimer_get_next_event() 626 if (cpu_base->next_timer && cpu_base->next_timer->is_soft) { in hrtimer_force_reprogram() 824 cpu_base->next_timer = timer; in hrtimer_reprogram() 995 if (reprogram && timer == cpu_base->next_timer) in __remove_hrtimer() 1817 cpu_base->next_timer = NULL; in hrtimers_prepare_cpu()
|
D | tick-sched.h | 70 u64 next_timer; member
|
D | timer_list.c | 184 P(next_timer); in print_cpu()
|
D | tick-sched.c | 684 ts->next_timer = next_tmr; in tick_nohz_next_event()
|
/Linux-v4.19/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 830 unsigned long next_timer = jiffies + msecs_to_jiffies(FIP_VN_KA_PERIOD); in fcoe_ctlr_age_fcfs() local 850 } else if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs() 851 next_timer = deadline; in fcoe_ctlr_age_fcfs() 867 if (time_after(next_timer, deadline)) in fcoe_ctlr_age_fcfs() 868 next_timer = deadline; in fcoe_ctlr_age_fcfs() 886 return next_timer; in fcoe_ctlr_age_fcfs() 1813 unsigned long next_timer; in fcoe_ctlr_timer_work() local 1825 next_timer = fcoe_ctlr_age_fcfs(fip); in fcoe_ctlr_timer_work() 1832 } else if (time_after(next_timer, fip->sel_time)) in fcoe_ctlr_timer_work() 1833 next_timer = fip->sel_time; in fcoe_ctlr_timer_work() [all …]
|
/Linux-v4.19/include/linux/ |
D | hrtimer.h | 217 struct hrtimer *next_timer; member
|
/Linux-v4.19/drivers/net/ethernet/rocker/ |
D | rocker_ofdpa.c | 1991 unsigned long next_timer = jiffies + ofdpa->ageing_time; in ofdpa_fdb_cleanup() local 2010 } else if (time_before(expires, next_timer)) { in ofdpa_fdb_cleanup() 2011 next_timer = expires; in ofdpa_fdb_cleanup() 2017 mod_timer(&ofdpa->fdb_cleanup_timer, round_jiffies_up(next_timer)); in ofdpa_fdb_cleanup()
|
/Linux-v4.19/drivers/net/ |
D | tun.c | 490 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local 510 if (time_before(this_timer, next_timer)) in tun_flow_cleanup() 511 next_timer = this_timer; in tun_flow_cleanup() 516 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
|
D | vxlan.c | 2369 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local 2397 } else if (time_before(timeout, next_timer)) in vxlan_cleanup() 2398 next_timer = timeout; in vxlan_cleanup() 2403 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()
|