Searched refs:next_tick (Results 1 - 18 of 18) sorted by relevance

/linux-master/arch/parisc/kernel/
H A Dtime.c67 unsigned long next_tick; local
75 /* Initialize next_tick to the old expected tick time. */
76 next_tick = cpuinfo->it_value;
82 next_tick += cpt;
83 } while (next_tick - now > cpt);
86 cpuinfo->it_value = next_tick;
101 * "next_tick - now" will always give the difference regardless
106 while (next_tick - now > cpt)
107 next_tick += cpt;
110 * Only bottom 32-bits of next_tick ar
158 unsigned long next_tick = mfctl(16) + clocktick; local
[all...]
/linux-master/drivers/net/ethernet/dec/tulip/
H A Dtimer.c24 int next_tick = 2*HZ; local
46 next_tick = 60*HZ;
104 next_tick = (24*HZ)/10;
111 next_tick = 3*HZ;
114 next_tick = 60*HZ;
136 mod_timer(&tp->timer, RUN_AT(next_tick));
145 int next_tick = 60*HZ; local
151 if (next_tick) {
152 mod_timer(&tp->timer, RUN_AT(next_tick));
161 int next_tick local
[all...]
H A Dpnic.c92 int next_tick = 60*HZ; local
106 next_tick = 3*HZ;
119 next_tick = 1*HZ;
123 next_tick = 60*HZ;
131 next_tick = 3*HZ;
134 next_tick = 1*HZ;
161 mod_timer(&tp->timer, RUN_AT(next_tick));
H A D21142.c35 int next_tick = 60*HZ; local
48 next_tick = 3*HZ;
51 next_tick = 60*HZ;
68 next_tick = 3*HZ;
101 next_tick = 3*HZ;
107 mod_timer(&tp->timer, RUN_AT(next_tick));
H A Dpnic2.c84 int next_tick = 60*HZ; local
90 if (next_tick) {
91 mod_timer(&tp->timer, RUN_AT(next_tick));
H A Dtulip_core.c286 int next_tick = 3*HZ; local
450 next_tick = 1*HZ;
494 tp->timer.expires = RUN_AT(next_tick);
/linux-master/kernel/time/
H A Dtick-sched.h46 * @next_tick: Next tick to be fired when in dynticks mode.
75 ktime_t next_tick; member in struct:tick_sched
H A Dtick-sched.c273 ts->next_tick = 0;
299 ts->next_tick = 0;
857 ts->next_tick = 0;
895 u64 basemono, next_tick, delta, expires; local
915 next_tick = basemono + TICK_NSEC;
924 next_tick = get_next_timer_interrupt(basejiff, basemono);
925 ts->next_timer = next_tick;
928 /* Make sure next_tick is never before basemono! */
929 if (WARN_ON_ONCE(basemono > next_tick))
930 next_tick
[all...]
/linux-master/drivers/watchdog/
H A Dbcm47xx_wdt.c109 u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms); local
112 wdt->timer_set_ms(wdt, next_tick);
/linux-master/drivers/net/ethernet/realtek/
H A D8139too.c1463 static int next_tick = 3 * HZ; variable
1498 next_tick = HZ / 10;
1521 next_tick = HZ / 10;
1529 next_tick = HZ / 10;
1546 next_tick = HZ / 10;
1558 next_tick = HZ / 10;
1597 next_tick = HZ * 60;
1614 unsigned long thr_delay = next_tick;
1644 schedule_delayed_work(&tp->thread, next_tick);
1711 schedule_delayed_work(&tp->thread, next_tick);
[all...]
/linux-master/drivers/net/ethernet/packetengines/
H A Dyellowfin.c658 int next_tick = 60*HZ; local
678 next_tick = 60*HZ;
680 next_tick = 3*HZ;
683 yp->timer.expires = jiffies + next_tick;
H A Dhamachi.c1031 int next_tick = 10*HZ; local
1047 hmp->timer.expires = RUN_AT(next_tick);
/linux-master/drivers/net/ethernet/natsemi/
H A Dnatsemi.c1792 int next_tick = NATSEMI_TIMER_FREQ; local
1827 next_tick = HZ;
1848 next_tick = 1;
1852 if (next_tick > 1)
1853 mod_timer(&np->timer, round_jiffies(jiffies + next_tick));
1855 mod_timer(&np->timer, jiffies + next_tick);
/linux-master/drivers/net/ethernet/smsc/
H A Depic100.c856 int next_tick = 5*HZ; local
867 ep->timer.expires = jiffies + next_tick;
/linux-master/drivers/net/ethernet/dlink/
H A Ddl2k.c654 int next_tick = 1*HZ; local
687 np->timer.expires = jiffies + next_tick;
H A Dsundance.c948 int next_tick = 10*HZ; local
957 np->timer.expires = jiffies + next_tick;
/linux-master/drivers/net/ethernet/3com/
H A D3c59x.c1789 int next_tick = 60*HZ; local
1830 next_tick = 5*HZ;
1852 next_tick = media_tbl[dev->if_port].wait;
1877 mod_timer(&vp->timer, RUN_AT(next_tick));
/linux-master/drivers/net/ethernet/sis/
H A Dsis900.c1320 static const int next_tick = 5*HZ; local
1362 sis_priv->timer.expires = jiffies + next_tick;

Completed in 451 milliseconds