Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/usb/chipidea/
Dotg_fsm.c249 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-5.19.10/kernel/time/
Dhrtimer.c535 cpu_base->next_timer = timer; in __hrtimer_next_event_base()
572 struct hrtimer *next_timer = NULL; in __hrtimer_get_next_event() local
581 next_timer = cpu_base->softirq_next_timer; in __hrtimer_get_next_event()
586 cpu_base->next_timer = next_timer; in __hrtimer_get_next_event()
618 cpu_base->next_timer = cpu_base->softirq_next_timer; in hrtimer_update_next_event()
656 struct hrtimer *next_timer, in __hrtimer_reprogram() argument
699 __hrtimer_reprogram(cpu_base, cpu_base->next_timer, expires_next); in hrtimer_force_reprogram()
864 cpu_base->next_timer = timer; in hrtimer_reprogram()
1127 if (reprogram && timer == cpu_base->next_timer) in __remove_hrtimer()
1228 force_local &= base->cpu_base->next_timer == timer; in __hrtimer_start_range_ns()
[all …]
Dtick-sched.h79 u64 next_timer; member
Dtimer_list.c164 P(next_timer); in print_cpu()
Dtick-sched.c822 ts->next_timer = next_tick; in tick_nohz_next_event()
/linux-5.19.10/drivers/scsi/fcoe/
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()
1798 unsigned long next_timer; in fcoe_ctlr_timer_work() local
1810 next_timer = fcoe_ctlr_age_fcfs(fip); in fcoe_ctlr_timer_work()
1817 } else if (time_after(next_timer, fip->sel_time)) in fcoe_ctlr_timer_work()
1818 next_timer = fip->sel_time; in fcoe_ctlr_timer_work()
[all …]
/linux-5.19.10/include/linux/
Dhrtimer.h234 struct hrtimer *next_timer; member
/linux-5.19.10/drivers/net/ethernet/rocker/
Drocker_ofdpa.c1988 unsigned long next_timer = jiffies + ofdpa->ageing_time; in ofdpa_fdb_cleanup() local
2007 } else if (time_before(expires, next_timer)) { in ofdpa_fdb_cleanup()
2008 next_timer = expires; in ofdpa_fdb_cleanup()
2014 mod_timer(&ofdpa->fdb_cleanup_timer, round_jiffies_up(next_timer)); in ofdpa_fdb_cleanup()
/linux-5.19.10/drivers/net/
Dtun.c445 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local
463 if (time_before(this_timer, next_timer)) in tun_flow_cleanup()
464 next_timer = this_timer; in tun_flow_cleanup()
469 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
/linux-5.19.10/arch/powerpc/kvm/
Dbook3s_hv.c4042 u64 next_timer; in kvmhv_p9_guest_entry() local
4045 next_timer = timer_get_next_tb(); in kvmhv_p9_guest_entry()
4046 if (*tb >= next_timer) in kvmhv_p9_guest_entry()
4048 if (next_timer < time_limit) in kvmhv_p9_guest_entry()
4049 time_limit = next_timer; in kvmhv_p9_guest_entry()
/linux-5.19.10/drivers/net/vxlan/
Dvxlan_core.c2852 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local
2880 } else if (time_before(timeout, next_timer)) in vxlan_cleanup()
2881 next_timer = timeout; in vxlan_cleanup()
2886 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()