Searched refs:next_timer (Results 1 – 12 of 12) sorted by relevance
/linux-4.4.14/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.4.14/kernel/time/ |
D | timer.c | 84 unsigned long next_timer; member 427 time_before(timer->expires, base->next_timer)) in internal_add_timer() 428 base->next_timer = timer->expires; in internal_add_timer() 742 if (timer->expires == base->next_timer) in detach_if_pending() 743 base->next_timer = base->timer_jiffies; in detach_if_pending() 1395 if (time_before_eq(base->next_timer, base->timer_jiffies)) in get_next_timer_interrupt() 1396 base->next_timer = __next_timer_interrupt(base); in get_next_timer_interrupt() 1397 nextevt = base->next_timer; in get_next_timer_interrupt() 1650 base->next_timer = base->timer_jiffies; in init_timer_cpu()
|
D | tick-sched.h | 60 u64 next_timer; member
|
D | hrtimer.c | 465 cpu_base->next_timer = timer; in hrtimer_update_next_timer() 642 cpu_base->next_timer = timer; in hrtimer_reprogram() 921 if (reprogram && timer == cpu_base->next_timer) in __remove_hrtimer()
|
D | timer_list.c | 192 P(next_timer); in print_cpu()
|
D | tick-sched.c | 599 ts->next_timer = next_tmr; in tick_nohz_stop_sched_tick()
|
/linux-4.4.14/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.4.14/net/bridge/ |
D | br_fdb.c | 296 unsigned long next_timer = jiffies + br->ageing_time; in br_fdb_cleanup() local 313 else if (time_before(this_timer, next_timer)) in br_fdb_cleanup() 314 next_timer = this_timer; in br_fdb_cleanup() 319 mod_timer(&br->gc_timer, round_jiffies_up(next_timer)); in br_fdb_cleanup()
|
/linux-4.4.14/include/linux/ |
D | hrtimer.h | 200 struct hrtimer *next_timer; member
|
/linux-4.4.14/drivers/net/ |
D | tun.c | 354 unsigned long next_timer = jiffies + delay; in tun_flow_cleanup() local 371 else if (time_before(this_timer, next_timer)) in tun_flow_cleanup() 372 next_timer = this_timer; in tun_flow_cleanup() 377 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); in tun_flow_cleanup()
|
D | vxlan.c | 2224 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; in vxlan_cleanup() local 2249 } else if (time_before(timeout, next_timer)) in vxlan_cleanup() 2250 next_timer = timeout; in vxlan_cleanup() 2255 mod_timer(&vxlan->age_timer, next_timer); in vxlan_cleanup()
|
/linux-4.4.14/drivers/net/ethernet/rocker/ |
D | rocker.c | 3708 unsigned long next_timer = jiffies + rocker->ageing_time; in rocker_fdb_cleanup() local 3727 } else if (time_before(expires, next_timer)) { in rocker_fdb_cleanup() 3728 next_timer = expires; in rocker_fdb_cleanup() 3734 mod_timer(&rocker->fdb_cleanup_timer, round_jiffies_up(next_timer)); in rocker_fdb_cleanup()
|