Home
last modified time | relevance | path

Searched refs:next_timer (Results 1 – 8 of 8) 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/kernel/time/
H A Dhrtimer.c544 cpu_base->next_timer = timer; in __hrtimer_next_event_base()
558 * Recomputes cpu_base::*next_timer and returns the earliest expires_next
581 struct hrtimer *next_timer = NULL; in __hrtimer_get_next_event() local
590 next_timer = cpu_base->softirq_next_timer; in __hrtimer_get_next_event()
595 cpu_base->next_timer = next_timer; in __hrtimer_get_next_event()
623 * If a softirq timer is expiring first, update cpu_base->next_timer in hrtimer_update_next_event()
627 cpu_base->next_timer = cpu_base->softirq_next_timer; in hrtimer_update_next_event()
660 struct hrtimer *next_timer, in __hrtimer_reprogram() argument
703 __hrtimer_reprogram(cpu_base, cpu_base->next_timer, expires_nex in hrtimer_force_reprogram()
[all...]
H A Dtimer_list.c168 P(next_timer); in print_cpu()
/linux/include/linux/
H A Dhrtimer_defs.h94 * @next_timer: Pointer to the first expiring timer
99 * Note: next_timer is just an optimization for __remove_hrtimer().
124 struct hrtimer *next_timer; member
/linux/drivers/net/ethernet/rocker/
H A Drocker_ofdpa.c1989 unsigned long next_timer = jiffies + ofdpa->ageing_time; in ofdpa_fdb_cleanup() local
2008 } else if (time_before(expires, next_timer)) { in ofdpa_fdb_cleanup()
2009 next_timer = expires; in ofdpa_fdb_cleanup()
2015 mod_timer(&ofdpa->fdb_cleanup_timer, round_jiffies_up(next_timer)); in ofdpa_fdb_cleanup()
/linux/drivers/net/
H A Dtun.c383 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local
401 if (time_before(this_timer, next_timer)) in tun_flow_cleanup()
402 next_timer = this_timer; in tun_flow_cleanup()
407 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
/linux/arch/powerpc/kvm/
H A Dbook3s_hv.c4419 u64 next_timer; in kvmhv_p9_guest_entry() local
4422 next_timer = timer_get_next_tb(); in kvmhv_p9_guest_entry()
4423 if (*tb >= next_timer) in kvmhv_p9_guest_entry()
4425 if (next_timer < time_limit) in kvmhv_p9_guest_entry()
4426 time_limit = next_timer; in kvmhv_p9_guest_entry()
/linux/drivers/net/vxlan/
H A Dvxlan_core.c2820 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local
2846 } else if (time_before(timeout, next_timer)) { in vxlan_cleanup()
2847 next_timer = timeout; in vxlan_cleanup()
2852 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()