next_timer       1988 drivers/net/ethernet/rocker/rocker_ofdpa.c 	unsigned long next_timer = jiffies + ofdpa->ageing_time;
next_timer       2007 drivers/net/ethernet/rocker/rocker_ofdpa.c 		} else if (time_before(expires, next_timer)) {
next_timer       2008 drivers/net/ethernet/rocker/rocker_ofdpa.c 			next_timer = expires;
next_timer       2014 drivers/net/ethernet/rocker/rocker_ofdpa.c 	mod_timer(&ofdpa->fdb_cleanup_timer, round_jiffies_up(next_timer));
next_timer        484 drivers/net/tun.c 	unsigned long next_timer = jiffies + delay;
next_timer        504 drivers/net/tun.c 			if (time_before(this_timer, next_timer))
next_timer        505 drivers/net/tun.c 				next_timer = this_timer;
next_timer        510 drivers/net/tun.c 		mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
next_timer       2722 drivers/net/vxlan.c 	unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
next_timer       2750 drivers/net/vxlan.c 			} else if (time_before(timeout, next_timer))
next_timer       2751 drivers/net/vxlan.c 				next_timer = timeout;
next_timer       2756 drivers/net/vxlan.c 	mod_timer(&vxlan->age_timer, next_timer);
next_timer        821 drivers/scsi/fcoe/fcoe_ctlr.c 	unsigned long next_timer = jiffies + msecs_to_jiffies(FIP_VN_KA_PERIOD);
next_timer        841 drivers/scsi/fcoe/fcoe_ctlr.c 			} else if (time_after(next_timer, deadline))
next_timer        842 drivers/scsi/fcoe/fcoe_ctlr.c 				next_timer = deadline;
next_timer        858 drivers/scsi/fcoe/fcoe_ctlr.c 			if (time_after(next_timer, deadline))
next_timer        859 drivers/scsi/fcoe/fcoe_ctlr.c 				next_timer = deadline;
next_timer        877 drivers/scsi/fcoe/fcoe_ctlr.c 	return next_timer;
next_timer       1804 drivers/scsi/fcoe/fcoe_ctlr.c 	unsigned long next_timer;
next_timer       1816 drivers/scsi/fcoe/fcoe_ctlr.c 	next_timer = fcoe_ctlr_age_fcfs(fip);
next_timer       1823 drivers/scsi/fcoe/fcoe_ctlr.c 		} else if (time_after(next_timer, fip->sel_time))
next_timer       1824 drivers/scsi/fcoe/fcoe_ctlr.c 			next_timer = fip->sel_time;
next_timer       1837 drivers/scsi/fcoe/fcoe_ctlr.c 		if (time_after(next_timer, fip->ctlr_ka_time))
next_timer       1838 drivers/scsi/fcoe/fcoe_ctlr.c 			next_timer = fip->ctlr_ka_time;
next_timer       1845 drivers/scsi/fcoe/fcoe_ctlr.c 		if (time_after(next_timer, fip->port_ka_time))
next_timer       1846 drivers/scsi/fcoe/fcoe_ctlr.c 			next_timer = fip->port_ka_time;
next_timer       1849 drivers/scsi/fcoe/fcoe_ctlr.c 		mod_timer(&fip->timer, next_timer);
next_timer        249 drivers/usb/chipidea/otg_fsm.c 	enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS;
next_timer        267 drivers/usb/chipidea/otg_fsm.c 				if ((next_timer == NUM_OTG_FSM_TIMERS) ||
next_timer        268 drivers/usb/chipidea/otg_fsm.c 					ktime_before(ci->hr_timeouts[next_timer],
next_timer        270 drivers/usb/chipidea/otg_fsm.c 					next_timer = cur_timer;
next_timer        274 drivers/usb/chipidea/otg_fsm.c 	if (next_timer != NUM_OTG_FSM_TIMERS) {
next_timer        275 drivers/usb/chipidea/otg_fsm.c 		ci->next_otg_timer = next_timer;
next_timer        277 drivers/usb/chipidea/otg_fsm.c 			ci->hr_timeouts[next_timer], NSEC_PER_MSEC,
next_timer        387 drivers/usb/chipidea/otg_fsm.c 	enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS;
next_timer        401 drivers/usb/chipidea/otg_fsm.c 			if ((next_timer == NUM_OTG_FSM_TIMERS) ||
next_timer        403 drivers/usb/chipidea/otg_fsm.c 					ci->hr_timeouts[next_timer]))
next_timer        404 drivers/usb/chipidea/otg_fsm.c 				next_timer = cur_timer;
next_timer        408 drivers/usb/chipidea/otg_fsm.c 	if (next_timer < NUM_OTG_FSM_TIMERS) {
next_timer        409 drivers/usb/chipidea/otg_fsm.c 		timeout = &ci->hr_timeouts[next_timer];
next_timer        412 drivers/usb/chipidea/otg_fsm.c 		ci->next_otg_timer = next_timer;
next_timer        233 include/linux/hrtimer.h 	struct hrtimer			*next_timer;
next_timer        536 kernel/time/hrtimer.c 				cpu_base->next_timer = timer;
next_timer        570 kernel/time/hrtimer.c 	struct hrtimer *next_timer = NULL;
next_timer        579 kernel/time/hrtimer.c 		next_timer = cpu_base->softirq_next_timer;
next_timer        584 kernel/time/hrtimer.c 		cpu_base->next_timer = next_timer;
next_timer        637 kernel/time/hrtimer.c 	if (cpu_base->next_timer && cpu_base->next_timer->is_soft) {
next_timer        835 kernel/time/hrtimer.c 	cpu_base->next_timer = timer;
next_timer       1008 kernel/time/hrtimer.c 	if (reprogram && timer == cpu_base->next_timer)
next_timer       2002 kernel/time/hrtimer.c 	cpu_base->next_timer = NULL;
next_timer        697 kernel/time/tick-sched.c 		ts->next_timer = next_tmr;
next_timer         77 kernel/time/tick-sched.h 	u64				next_timer;
next_timer        179 kernel/time/timer_list.c 		P(next_timer);