xref: /linux-6.15/kernel/time/timer.c (revision d15bc69a)
15cee9645SThomas Gleixner /*
25cee9645SThomas Gleixner  *  linux/kernel/timer.c
35cee9645SThomas Gleixner  *
45cee9645SThomas Gleixner  *  Kernel internal timers
55cee9645SThomas Gleixner  *
65cee9645SThomas Gleixner  *  Copyright (C) 1991, 1992  Linus Torvalds
75cee9645SThomas Gleixner  *
85cee9645SThomas Gleixner  *  1997-01-28  Modified by Finn Arne Gangstad to make timers scale better.
95cee9645SThomas Gleixner  *
105cee9645SThomas Gleixner  *  1997-09-10  Updated NTP code according to technical memorandum Jan '96
115cee9645SThomas Gleixner  *              "A Kernel Model for Precision Timekeeping" by Dave Mills
125cee9645SThomas Gleixner  *  1998-12-24  Fixed a xtime SMP race (we need the xtime_lock rw spinlock to
135cee9645SThomas Gleixner  *              serialize accesses to xtime/lost_ticks).
145cee9645SThomas Gleixner  *                              Copyright (C) 1998  Andrea Arcangeli
155cee9645SThomas Gleixner  *  1999-03-10  Improved NTP compatibility by Ulrich Windl
165cee9645SThomas Gleixner  *  2002-05-31	Move sys_sysinfo here and make its locking sane, Robert Love
175cee9645SThomas Gleixner  *  2000-10-05  Implemented scalable SMP per-CPU timer handling.
185cee9645SThomas Gleixner  *                              Copyright (C) 2000, 2001, 2002  Ingo Molnar
195cee9645SThomas Gleixner  *              Designed by David S. Miller, Alexey Kuznetsov and Ingo Molnar
205cee9645SThomas Gleixner  */
215cee9645SThomas Gleixner 
225cee9645SThomas Gleixner #include <linux/kernel_stat.h>
235cee9645SThomas Gleixner #include <linux/export.h>
245cee9645SThomas Gleixner #include <linux/interrupt.h>
255cee9645SThomas Gleixner #include <linux/percpu.h>
265cee9645SThomas Gleixner #include <linux/init.h>
275cee9645SThomas Gleixner #include <linux/mm.h>
285cee9645SThomas Gleixner #include <linux/swap.h>
295cee9645SThomas Gleixner #include <linux/pid_namespace.h>
305cee9645SThomas Gleixner #include <linux/notifier.h>
315cee9645SThomas Gleixner #include <linux/thread_info.h>
325cee9645SThomas Gleixner #include <linux/time.h>
335cee9645SThomas Gleixner #include <linux/jiffies.h>
345cee9645SThomas Gleixner #include <linux/posix-timers.h>
355cee9645SThomas Gleixner #include <linux/cpu.h>
365cee9645SThomas Gleixner #include <linux/syscalls.h>
375cee9645SThomas Gleixner #include <linux/delay.h>
385cee9645SThomas Gleixner #include <linux/tick.h>
395cee9645SThomas Gleixner #include <linux/kallsyms.h>
405cee9645SThomas Gleixner #include <linux/irq_work.h>
41174cd4b1SIngo Molnar #include <linux/sched/signal.h>
425cee9645SThomas Gleixner #include <linux/sched/sysctl.h>
43370c9135SIngo Molnar #include <linux/sched/nohz.h>
44b17b0153SIngo Molnar #include <linux/sched/debug.h>
455cee9645SThomas Gleixner #include <linux/slab.h>
465cee9645SThomas Gleixner #include <linux/compat.h>
475cee9645SThomas Gleixner 
487c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
495cee9645SThomas Gleixner #include <asm/unistd.h>
505cee9645SThomas Gleixner #include <asm/div64.h>
515cee9645SThomas Gleixner #include <asm/timex.h>
525cee9645SThomas Gleixner #include <asm/io.h>
535cee9645SThomas Gleixner 
54c1ad348bSThomas Gleixner #include "tick-internal.h"
55c1ad348bSThomas Gleixner 
565cee9645SThomas Gleixner #define CREATE_TRACE_POINTS
575cee9645SThomas Gleixner #include <trace/events/timer.h>
585cee9645SThomas Gleixner 
595cee9645SThomas Gleixner __visible u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
605cee9645SThomas Gleixner 
615cee9645SThomas Gleixner EXPORT_SYMBOL(jiffies_64);
625cee9645SThomas Gleixner 
635cee9645SThomas Gleixner /*
64500462a9SThomas Gleixner  * The timer wheel has LVL_DEPTH array levels. Each level provides an array of
65500462a9SThomas Gleixner  * LVL_SIZE buckets. Each level is driven by its own clock and therefor each
66500462a9SThomas Gleixner  * level has a different granularity.
67500462a9SThomas Gleixner  *
68500462a9SThomas Gleixner  * The level granularity is:		LVL_CLK_DIV ^ lvl
69500462a9SThomas Gleixner  * The level clock frequency is:	HZ / (LVL_CLK_DIV ^ level)
70500462a9SThomas Gleixner  *
71500462a9SThomas Gleixner  * The array level of a newly armed timer depends on the relative expiry
72500462a9SThomas Gleixner  * time. The farther the expiry time is away the higher the array level and
73500462a9SThomas Gleixner  * therefor the granularity becomes.
74500462a9SThomas Gleixner  *
75500462a9SThomas Gleixner  * Contrary to the original timer wheel implementation, which aims for 'exact'
76500462a9SThomas Gleixner  * expiry of the timers, this implementation removes the need for recascading
77500462a9SThomas Gleixner  * the timers into the lower array levels. The previous 'classic' timer wheel
78500462a9SThomas Gleixner  * implementation of the kernel already violated the 'exact' expiry by adding
79500462a9SThomas Gleixner  * slack to the expiry time to provide batched expiration. The granularity
80500462a9SThomas Gleixner  * levels provide implicit batching.
81500462a9SThomas Gleixner  *
82500462a9SThomas Gleixner  * This is an optimization of the original timer wheel implementation for the
83500462a9SThomas Gleixner  * majority of the timer wheel use cases: timeouts. The vast majority of
84500462a9SThomas Gleixner  * timeout timers (networking, disk I/O ...) are canceled before expiry. If
85500462a9SThomas Gleixner  * the timeout expires it indicates that normal operation is disturbed, so it
86500462a9SThomas Gleixner  * does not matter much whether the timeout comes with a slight delay.
87500462a9SThomas Gleixner  *
88500462a9SThomas Gleixner  * The only exception to this are networking timers with a small expiry
89500462a9SThomas Gleixner  * time. They rely on the granularity. Those fit into the first wheel level,
90500462a9SThomas Gleixner  * which has HZ granularity.
91500462a9SThomas Gleixner  *
92500462a9SThomas Gleixner  * We don't have cascading anymore. timers with a expiry time above the
93500462a9SThomas Gleixner  * capacity of the last wheel level are force expired at the maximum timeout
94500462a9SThomas Gleixner  * value of the last wheel level. From data sampling we know that the maximum
95500462a9SThomas Gleixner  * value observed is 5 days (network connection tracking), so this should not
96500462a9SThomas Gleixner  * be an issue.
97500462a9SThomas Gleixner  *
98500462a9SThomas Gleixner  * The currently chosen array constants values are a good compromise between
99500462a9SThomas Gleixner  * array size and granularity.
100500462a9SThomas Gleixner  *
101500462a9SThomas Gleixner  * This results in the following granularity and range levels:
102500462a9SThomas Gleixner  *
103500462a9SThomas Gleixner  * HZ 1000 steps
104500462a9SThomas Gleixner  * Level Offset  Granularity            Range
105500462a9SThomas Gleixner  *  0      0         1 ms                0 ms -         63 ms
106500462a9SThomas Gleixner  *  1     64         8 ms               64 ms -        511 ms
107500462a9SThomas Gleixner  *  2    128        64 ms              512 ms -       4095 ms (512ms - ~4s)
108500462a9SThomas Gleixner  *  3    192       512 ms             4096 ms -      32767 ms (~4s - ~32s)
109500462a9SThomas Gleixner  *  4    256      4096 ms (~4s)      32768 ms -     262143 ms (~32s - ~4m)
110500462a9SThomas Gleixner  *  5    320     32768 ms (~32s)    262144 ms -    2097151 ms (~4m - ~34m)
111500462a9SThomas Gleixner  *  6    384    262144 ms (~4m)    2097152 ms -   16777215 ms (~34m - ~4h)
112500462a9SThomas Gleixner  *  7    448   2097152 ms (~34m)  16777216 ms -  134217727 ms (~4h - ~1d)
113500462a9SThomas Gleixner  *  8    512  16777216 ms (~4h)  134217728 ms - 1073741822 ms (~1d - ~12d)
114500462a9SThomas Gleixner  *
115500462a9SThomas Gleixner  * HZ  300
116500462a9SThomas Gleixner  * Level Offset  Granularity            Range
117500462a9SThomas Gleixner  *  0	   0         3 ms                0 ms -        210 ms
118500462a9SThomas Gleixner  *  1	  64        26 ms              213 ms -       1703 ms (213ms - ~1s)
119500462a9SThomas Gleixner  *  2	 128       213 ms             1706 ms -      13650 ms (~1s - ~13s)
120500462a9SThomas Gleixner  *  3	 192      1706 ms (~1s)      13653 ms -     109223 ms (~13s - ~1m)
121500462a9SThomas Gleixner  *  4	 256     13653 ms (~13s)    109226 ms -     873810 ms (~1m - ~14m)
122500462a9SThomas Gleixner  *  5	 320    109226 ms (~1m)     873813 ms -    6990503 ms (~14m - ~1h)
123500462a9SThomas Gleixner  *  6	 384    873813 ms (~14m)   6990506 ms -   55924050 ms (~1h - ~15h)
124500462a9SThomas Gleixner  *  7	 448   6990506 ms (~1h)   55924053 ms -  447392423 ms (~15h - ~5d)
125500462a9SThomas Gleixner  *  8    512  55924053 ms (~15h) 447392426 ms - 3579139406 ms (~5d - ~41d)
126500462a9SThomas Gleixner  *
127500462a9SThomas Gleixner  * HZ  250
128500462a9SThomas Gleixner  * Level Offset  Granularity            Range
129500462a9SThomas Gleixner  *  0	   0         4 ms                0 ms -        255 ms
130500462a9SThomas Gleixner  *  1	  64        32 ms              256 ms -       2047 ms (256ms - ~2s)
131500462a9SThomas Gleixner  *  2	 128       256 ms             2048 ms -      16383 ms (~2s - ~16s)
132500462a9SThomas Gleixner  *  3	 192      2048 ms (~2s)      16384 ms -     131071 ms (~16s - ~2m)
133500462a9SThomas Gleixner  *  4	 256     16384 ms (~16s)    131072 ms -    1048575 ms (~2m - ~17m)
134500462a9SThomas Gleixner  *  5	 320    131072 ms (~2m)    1048576 ms -    8388607 ms (~17m - ~2h)
135500462a9SThomas Gleixner  *  6	 384   1048576 ms (~17m)   8388608 ms -   67108863 ms (~2h - ~18h)
136500462a9SThomas Gleixner  *  7	 448   8388608 ms (~2h)   67108864 ms -  536870911 ms (~18h - ~6d)
137500462a9SThomas Gleixner  *  8    512  67108864 ms (~18h) 536870912 ms - 4294967288 ms (~6d - ~49d)
138500462a9SThomas Gleixner  *
139500462a9SThomas Gleixner  * HZ  100
140500462a9SThomas Gleixner  * Level Offset  Granularity            Range
141500462a9SThomas Gleixner  *  0	   0         10 ms               0 ms -        630 ms
142500462a9SThomas Gleixner  *  1	  64         80 ms             640 ms -       5110 ms (640ms - ~5s)
143500462a9SThomas Gleixner  *  2	 128        640 ms            5120 ms -      40950 ms (~5s - ~40s)
144500462a9SThomas Gleixner  *  3	 192       5120 ms (~5s)     40960 ms -     327670 ms (~40s - ~5m)
145500462a9SThomas Gleixner  *  4	 256      40960 ms (~40s)   327680 ms -    2621430 ms (~5m - ~43m)
146500462a9SThomas Gleixner  *  5	 320     327680 ms (~5m)   2621440 ms -   20971510 ms (~43m - ~5h)
147500462a9SThomas Gleixner  *  6	 384    2621440 ms (~43m) 20971520 ms -  167772150 ms (~5h - ~1d)
148500462a9SThomas Gleixner  *  7	 448   20971520 ms (~5h) 167772160 ms - 1342177270 ms (~1d - ~15d)
1495cee9645SThomas Gleixner  */
1505cee9645SThomas Gleixner 
151500462a9SThomas Gleixner /* Clock divisor for the next level */
152500462a9SThomas Gleixner #define LVL_CLK_SHIFT	3
153500462a9SThomas Gleixner #define LVL_CLK_DIV	(1UL << LVL_CLK_SHIFT)
154500462a9SThomas Gleixner #define LVL_CLK_MASK	(LVL_CLK_DIV - 1)
155500462a9SThomas Gleixner #define LVL_SHIFT(n)	((n) * LVL_CLK_SHIFT)
156500462a9SThomas Gleixner #define LVL_GRAN(n)	(1UL << LVL_SHIFT(n))
1575cee9645SThomas Gleixner 
158500462a9SThomas Gleixner /*
159500462a9SThomas Gleixner  * The time start value for each level to select the bucket at enqueue
160500462a9SThomas Gleixner  * time.
161500462a9SThomas Gleixner  */
162500462a9SThomas Gleixner #define LVL_START(n)	((LVL_SIZE - 1) << (((n) - 1) * LVL_CLK_SHIFT))
1635cee9645SThomas Gleixner 
164500462a9SThomas Gleixner /* Size of each clock level */
165500462a9SThomas Gleixner #define LVL_BITS	6
166500462a9SThomas Gleixner #define LVL_SIZE	(1UL << LVL_BITS)
167500462a9SThomas Gleixner #define LVL_MASK	(LVL_SIZE - 1)
168500462a9SThomas Gleixner #define LVL_OFFS(n)	((n) * LVL_SIZE)
169500462a9SThomas Gleixner 
170500462a9SThomas Gleixner /* Level depth */
171500462a9SThomas Gleixner #if HZ > 100
172500462a9SThomas Gleixner # define LVL_DEPTH	9
173500462a9SThomas Gleixner # else
174500462a9SThomas Gleixner # define LVL_DEPTH	8
175500462a9SThomas Gleixner #endif
176500462a9SThomas Gleixner 
177500462a9SThomas Gleixner /* The cutoff (max. capacity of the wheel) */
178500462a9SThomas Gleixner #define WHEEL_TIMEOUT_CUTOFF	(LVL_START(LVL_DEPTH))
179500462a9SThomas Gleixner #define WHEEL_TIMEOUT_MAX	(WHEEL_TIMEOUT_CUTOFF - LVL_GRAN(LVL_DEPTH - 1))
180500462a9SThomas Gleixner 
181500462a9SThomas Gleixner /*
182500462a9SThomas Gleixner  * The resulting wheel size. If NOHZ is configured we allocate two
183500462a9SThomas Gleixner  * wheels so we have a separate storage for the deferrable timers.
184500462a9SThomas Gleixner  */
185500462a9SThomas Gleixner #define WHEEL_SIZE	(LVL_SIZE * LVL_DEPTH)
186500462a9SThomas Gleixner 
187500462a9SThomas Gleixner #ifdef CONFIG_NO_HZ_COMMON
188500462a9SThomas Gleixner # define NR_BASES	2
189500462a9SThomas Gleixner # define BASE_STD	0
190500462a9SThomas Gleixner # define BASE_DEF	1
191500462a9SThomas Gleixner #else
192500462a9SThomas Gleixner # define NR_BASES	1
193500462a9SThomas Gleixner # define BASE_STD	0
194500462a9SThomas Gleixner # define BASE_DEF	0
195500462a9SThomas Gleixner #endif
1965cee9645SThomas Gleixner 
197494af3edSThomas Gleixner struct timer_base {
1985cee9645SThomas Gleixner 	spinlock_t		lock;
1995cee9645SThomas Gleixner 	struct timer_list	*running_timer;
200494af3edSThomas Gleixner 	unsigned long		clk;
201a683f390SThomas Gleixner 	unsigned long		next_expiry;
202500462a9SThomas Gleixner 	unsigned int		cpu;
203bc7a34b8SThomas Gleixner 	bool			migration_enabled;
204683be13aSThomas Gleixner 	bool			nohz_active;
205a683f390SThomas Gleixner 	bool			is_idle;
206500462a9SThomas Gleixner 	DECLARE_BITMAP(pending_map, WHEEL_SIZE);
207500462a9SThomas Gleixner 	struct hlist_head	vectors[WHEEL_SIZE];
2085cee9645SThomas Gleixner } ____cacheline_aligned;
2095cee9645SThomas Gleixner 
210500462a9SThomas Gleixner static DEFINE_PER_CPU(struct timer_base, timer_bases[NR_BASES]);
2115cee9645SThomas Gleixner 
212bc7a34b8SThomas Gleixner #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
213bc7a34b8SThomas Gleixner unsigned int sysctl_timer_migration = 1;
214bc7a34b8SThomas Gleixner 
215683be13aSThomas Gleixner void timers_update_migration(bool update_nohz)
216bc7a34b8SThomas Gleixner {
217bc7a34b8SThomas Gleixner 	bool on = sysctl_timer_migration && tick_nohz_active;
218bc7a34b8SThomas Gleixner 	unsigned int cpu;
219bc7a34b8SThomas Gleixner 
220bc7a34b8SThomas Gleixner 	/* Avoid the loop, if nothing to update */
221500462a9SThomas Gleixner 	if (this_cpu_read(timer_bases[BASE_STD].migration_enabled) == on)
222bc7a34b8SThomas Gleixner 		return;
223bc7a34b8SThomas Gleixner 
224bc7a34b8SThomas Gleixner 	for_each_possible_cpu(cpu) {
225500462a9SThomas Gleixner 		per_cpu(timer_bases[BASE_STD].migration_enabled, cpu) = on;
226500462a9SThomas Gleixner 		per_cpu(timer_bases[BASE_DEF].migration_enabled, cpu) = on;
227bc7a34b8SThomas Gleixner 		per_cpu(hrtimer_bases.migration_enabled, cpu) = on;
228683be13aSThomas Gleixner 		if (!update_nohz)
229683be13aSThomas Gleixner 			continue;
230500462a9SThomas Gleixner 		per_cpu(timer_bases[BASE_STD].nohz_active, cpu) = true;
231500462a9SThomas Gleixner 		per_cpu(timer_bases[BASE_DEF].nohz_active, cpu) = true;
232683be13aSThomas Gleixner 		per_cpu(hrtimer_bases.nohz_active, cpu) = true;
233bc7a34b8SThomas Gleixner 	}
234bc7a34b8SThomas Gleixner }
235bc7a34b8SThomas Gleixner 
236bc7a34b8SThomas Gleixner int timer_migration_handler(struct ctl_table *table, int write,
237bc7a34b8SThomas Gleixner 			    void __user *buffer, size_t *lenp,
238bc7a34b8SThomas Gleixner 			    loff_t *ppos)
239bc7a34b8SThomas Gleixner {
240bc7a34b8SThomas Gleixner 	static DEFINE_MUTEX(mutex);
241bc7a34b8SThomas Gleixner 	int ret;
242bc7a34b8SThomas Gleixner 
243bc7a34b8SThomas Gleixner 	mutex_lock(&mutex);
244b94bf594SMyungho Jung 	ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
245bc7a34b8SThomas Gleixner 	if (!ret && write)
246683be13aSThomas Gleixner 		timers_update_migration(false);
247bc7a34b8SThomas Gleixner 	mutex_unlock(&mutex);
248bc7a34b8SThomas Gleixner 	return ret;
249bc7a34b8SThomas Gleixner }
250bc7a34b8SThomas Gleixner #endif
251bc7a34b8SThomas Gleixner 
2525cee9645SThomas Gleixner static unsigned long round_jiffies_common(unsigned long j, int cpu,
2535cee9645SThomas Gleixner 		bool force_up)
2545cee9645SThomas Gleixner {
2555cee9645SThomas Gleixner 	int rem;
2565cee9645SThomas Gleixner 	unsigned long original = j;
2575cee9645SThomas Gleixner 
2585cee9645SThomas Gleixner 	/*
2595cee9645SThomas Gleixner 	 * We don't want all cpus firing their timers at once hitting the
2605cee9645SThomas Gleixner 	 * same lock or cachelines, so we skew each extra cpu with an extra
2615cee9645SThomas Gleixner 	 * 3 jiffies. This 3 jiffies came originally from the mm/ code which
2625cee9645SThomas Gleixner 	 * already did this.
2635cee9645SThomas Gleixner 	 * The skew is done by adding 3*cpunr, then round, then subtract this
2645cee9645SThomas Gleixner 	 * extra offset again.
2655cee9645SThomas Gleixner 	 */
2665cee9645SThomas Gleixner 	j += cpu * 3;
2675cee9645SThomas Gleixner 
2685cee9645SThomas Gleixner 	rem = j % HZ;
2695cee9645SThomas Gleixner 
2705cee9645SThomas Gleixner 	/*
2715cee9645SThomas Gleixner 	 * If the target jiffie is just after a whole second (which can happen
2725cee9645SThomas Gleixner 	 * due to delays of the timer irq, long irq off times etc etc) then
2735cee9645SThomas Gleixner 	 * we should round down to the whole second, not up. Use 1/4th second
2745cee9645SThomas Gleixner 	 * as cutoff for this rounding as an extreme upper bound for this.
2755cee9645SThomas Gleixner 	 * But never round down if @force_up is set.
2765cee9645SThomas Gleixner 	 */
2775cee9645SThomas Gleixner 	if (rem < HZ/4 && !force_up) /* round down */
2785cee9645SThomas Gleixner 		j = j - rem;
2795cee9645SThomas Gleixner 	else /* round up */
2805cee9645SThomas Gleixner 		j = j - rem + HZ;
2815cee9645SThomas Gleixner 
2825cee9645SThomas Gleixner 	/* now that we have rounded, subtract the extra skew again */
2835cee9645SThomas Gleixner 	j -= cpu * 3;
2845cee9645SThomas Gleixner 
2855cee9645SThomas Gleixner 	/*
2865cee9645SThomas Gleixner 	 * Make sure j is still in the future. Otherwise return the
2875cee9645SThomas Gleixner 	 * unmodified value.
2885cee9645SThomas Gleixner 	 */
2895cee9645SThomas Gleixner 	return time_is_after_jiffies(j) ? j : original;
2905cee9645SThomas Gleixner }
2915cee9645SThomas Gleixner 
2925cee9645SThomas Gleixner /**
2935cee9645SThomas Gleixner  * __round_jiffies - function to round jiffies to a full second
2945cee9645SThomas Gleixner  * @j: the time in (absolute) jiffies that should be rounded
2955cee9645SThomas Gleixner  * @cpu: the processor number on which the timeout will happen
2965cee9645SThomas Gleixner  *
2975cee9645SThomas Gleixner  * __round_jiffies() rounds an absolute time in the future (in jiffies)
2985cee9645SThomas Gleixner  * up or down to (approximately) full seconds. This is useful for timers
2995cee9645SThomas Gleixner  * for which the exact time they fire does not matter too much, as long as
3005cee9645SThomas Gleixner  * they fire approximately every X seconds.
3015cee9645SThomas Gleixner  *
3025cee9645SThomas Gleixner  * By rounding these timers to whole seconds, all such timers will fire
3035cee9645SThomas Gleixner  * at the same time, rather than at various times spread out. The goal
3045cee9645SThomas Gleixner  * of this is to have the CPU wake up less, which saves power.
3055cee9645SThomas Gleixner  *
3065cee9645SThomas Gleixner  * The exact rounding is skewed for each processor to avoid all
3075cee9645SThomas Gleixner  * processors firing at the exact same time, which could lead
3085cee9645SThomas Gleixner  * to lock contention or spurious cache line bouncing.
3095cee9645SThomas Gleixner  *
3105cee9645SThomas Gleixner  * The return value is the rounded version of the @j parameter.
3115cee9645SThomas Gleixner  */
3125cee9645SThomas Gleixner unsigned long __round_jiffies(unsigned long j, int cpu)
3135cee9645SThomas Gleixner {
3145cee9645SThomas Gleixner 	return round_jiffies_common(j, cpu, false);
3155cee9645SThomas Gleixner }
3165cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(__round_jiffies);
3175cee9645SThomas Gleixner 
3185cee9645SThomas Gleixner /**
3195cee9645SThomas Gleixner  * __round_jiffies_relative - function to round jiffies to a full second
3205cee9645SThomas Gleixner  * @j: the time in (relative) jiffies that should be rounded
3215cee9645SThomas Gleixner  * @cpu: the processor number on which the timeout will happen
3225cee9645SThomas Gleixner  *
3235cee9645SThomas Gleixner  * __round_jiffies_relative() rounds a time delta  in the future (in jiffies)
3245cee9645SThomas Gleixner  * up or down to (approximately) full seconds. This is useful for timers
3255cee9645SThomas Gleixner  * for which the exact time they fire does not matter too much, as long as
3265cee9645SThomas Gleixner  * they fire approximately every X seconds.
3275cee9645SThomas Gleixner  *
3285cee9645SThomas Gleixner  * By rounding these timers to whole seconds, all such timers will fire
3295cee9645SThomas Gleixner  * at the same time, rather than at various times spread out. The goal
3305cee9645SThomas Gleixner  * of this is to have the CPU wake up less, which saves power.
3315cee9645SThomas Gleixner  *
3325cee9645SThomas Gleixner  * The exact rounding is skewed for each processor to avoid all
3335cee9645SThomas Gleixner  * processors firing at the exact same time, which could lead
3345cee9645SThomas Gleixner  * to lock contention or spurious cache line bouncing.
3355cee9645SThomas Gleixner  *
3365cee9645SThomas Gleixner  * The return value is the rounded version of the @j parameter.
3375cee9645SThomas Gleixner  */
3385cee9645SThomas Gleixner unsigned long __round_jiffies_relative(unsigned long j, int cpu)
3395cee9645SThomas Gleixner {
3405cee9645SThomas Gleixner 	unsigned long j0 = jiffies;
3415cee9645SThomas Gleixner 
3425cee9645SThomas Gleixner 	/* Use j0 because jiffies might change while we run */
3435cee9645SThomas Gleixner 	return round_jiffies_common(j + j0, cpu, false) - j0;
3445cee9645SThomas Gleixner }
3455cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(__round_jiffies_relative);
3465cee9645SThomas Gleixner 
3475cee9645SThomas Gleixner /**
3485cee9645SThomas Gleixner  * round_jiffies - function to round jiffies to a full second
3495cee9645SThomas Gleixner  * @j: the time in (absolute) jiffies that should be rounded
3505cee9645SThomas Gleixner  *
3515cee9645SThomas Gleixner  * round_jiffies() rounds an absolute time in the future (in jiffies)
3525cee9645SThomas Gleixner  * up or down to (approximately) full seconds. This is useful for timers
3535cee9645SThomas Gleixner  * for which the exact time they fire does not matter too much, as long as
3545cee9645SThomas Gleixner  * they fire approximately every X seconds.
3555cee9645SThomas Gleixner  *
3565cee9645SThomas Gleixner  * By rounding these timers to whole seconds, all such timers will fire
3575cee9645SThomas Gleixner  * at the same time, rather than at various times spread out. The goal
3585cee9645SThomas Gleixner  * of this is to have the CPU wake up less, which saves power.
3595cee9645SThomas Gleixner  *
3605cee9645SThomas Gleixner  * The return value is the rounded version of the @j parameter.
3615cee9645SThomas Gleixner  */
3625cee9645SThomas Gleixner unsigned long round_jiffies(unsigned long j)
3635cee9645SThomas Gleixner {
3645cee9645SThomas Gleixner 	return round_jiffies_common(j, raw_smp_processor_id(), false);
3655cee9645SThomas Gleixner }
3665cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(round_jiffies);
3675cee9645SThomas Gleixner 
3685cee9645SThomas Gleixner /**
3695cee9645SThomas Gleixner  * round_jiffies_relative - function to round jiffies to a full second
3705cee9645SThomas Gleixner  * @j: the time in (relative) jiffies that should be rounded
3715cee9645SThomas Gleixner  *
3725cee9645SThomas Gleixner  * round_jiffies_relative() rounds a time delta  in the future (in jiffies)
3735cee9645SThomas Gleixner  * up or down to (approximately) full seconds. This is useful for timers
3745cee9645SThomas Gleixner  * for which the exact time they fire does not matter too much, as long as
3755cee9645SThomas Gleixner  * they fire approximately every X seconds.
3765cee9645SThomas Gleixner  *
3775cee9645SThomas Gleixner  * By rounding these timers to whole seconds, all such timers will fire
3785cee9645SThomas Gleixner  * at the same time, rather than at various times spread out. The goal
3795cee9645SThomas Gleixner  * of this is to have the CPU wake up less, which saves power.
3805cee9645SThomas Gleixner  *
3815cee9645SThomas Gleixner  * The return value is the rounded version of the @j parameter.
3825cee9645SThomas Gleixner  */
3835cee9645SThomas Gleixner unsigned long round_jiffies_relative(unsigned long j)
3845cee9645SThomas Gleixner {
3855cee9645SThomas Gleixner 	return __round_jiffies_relative(j, raw_smp_processor_id());
3865cee9645SThomas Gleixner }
3875cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(round_jiffies_relative);
3885cee9645SThomas Gleixner 
3895cee9645SThomas Gleixner /**
3905cee9645SThomas Gleixner  * __round_jiffies_up - function to round jiffies up to a full second
3915cee9645SThomas Gleixner  * @j: the time in (absolute) jiffies that should be rounded
3925cee9645SThomas Gleixner  * @cpu: the processor number on which the timeout will happen
3935cee9645SThomas Gleixner  *
3945cee9645SThomas Gleixner  * This is the same as __round_jiffies() except that it will never
3955cee9645SThomas Gleixner  * round down.  This is useful for timeouts for which the exact time
3965cee9645SThomas Gleixner  * of firing does not matter too much, as long as they don't fire too
3975cee9645SThomas Gleixner  * early.
3985cee9645SThomas Gleixner  */
3995cee9645SThomas Gleixner unsigned long __round_jiffies_up(unsigned long j, int cpu)
4005cee9645SThomas Gleixner {
4015cee9645SThomas Gleixner 	return round_jiffies_common(j, cpu, true);
4025cee9645SThomas Gleixner }
4035cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(__round_jiffies_up);
4045cee9645SThomas Gleixner 
4055cee9645SThomas Gleixner /**
4065cee9645SThomas Gleixner  * __round_jiffies_up_relative - function to round jiffies up to a full second
4075cee9645SThomas Gleixner  * @j: the time in (relative) jiffies that should be rounded
4085cee9645SThomas Gleixner  * @cpu: the processor number on which the timeout will happen
4095cee9645SThomas Gleixner  *
4105cee9645SThomas Gleixner  * This is the same as __round_jiffies_relative() except that it will never
4115cee9645SThomas Gleixner  * round down.  This is useful for timeouts for which the exact time
4125cee9645SThomas Gleixner  * of firing does not matter too much, as long as they don't fire too
4135cee9645SThomas Gleixner  * early.
4145cee9645SThomas Gleixner  */
4155cee9645SThomas Gleixner unsigned long __round_jiffies_up_relative(unsigned long j, int cpu)
4165cee9645SThomas Gleixner {
4175cee9645SThomas Gleixner 	unsigned long j0 = jiffies;
4185cee9645SThomas Gleixner 
4195cee9645SThomas Gleixner 	/* Use j0 because jiffies might change while we run */
4205cee9645SThomas Gleixner 	return round_jiffies_common(j + j0, cpu, true) - j0;
4215cee9645SThomas Gleixner }
4225cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(__round_jiffies_up_relative);
4235cee9645SThomas Gleixner 
4245cee9645SThomas Gleixner /**
4255cee9645SThomas Gleixner  * round_jiffies_up - function to round jiffies up to a full second
4265cee9645SThomas Gleixner  * @j: the time in (absolute) jiffies that should be rounded
4275cee9645SThomas Gleixner  *
4285cee9645SThomas Gleixner  * This is the same as round_jiffies() except that it will never
4295cee9645SThomas Gleixner  * round down.  This is useful for timeouts for which the exact time
4305cee9645SThomas Gleixner  * of firing does not matter too much, as long as they don't fire too
4315cee9645SThomas Gleixner  * early.
4325cee9645SThomas Gleixner  */
4335cee9645SThomas Gleixner unsigned long round_jiffies_up(unsigned long j)
4345cee9645SThomas Gleixner {
4355cee9645SThomas Gleixner 	return round_jiffies_common(j, raw_smp_processor_id(), true);
4365cee9645SThomas Gleixner }
4375cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(round_jiffies_up);
4385cee9645SThomas Gleixner 
4395cee9645SThomas Gleixner /**
4405cee9645SThomas Gleixner  * round_jiffies_up_relative - function to round jiffies up to a full second
4415cee9645SThomas Gleixner  * @j: the time in (relative) jiffies that should be rounded
4425cee9645SThomas Gleixner  *
4435cee9645SThomas Gleixner  * This is the same as round_jiffies_relative() except that it will never
4445cee9645SThomas Gleixner  * round down.  This is useful for timeouts for which the exact time
4455cee9645SThomas Gleixner  * of firing does not matter too much, as long as they don't fire too
4465cee9645SThomas Gleixner  * early.
4475cee9645SThomas Gleixner  */
4485cee9645SThomas Gleixner unsigned long round_jiffies_up_relative(unsigned long j)
4495cee9645SThomas Gleixner {
4505cee9645SThomas Gleixner 	return __round_jiffies_up_relative(j, raw_smp_processor_id());
4515cee9645SThomas Gleixner }
4525cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(round_jiffies_up_relative);
4535cee9645SThomas Gleixner 
4545cee9645SThomas Gleixner 
455500462a9SThomas Gleixner static inline unsigned int timer_get_idx(struct timer_list *timer)
4565cee9645SThomas Gleixner {
457500462a9SThomas Gleixner 	return (timer->flags & TIMER_ARRAYMASK) >> TIMER_ARRAYSHIFT;
4585cee9645SThomas Gleixner }
459500462a9SThomas Gleixner 
460500462a9SThomas Gleixner static inline void timer_set_idx(struct timer_list *timer, unsigned int idx)
461500462a9SThomas Gleixner {
462500462a9SThomas Gleixner 	timer->flags = (timer->flags & ~TIMER_ARRAYMASK) |
463500462a9SThomas Gleixner 			idx << TIMER_ARRAYSHIFT;
464500462a9SThomas Gleixner }
465500462a9SThomas Gleixner 
466500462a9SThomas Gleixner /*
467500462a9SThomas Gleixner  * Helper function to calculate the array index for a given expiry
468500462a9SThomas Gleixner  * time.
469500462a9SThomas Gleixner  */
470500462a9SThomas Gleixner static inline unsigned calc_index(unsigned expires, unsigned lvl)
471500462a9SThomas Gleixner {
472500462a9SThomas Gleixner 	expires = (expires + LVL_GRAN(lvl)) >> LVL_SHIFT(lvl);
473500462a9SThomas Gleixner 	return LVL_OFFS(lvl) + (expires & LVL_MASK);
474500462a9SThomas Gleixner }
475500462a9SThomas Gleixner 
476ffdf0477SAnna-Maria Gleixner static int calc_wheel_index(unsigned long expires, unsigned long clk)
4775cee9645SThomas Gleixner {
478ffdf0477SAnna-Maria Gleixner 	unsigned long delta = expires - clk;
479500462a9SThomas Gleixner 	unsigned int idx;
4805cee9645SThomas Gleixner 
481500462a9SThomas Gleixner 	if (delta < LVL_START(1)) {
482500462a9SThomas Gleixner 		idx = calc_index(expires, 0);
483500462a9SThomas Gleixner 	} else if (delta < LVL_START(2)) {
484500462a9SThomas Gleixner 		idx = calc_index(expires, 1);
485500462a9SThomas Gleixner 	} else if (delta < LVL_START(3)) {
486500462a9SThomas Gleixner 		idx = calc_index(expires, 2);
487500462a9SThomas Gleixner 	} else if (delta < LVL_START(4)) {
488500462a9SThomas Gleixner 		idx = calc_index(expires, 3);
489500462a9SThomas Gleixner 	} else if (delta < LVL_START(5)) {
490500462a9SThomas Gleixner 		idx = calc_index(expires, 4);
491500462a9SThomas Gleixner 	} else if (delta < LVL_START(6)) {
492500462a9SThomas Gleixner 		idx = calc_index(expires, 5);
493500462a9SThomas Gleixner 	} else if (delta < LVL_START(7)) {
494500462a9SThomas Gleixner 		idx = calc_index(expires, 6);
495500462a9SThomas Gleixner 	} else if (LVL_DEPTH > 8 && delta < LVL_START(8)) {
496500462a9SThomas Gleixner 		idx = calc_index(expires, 7);
497500462a9SThomas Gleixner 	} else if ((long) delta < 0) {
498ffdf0477SAnna-Maria Gleixner 		idx = clk & LVL_MASK;
4995cee9645SThomas Gleixner 	} else {
500500462a9SThomas Gleixner 		/*
501500462a9SThomas Gleixner 		 * Force expire obscene large timeouts to expire at the
502500462a9SThomas Gleixner 		 * capacity limit of the wheel.
5035cee9645SThomas Gleixner 		 */
504500462a9SThomas Gleixner 		if (expires >= WHEEL_TIMEOUT_CUTOFF)
505500462a9SThomas Gleixner 			expires = WHEEL_TIMEOUT_MAX;
5061bd04bf6SThomas Gleixner 
507500462a9SThomas Gleixner 		idx = calc_index(expires, LVL_DEPTH - 1);
508500462a9SThomas Gleixner 	}
509ffdf0477SAnna-Maria Gleixner 	return idx;
510ffdf0477SAnna-Maria Gleixner }
511ffdf0477SAnna-Maria Gleixner 
512500462a9SThomas Gleixner /*
513ffdf0477SAnna-Maria Gleixner  * Enqueue the timer into the hash bucket, mark it pending in
514500462a9SThomas Gleixner  * the bitmap and store the index in the timer flags.
515500462a9SThomas Gleixner  */
516ffdf0477SAnna-Maria Gleixner static void enqueue_timer(struct timer_base *base, struct timer_list *timer,
517ffdf0477SAnna-Maria Gleixner 			  unsigned int idx)
518ffdf0477SAnna-Maria Gleixner {
519ffdf0477SAnna-Maria Gleixner 	hlist_add_head(&timer->entry, base->vectors + idx);
520500462a9SThomas Gleixner 	__set_bit(idx, base->pending_map);
521500462a9SThomas Gleixner 	timer_set_idx(timer, idx);
5225cee9645SThomas Gleixner }
5235cee9645SThomas Gleixner 
5245cee9645SThomas Gleixner static void
525ffdf0477SAnna-Maria Gleixner __internal_add_timer(struct timer_base *base, struct timer_list *timer)
5265cee9645SThomas Gleixner {
527ffdf0477SAnna-Maria Gleixner 	unsigned int idx;
5285cee9645SThomas Gleixner 
529ffdf0477SAnna-Maria Gleixner 	idx = calc_wheel_index(timer->expires, base->clk);
530ffdf0477SAnna-Maria Gleixner 	enqueue_timer(base, timer, idx);
5315cee9645SThomas Gleixner }
5325cee9645SThomas Gleixner 
533ffdf0477SAnna-Maria Gleixner static void
534ffdf0477SAnna-Maria Gleixner trigger_dyntick_cpu(struct timer_base *base, struct timer_list *timer)
5355cee9645SThomas Gleixner {
536a683f390SThomas Gleixner 	if (!IS_ENABLED(CONFIG_NO_HZ_COMMON) || !base->nohz_active)
537a683f390SThomas Gleixner 		return;
5383bb475a3SThomas Gleixner 
5395cee9645SThomas Gleixner 	/*
540a683f390SThomas Gleixner 	 * TODO: This wants some optimizing similar to the code below, but we
541a683f390SThomas Gleixner 	 * will do that when we switch from push to pull for deferrable timers.
5425cee9645SThomas Gleixner 	 */
543a683f390SThomas Gleixner 	if (timer->flags & TIMER_DEFERRABLE) {
544a683f390SThomas Gleixner 		if (tick_nohz_full_cpu(base->cpu))
5459f6d9baaSViresh Kumar 			wake_up_nohz_cpu(base->cpu);
546a683f390SThomas Gleixner 		return;
5475cee9645SThomas Gleixner 	}
5485cee9645SThomas Gleixner 
5495cee9645SThomas Gleixner 	/*
550a683f390SThomas Gleixner 	 * We might have to IPI the remote CPU if the base is idle and the
551a683f390SThomas Gleixner 	 * timer is not deferrable. If the other CPU is on the way to idle
552a683f390SThomas Gleixner 	 * then it can't set base->is_idle as we hold the base lock:
5535cee9645SThomas Gleixner 	 */
554a683f390SThomas Gleixner 	if (!base->is_idle)
555a683f390SThomas Gleixner 		return;
556a683f390SThomas Gleixner 
557a683f390SThomas Gleixner 	/* Check whether this is the new first expiring timer: */
558a683f390SThomas Gleixner 	if (time_after_eq(timer->expires, base->next_expiry))
559a683f390SThomas Gleixner 		return;
560a683f390SThomas Gleixner 
561a683f390SThomas Gleixner 	/*
562a683f390SThomas Gleixner 	 * Set the next expiry time and kick the CPU so it can reevaluate the
563a683f390SThomas Gleixner 	 * wheel:
564a683f390SThomas Gleixner 	 */
565a683f390SThomas Gleixner 	base->next_expiry = timer->expires;
5665cee9645SThomas Gleixner 		wake_up_nohz_cpu(base->cpu);
5675cee9645SThomas Gleixner }
5685cee9645SThomas Gleixner 
569ffdf0477SAnna-Maria Gleixner static void
570ffdf0477SAnna-Maria Gleixner internal_add_timer(struct timer_base *base, struct timer_list *timer)
571ffdf0477SAnna-Maria Gleixner {
572ffdf0477SAnna-Maria Gleixner 	__internal_add_timer(base, timer);
573ffdf0477SAnna-Maria Gleixner 	trigger_dyntick_cpu(base, timer);
5745cee9645SThomas Gleixner }
5755cee9645SThomas Gleixner 
5765cee9645SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
5775cee9645SThomas Gleixner 
5785cee9645SThomas Gleixner static struct debug_obj_descr timer_debug_descr;
5795cee9645SThomas Gleixner 
5805cee9645SThomas Gleixner static void *timer_debug_hint(void *addr)
5815cee9645SThomas Gleixner {
5825cee9645SThomas Gleixner 	return ((struct timer_list *) addr)->function;
5835cee9645SThomas Gleixner }
5845cee9645SThomas Gleixner 
585b9fdac7fSDu, Changbin static bool timer_is_static_object(void *addr)
586b9fdac7fSDu, Changbin {
587b9fdac7fSDu, Changbin 	struct timer_list *timer = addr;
588b9fdac7fSDu, Changbin 
589b9fdac7fSDu, Changbin 	return (timer->entry.pprev == NULL &&
590b9fdac7fSDu, Changbin 		timer->entry.next == TIMER_ENTRY_STATIC);
591b9fdac7fSDu, Changbin }
592b9fdac7fSDu, Changbin 
5935cee9645SThomas Gleixner /*
5945cee9645SThomas Gleixner  * fixup_init is called when:
5955cee9645SThomas Gleixner  * - an active object is initialized
5965cee9645SThomas Gleixner  */
597e3252464SDu, Changbin static bool timer_fixup_init(void *addr, enum debug_obj_state state)
5985cee9645SThomas Gleixner {
5995cee9645SThomas Gleixner 	struct timer_list *timer = addr;
6005cee9645SThomas Gleixner 
6015cee9645SThomas Gleixner 	switch (state) {
6025cee9645SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
6035cee9645SThomas Gleixner 		del_timer_sync(timer);
6045cee9645SThomas Gleixner 		debug_object_init(timer, &timer_debug_descr);
605e3252464SDu, Changbin 		return true;
6065cee9645SThomas Gleixner 	default:
607e3252464SDu, Changbin 		return false;
6085cee9645SThomas Gleixner 	}
6095cee9645SThomas Gleixner }
6105cee9645SThomas Gleixner 
6115cee9645SThomas Gleixner /* Stub timer callback for improperly used timers. */
6125cee9645SThomas Gleixner static void stub_timer(unsigned long data)
6135cee9645SThomas Gleixner {
6145cee9645SThomas Gleixner 	WARN_ON(1);
6155cee9645SThomas Gleixner }
6165cee9645SThomas Gleixner 
6175cee9645SThomas Gleixner /*
6185cee9645SThomas Gleixner  * fixup_activate is called when:
6195cee9645SThomas Gleixner  * - an active object is activated
620b9fdac7fSDu, Changbin  * - an unknown non-static object is activated
6215cee9645SThomas Gleixner  */
622e3252464SDu, Changbin static bool timer_fixup_activate(void *addr, enum debug_obj_state state)
6235cee9645SThomas Gleixner {
6245cee9645SThomas Gleixner 	struct timer_list *timer = addr;
6255cee9645SThomas Gleixner 
6265cee9645SThomas Gleixner 	switch (state) {
6275cee9645SThomas Gleixner 	case ODEBUG_STATE_NOTAVAILABLE:
6285cee9645SThomas Gleixner 		setup_timer(timer, stub_timer, 0);
629e3252464SDu, Changbin 		return true;
6305cee9645SThomas Gleixner 
6315cee9645SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
6325cee9645SThomas Gleixner 		WARN_ON(1);
6335cee9645SThomas Gleixner 
6345cee9645SThomas Gleixner 	default:
635e3252464SDu, Changbin 		return false;
6365cee9645SThomas Gleixner 	}
6375cee9645SThomas Gleixner }
6385cee9645SThomas Gleixner 
6395cee9645SThomas Gleixner /*
6405cee9645SThomas Gleixner  * fixup_free is called when:
6415cee9645SThomas Gleixner  * - an active object is freed
6425cee9645SThomas Gleixner  */
643e3252464SDu, Changbin static bool timer_fixup_free(void *addr, enum debug_obj_state state)
6445cee9645SThomas Gleixner {
6455cee9645SThomas Gleixner 	struct timer_list *timer = addr;
6465cee9645SThomas Gleixner 
6475cee9645SThomas Gleixner 	switch (state) {
6485cee9645SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
6495cee9645SThomas Gleixner 		del_timer_sync(timer);
6505cee9645SThomas Gleixner 		debug_object_free(timer, &timer_debug_descr);
651e3252464SDu, Changbin 		return true;
6525cee9645SThomas Gleixner 	default:
653e3252464SDu, Changbin 		return false;
6545cee9645SThomas Gleixner 	}
6555cee9645SThomas Gleixner }
6565cee9645SThomas Gleixner 
6575cee9645SThomas Gleixner /*
6585cee9645SThomas Gleixner  * fixup_assert_init is called when:
6595cee9645SThomas Gleixner  * - an untracked/uninit-ed object is found
6605cee9645SThomas Gleixner  */
661e3252464SDu, Changbin static bool timer_fixup_assert_init(void *addr, enum debug_obj_state state)
6625cee9645SThomas Gleixner {
6635cee9645SThomas Gleixner 	struct timer_list *timer = addr;
6645cee9645SThomas Gleixner 
6655cee9645SThomas Gleixner 	switch (state) {
6665cee9645SThomas Gleixner 	case ODEBUG_STATE_NOTAVAILABLE:
6675cee9645SThomas Gleixner 		setup_timer(timer, stub_timer, 0);
668e3252464SDu, Changbin 		return true;
6695cee9645SThomas Gleixner 	default:
670e3252464SDu, Changbin 		return false;
6715cee9645SThomas Gleixner 	}
6725cee9645SThomas Gleixner }
6735cee9645SThomas Gleixner 
6745cee9645SThomas Gleixner static struct debug_obj_descr timer_debug_descr = {
6755cee9645SThomas Gleixner 	.name			= "timer_list",
6765cee9645SThomas Gleixner 	.debug_hint		= timer_debug_hint,
677b9fdac7fSDu, Changbin 	.is_static_object	= timer_is_static_object,
6785cee9645SThomas Gleixner 	.fixup_init		= timer_fixup_init,
6795cee9645SThomas Gleixner 	.fixup_activate		= timer_fixup_activate,
6805cee9645SThomas Gleixner 	.fixup_free		= timer_fixup_free,
6815cee9645SThomas Gleixner 	.fixup_assert_init	= timer_fixup_assert_init,
6825cee9645SThomas Gleixner };
6835cee9645SThomas Gleixner 
6845cee9645SThomas Gleixner static inline void debug_timer_init(struct timer_list *timer)
6855cee9645SThomas Gleixner {
6865cee9645SThomas Gleixner 	debug_object_init(timer, &timer_debug_descr);
6875cee9645SThomas Gleixner }
6885cee9645SThomas Gleixner 
6895cee9645SThomas Gleixner static inline void debug_timer_activate(struct timer_list *timer)
6905cee9645SThomas Gleixner {
6915cee9645SThomas Gleixner 	debug_object_activate(timer, &timer_debug_descr);
6925cee9645SThomas Gleixner }
6935cee9645SThomas Gleixner 
6945cee9645SThomas Gleixner static inline void debug_timer_deactivate(struct timer_list *timer)
6955cee9645SThomas Gleixner {
6965cee9645SThomas Gleixner 	debug_object_deactivate(timer, &timer_debug_descr);
6975cee9645SThomas Gleixner }
6985cee9645SThomas Gleixner 
6995cee9645SThomas Gleixner static inline void debug_timer_free(struct timer_list *timer)
7005cee9645SThomas Gleixner {
7015cee9645SThomas Gleixner 	debug_object_free(timer, &timer_debug_descr);
7025cee9645SThomas Gleixner }
7035cee9645SThomas Gleixner 
7045cee9645SThomas Gleixner static inline void debug_timer_assert_init(struct timer_list *timer)
7055cee9645SThomas Gleixner {
7065cee9645SThomas Gleixner 	debug_object_assert_init(timer, &timer_debug_descr);
7075cee9645SThomas Gleixner }
7085cee9645SThomas Gleixner 
7095cee9645SThomas Gleixner static void do_init_timer(struct timer_list *timer, unsigned int flags,
7105cee9645SThomas Gleixner 			  const char *name, struct lock_class_key *key);
7115cee9645SThomas Gleixner 
7125cee9645SThomas Gleixner void init_timer_on_stack_key(struct timer_list *timer, unsigned int flags,
7135cee9645SThomas Gleixner 			     const char *name, struct lock_class_key *key)
7145cee9645SThomas Gleixner {
7155cee9645SThomas Gleixner 	debug_object_init_on_stack(timer, &timer_debug_descr);
7165cee9645SThomas Gleixner 	do_init_timer(timer, flags, name, key);
7175cee9645SThomas Gleixner }
7185cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(init_timer_on_stack_key);
7195cee9645SThomas Gleixner 
7205cee9645SThomas Gleixner void destroy_timer_on_stack(struct timer_list *timer)
7215cee9645SThomas Gleixner {
7225cee9645SThomas Gleixner 	debug_object_free(timer, &timer_debug_descr);
7235cee9645SThomas Gleixner }
7245cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(destroy_timer_on_stack);
7255cee9645SThomas Gleixner 
7265cee9645SThomas Gleixner #else
7275cee9645SThomas Gleixner static inline void debug_timer_init(struct timer_list *timer) { }
7285cee9645SThomas Gleixner static inline void debug_timer_activate(struct timer_list *timer) { }
7295cee9645SThomas Gleixner static inline void debug_timer_deactivate(struct timer_list *timer) { }
7305cee9645SThomas Gleixner static inline void debug_timer_assert_init(struct timer_list *timer) { }
7315cee9645SThomas Gleixner #endif
7325cee9645SThomas Gleixner 
7335cee9645SThomas Gleixner static inline void debug_init(struct timer_list *timer)
7345cee9645SThomas Gleixner {
7355cee9645SThomas Gleixner 	debug_timer_init(timer);
7365cee9645SThomas Gleixner 	trace_timer_init(timer);
7375cee9645SThomas Gleixner }
7385cee9645SThomas Gleixner 
7395cee9645SThomas Gleixner static inline void
7405cee9645SThomas Gleixner debug_activate(struct timer_list *timer, unsigned long expires)
7415cee9645SThomas Gleixner {
7425cee9645SThomas Gleixner 	debug_timer_activate(timer);
7430eeda71bSThomas Gleixner 	trace_timer_start(timer, expires, timer->flags);
7445cee9645SThomas Gleixner }
7455cee9645SThomas Gleixner 
7465cee9645SThomas Gleixner static inline void debug_deactivate(struct timer_list *timer)
7475cee9645SThomas Gleixner {
7485cee9645SThomas Gleixner 	debug_timer_deactivate(timer);
7495cee9645SThomas Gleixner 	trace_timer_cancel(timer);
7505cee9645SThomas Gleixner }
7515cee9645SThomas Gleixner 
7525cee9645SThomas Gleixner static inline void debug_assert_init(struct timer_list *timer)
7535cee9645SThomas Gleixner {
7545cee9645SThomas Gleixner 	debug_timer_assert_init(timer);
7555cee9645SThomas Gleixner }
7565cee9645SThomas Gleixner 
7575cee9645SThomas Gleixner static void do_init_timer(struct timer_list *timer, unsigned int flags,
7585cee9645SThomas Gleixner 			  const char *name, struct lock_class_key *key)
7595cee9645SThomas Gleixner {
7601dabbcecSThomas Gleixner 	timer->entry.pprev = NULL;
7610eeda71bSThomas Gleixner 	timer->flags = flags | raw_smp_processor_id();
7625cee9645SThomas Gleixner 	lockdep_init_map(&timer->lockdep_map, name, key, 0);
7635cee9645SThomas Gleixner }
7645cee9645SThomas Gleixner 
7655cee9645SThomas Gleixner /**
7665cee9645SThomas Gleixner  * init_timer_key - initialize a timer
7675cee9645SThomas Gleixner  * @timer: the timer to be initialized
7685cee9645SThomas Gleixner  * @flags: timer flags
7695cee9645SThomas Gleixner  * @name: name of the timer
7705cee9645SThomas Gleixner  * @key: lockdep class key of the fake lock used for tracking timer
7715cee9645SThomas Gleixner  *       sync lock dependencies
7725cee9645SThomas Gleixner  *
7735cee9645SThomas Gleixner  * init_timer_key() must be done to a timer prior calling *any* of the
7745cee9645SThomas Gleixner  * other timer functions.
7755cee9645SThomas Gleixner  */
7765cee9645SThomas Gleixner void init_timer_key(struct timer_list *timer, unsigned int flags,
7775cee9645SThomas Gleixner 		    const char *name, struct lock_class_key *key)
7785cee9645SThomas Gleixner {
7795cee9645SThomas Gleixner 	debug_init(timer);
7805cee9645SThomas Gleixner 	do_init_timer(timer, flags, name, key);
7815cee9645SThomas Gleixner }
7825cee9645SThomas Gleixner EXPORT_SYMBOL(init_timer_key);
7835cee9645SThomas Gleixner 
7845cee9645SThomas Gleixner static inline void detach_timer(struct timer_list *timer, bool clear_pending)
7855cee9645SThomas Gleixner {
7861dabbcecSThomas Gleixner 	struct hlist_node *entry = &timer->entry;
7875cee9645SThomas Gleixner 
7885cee9645SThomas Gleixner 	debug_deactivate(timer);
7895cee9645SThomas Gleixner 
7901dabbcecSThomas Gleixner 	__hlist_del(entry);
7915cee9645SThomas Gleixner 	if (clear_pending)
7921dabbcecSThomas Gleixner 		entry->pprev = NULL;
7931dabbcecSThomas Gleixner 	entry->next = LIST_POISON2;
7945cee9645SThomas Gleixner }
7955cee9645SThomas Gleixner 
796494af3edSThomas Gleixner static int detach_if_pending(struct timer_list *timer, struct timer_base *base,
7975cee9645SThomas Gleixner 			     bool clear_pending)
7985cee9645SThomas Gleixner {
799500462a9SThomas Gleixner 	unsigned idx = timer_get_idx(timer);
800500462a9SThomas Gleixner 
8015cee9645SThomas Gleixner 	if (!timer_pending(timer))
8025cee9645SThomas Gleixner 		return 0;
8035cee9645SThomas Gleixner 
804500462a9SThomas Gleixner 	if (hlist_is_singular_node(&timer->entry, base->vectors + idx))
805500462a9SThomas Gleixner 		__clear_bit(idx, base->pending_map);
806500462a9SThomas Gleixner 
8075cee9645SThomas Gleixner 	detach_timer(timer, clear_pending);
8085cee9645SThomas Gleixner 	return 1;
8095cee9645SThomas Gleixner }
8105cee9645SThomas Gleixner 
811500462a9SThomas Gleixner static inline struct timer_base *get_timer_cpu_base(u32 tflags, u32 cpu)
812500462a9SThomas Gleixner {
813500462a9SThomas Gleixner 	struct timer_base *base = per_cpu_ptr(&timer_bases[BASE_STD], cpu);
814500462a9SThomas Gleixner 
8155cee9645SThomas Gleixner 	/*
816500462a9SThomas Gleixner 	 * If the timer is deferrable and nohz is active then we need to use
817500462a9SThomas Gleixner 	 * the deferrable base.
818500462a9SThomas Gleixner 	 */
819500462a9SThomas Gleixner 	if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active &&
820500462a9SThomas Gleixner 	    (tflags & TIMER_DEFERRABLE))
821500462a9SThomas Gleixner 		base = per_cpu_ptr(&timer_bases[BASE_DEF], cpu);
822500462a9SThomas Gleixner 	return base;
823500462a9SThomas Gleixner }
824500462a9SThomas Gleixner 
825500462a9SThomas Gleixner static inline struct timer_base *get_timer_this_cpu_base(u32 tflags)
826500462a9SThomas Gleixner {
827500462a9SThomas Gleixner 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
828500462a9SThomas Gleixner 
829500462a9SThomas Gleixner 	/*
830500462a9SThomas Gleixner 	 * If the timer is deferrable and nohz is active then we need to use
831500462a9SThomas Gleixner 	 * the deferrable base.
832500462a9SThomas Gleixner 	 */
833500462a9SThomas Gleixner 	if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active &&
834500462a9SThomas Gleixner 	    (tflags & TIMER_DEFERRABLE))
835500462a9SThomas Gleixner 		base = this_cpu_ptr(&timer_bases[BASE_DEF]);
836500462a9SThomas Gleixner 	return base;
837500462a9SThomas Gleixner }
838500462a9SThomas Gleixner 
839500462a9SThomas Gleixner static inline struct timer_base *get_timer_base(u32 tflags)
840500462a9SThomas Gleixner {
841500462a9SThomas Gleixner 	return get_timer_cpu_base(tflags, tflags & TIMER_CPUMASK);
842500462a9SThomas Gleixner }
843500462a9SThomas Gleixner 
844a683f390SThomas Gleixner #ifdef CONFIG_NO_HZ_COMMON
845a683f390SThomas Gleixner static inline struct timer_base *
8466bad6bccSThomas Gleixner get_target_base(struct timer_base *base, unsigned tflags)
847500462a9SThomas Gleixner {
848a683f390SThomas Gleixner #ifdef CONFIG_SMP
849500462a9SThomas Gleixner 	if ((tflags & TIMER_PINNED) || !base->migration_enabled)
850500462a9SThomas Gleixner 		return get_timer_this_cpu_base(tflags);
851500462a9SThomas Gleixner 	return get_timer_cpu_base(tflags, get_nohz_timer_target());
852500462a9SThomas Gleixner #else
853500462a9SThomas Gleixner 	return get_timer_this_cpu_base(tflags);
854500462a9SThomas Gleixner #endif
855500462a9SThomas Gleixner }
856500462a9SThomas Gleixner 
857a683f390SThomas Gleixner static inline void forward_timer_base(struct timer_base *base)
858a683f390SThomas Gleixner {
8596bad6bccSThomas Gleixner 	unsigned long jnow = READ_ONCE(jiffies);
8606bad6bccSThomas Gleixner 
861a683f390SThomas Gleixner 	/*
862a683f390SThomas Gleixner 	 * We only forward the base when it's idle and we have a delta between
863a683f390SThomas Gleixner 	 * base clock and jiffies.
864a683f390SThomas Gleixner 	 */
8656bad6bccSThomas Gleixner 	if (!base->is_idle || (long) (jnow - base->clk) < 2)
866a683f390SThomas Gleixner 		return;
867a683f390SThomas Gleixner 
868a683f390SThomas Gleixner 	/*
869a683f390SThomas Gleixner 	 * If the next expiry value is > jiffies, then we fast forward to
870a683f390SThomas Gleixner 	 * jiffies otherwise we forward to the next expiry value.
871a683f390SThomas Gleixner 	 */
8726bad6bccSThomas Gleixner 	if (time_after(base->next_expiry, jnow))
8736bad6bccSThomas Gleixner 		base->clk = jnow;
874a683f390SThomas Gleixner 	else
875a683f390SThomas Gleixner 		base->clk = base->next_expiry;
876a683f390SThomas Gleixner }
877a683f390SThomas Gleixner #else
878a683f390SThomas Gleixner static inline struct timer_base *
8796bad6bccSThomas Gleixner get_target_base(struct timer_base *base, unsigned tflags)
880a683f390SThomas Gleixner {
881a683f390SThomas Gleixner 	return get_timer_this_cpu_base(tflags);
882a683f390SThomas Gleixner }
883a683f390SThomas Gleixner 
884a683f390SThomas Gleixner static inline void forward_timer_base(struct timer_base *base) { }
885a683f390SThomas Gleixner #endif
886a683f390SThomas Gleixner 
887a683f390SThomas Gleixner 
888500462a9SThomas Gleixner /*
889500462a9SThomas Gleixner  * We are using hashed locking: Holding per_cpu(timer_bases[x]).lock means
890500462a9SThomas Gleixner  * that all timers which are tied to this base are locked, and the base itself
891500462a9SThomas Gleixner  * is locked too.
8925cee9645SThomas Gleixner  *
8935cee9645SThomas Gleixner  * So __run_timers/migrate_timers can safely modify all timers which could
894500462a9SThomas Gleixner  * be found in the base->vectors array.
8955cee9645SThomas Gleixner  *
896500462a9SThomas Gleixner  * When a timer is migrating then the TIMER_MIGRATING flag is set and we need
897500462a9SThomas Gleixner  * to wait until the migration is done.
8985cee9645SThomas Gleixner  */
899494af3edSThomas Gleixner static struct timer_base *lock_timer_base(struct timer_list *timer,
9005cee9645SThomas Gleixner 					  unsigned long *flags)
9015cee9645SThomas Gleixner 	__acquires(timer->base->lock)
9025cee9645SThomas Gleixner {
9030eeda71bSThomas Gleixner 	for (;;) {
904494af3edSThomas Gleixner 		struct timer_base *base;
905b831275aSThomas Gleixner 		u32 tf;
906b831275aSThomas Gleixner 
907b831275aSThomas Gleixner 		/*
908b831275aSThomas Gleixner 		 * We need to use READ_ONCE() here, otherwise the compiler
909b831275aSThomas Gleixner 		 * might re-read @tf between the check for TIMER_MIGRATING
910b831275aSThomas Gleixner 		 * and spin_lock().
911b831275aSThomas Gleixner 		 */
912b831275aSThomas Gleixner 		tf = READ_ONCE(timer->flags);
9135cee9645SThomas Gleixner 
9140eeda71bSThomas Gleixner 		if (!(tf & TIMER_MIGRATING)) {
915500462a9SThomas Gleixner 			base = get_timer_base(tf);
9165cee9645SThomas Gleixner 			spin_lock_irqsave(&base->lock, *flags);
9170eeda71bSThomas Gleixner 			if (timer->flags == tf)
9185cee9645SThomas Gleixner 				return base;
9195cee9645SThomas Gleixner 			spin_unlock_irqrestore(&base->lock, *flags);
9205cee9645SThomas Gleixner 		}
9215cee9645SThomas Gleixner 		cpu_relax();
9225cee9645SThomas Gleixner 	}
9235cee9645SThomas Gleixner }
9245cee9645SThomas Gleixner 
9255cee9645SThomas Gleixner static inline int
926177ec0a0SThomas Gleixner __mod_timer(struct timer_list *timer, unsigned long expires, bool pending_only)
9275cee9645SThomas Gleixner {
928494af3edSThomas Gleixner 	struct timer_base *base, *new_base;
929f00c0afdSAnna-Maria Gleixner 	unsigned int idx = UINT_MAX;
930f00c0afdSAnna-Maria Gleixner 	unsigned long clk = 0, flags;
931bc7a34b8SThomas Gleixner 	int ret = 0;
9325cee9645SThomas Gleixner 
9334da9152aSThomas Gleixner 	BUG_ON(!timer->function);
9344da9152aSThomas Gleixner 
935500462a9SThomas Gleixner 	/*
936f00c0afdSAnna-Maria Gleixner 	 * This is a common optimization triggered by the networking code - if
937f00c0afdSAnna-Maria Gleixner 	 * the timer is re-modified to have the same timeout or ends up in the
938f00c0afdSAnna-Maria Gleixner 	 * same array bucket then just return:
939500462a9SThomas Gleixner 	 */
940500462a9SThomas Gleixner 	if (timer_pending(timer)) {
941500462a9SThomas Gleixner 		if (timer->expires == expires)
942500462a9SThomas Gleixner 			return 1;
943f00c0afdSAnna-Maria Gleixner 
9444da9152aSThomas Gleixner 		/*
9454da9152aSThomas Gleixner 		 * We lock timer base and calculate the bucket index right
9464da9152aSThomas Gleixner 		 * here. If the timer ends up in the same bucket, then we
9474da9152aSThomas Gleixner 		 * just update the expiry time and avoid the whole
9484da9152aSThomas Gleixner 		 * dequeue/enqueue dance.
9494da9152aSThomas Gleixner 		 */
9504da9152aSThomas Gleixner 		base = lock_timer_base(timer, &flags);
9514da9152aSThomas Gleixner 
9524da9152aSThomas Gleixner 		clk = base->clk;
953f00c0afdSAnna-Maria Gleixner 		idx = calc_wheel_index(expires, clk);
954f00c0afdSAnna-Maria Gleixner 
955f00c0afdSAnna-Maria Gleixner 		/*
956f00c0afdSAnna-Maria Gleixner 		 * Retrieve and compare the array index of the pending
957f00c0afdSAnna-Maria Gleixner 		 * timer. If it matches set the expiry to the new value so a
958f00c0afdSAnna-Maria Gleixner 		 * subsequent call will exit in the expires check above.
959f00c0afdSAnna-Maria Gleixner 		 */
960f00c0afdSAnna-Maria Gleixner 		if (idx == timer_get_idx(timer)) {
961f00c0afdSAnna-Maria Gleixner 			timer->expires = expires;
9624da9152aSThomas Gleixner 			ret = 1;
9634da9152aSThomas Gleixner 			goto out_unlock;
964f00c0afdSAnna-Maria Gleixner 		}
9654da9152aSThomas Gleixner 	} else {
9664da9152aSThomas Gleixner 		base = lock_timer_base(timer, &flags);
967500462a9SThomas Gleixner 	}
968500462a9SThomas Gleixner 
9695cee9645SThomas Gleixner 	ret = detach_if_pending(timer, base, false);
9705cee9645SThomas Gleixner 	if (!ret && pending_only)
9715cee9645SThomas Gleixner 		goto out_unlock;
9725cee9645SThomas Gleixner 
9735cee9645SThomas Gleixner 	debug_activate(timer, expires);
9745cee9645SThomas Gleixner 
975500462a9SThomas Gleixner 	new_base = get_target_base(base, timer->flags);
9765cee9645SThomas Gleixner 
9775cee9645SThomas Gleixner 	if (base != new_base) {
9785cee9645SThomas Gleixner 		/*
979500462a9SThomas Gleixner 		 * We are trying to schedule the timer on the new base.
9805cee9645SThomas Gleixner 		 * However we can't change timer's base while it is running,
9815cee9645SThomas Gleixner 		 * otherwise del_timer_sync() can't detect that the timer's
982500462a9SThomas Gleixner 		 * handler yet has not finished. This also guarantees that the
983500462a9SThomas Gleixner 		 * timer is serialized wrt itself.
9845cee9645SThomas Gleixner 		 */
9855cee9645SThomas Gleixner 		if (likely(base->running_timer != timer)) {
9865cee9645SThomas Gleixner 			/* See the comment in lock_timer_base() */
9870eeda71bSThomas Gleixner 			timer->flags |= TIMER_MIGRATING;
9880eeda71bSThomas Gleixner 
9895cee9645SThomas Gleixner 			spin_unlock(&base->lock);
9905cee9645SThomas Gleixner 			base = new_base;
9915cee9645SThomas Gleixner 			spin_lock(&base->lock);
992d0023a14SEric Dumazet 			WRITE_ONCE(timer->flags,
993d0023a14SEric Dumazet 				   (timer->flags & ~TIMER_BASEMASK) | base->cpu);
9945cee9645SThomas Gleixner 		}
9955cee9645SThomas Gleixner 	}
9965cee9645SThomas Gleixner 
9976bad6bccSThomas Gleixner 	/* Try to forward a stale timer base clock */
9986bad6bccSThomas Gleixner 	forward_timer_base(base);
9996bad6bccSThomas Gleixner 
10005cee9645SThomas Gleixner 	timer->expires = expires;
1001f00c0afdSAnna-Maria Gleixner 	/*
1002f00c0afdSAnna-Maria Gleixner 	 * If 'idx' was calculated above and the base time did not advance
10034da9152aSThomas Gleixner 	 * between calculating 'idx' and possibly switching the base, only
10044da9152aSThomas Gleixner 	 * enqueue_timer() and trigger_dyntick_cpu() is required. Otherwise
10054da9152aSThomas Gleixner 	 * we need to (re)calculate the wheel index via
10064da9152aSThomas Gleixner 	 * internal_add_timer().
1007f00c0afdSAnna-Maria Gleixner 	 */
1008f00c0afdSAnna-Maria Gleixner 	if (idx != UINT_MAX && clk == base->clk) {
1009f00c0afdSAnna-Maria Gleixner 		enqueue_timer(base, timer, idx);
1010f00c0afdSAnna-Maria Gleixner 		trigger_dyntick_cpu(base, timer);
1011f00c0afdSAnna-Maria Gleixner 	} else {
10125cee9645SThomas Gleixner 		internal_add_timer(base, timer);
1013f00c0afdSAnna-Maria Gleixner 	}
10145cee9645SThomas Gleixner 
10155cee9645SThomas Gleixner out_unlock:
10165cee9645SThomas Gleixner 	spin_unlock_irqrestore(&base->lock, flags);
10175cee9645SThomas Gleixner 
10185cee9645SThomas Gleixner 	return ret;
10195cee9645SThomas Gleixner }
10205cee9645SThomas Gleixner 
10215cee9645SThomas Gleixner /**
10225cee9645SThomas Gleixner  * mod_timer_pending - modify a pending timer's timeout
10235cee9645SThomas Gleixner  * @timer: the pending timer to be modified
10245cee9645SThomas Gleixner  * @expires: new timeout in jiffies
10255cee9645SThomas Gleixner  *
10265cee9645SThomas Gleixner  * mod_timer_pending() is the same for pending timers as mod_timer(),
10275cee9645SThomas Gleixner  * but will not re-activate and modify already deleted timers.
10285cee9645SThomas Gleixner  *
10295cee9645SThomas Gleixner  * It is useful for unserialized use of timers.
10305cee9645SThomas Gleixner  */
10315cee9645SThomas Gleixner int mod_timer_pending(struct timer_list *timer, unsigned long expires)
10325cee9645SThomas Gleixner {
1033177ec0a0SThomas Gleixner 	return __mod_timer(timer, expires, true);
10345cee9645SThomas Gleixner }
10355cee9645SThomas Gleixner EXPORT_SYMBOL(mod_timer_pending);
10365cee9645SThomas Gleixner 
10375cee9645SThomas Gleixner /**
10385cee9645SThomas Gleixner  * mod_timer - modify a timer's timeout
10395cee9645SThomas Gleixner  * @timer: the timer to be modified
10405cee9645SThomas Gleixner  * @expires: new timeout in jiffies
10415cee9645SThomas Gleixner  *
10425cee9645SThomas Gleixner  * mod_timer() is a more efficient way to update the expire field of an
10435cee9645SThomas Gleixner  * active timer (if the timer is inactive it will be activated)
10445cee9645SThomas Gleixner  *
10455cee9645SThomas Gleixner  * mod_timer(timer, expires) is equivalent to:
10465cee9645SThomas Gleixner  *
10475cee9645SThomas Gleixner  *     del_timer(timer); timer->expires = expires; add_timer(timer);
10485cee9645SThomas Gleixner  *
10495cee9645SThomas Gleixner  * Note that if there are multiple unserialized concurrent users of the
10505cee9645SThomas Gleixner  * same timer, then mod_timer() is the only safe way to modify the timeout,
10515cee9645SThomas Gleixner  * since add_timer() cannot modify an already running timer.
10525cee9645SThomas Gleixner  *
10535cee9645SThomas Gleixner  * The function returns whether it has modified a pending timer or not.
10545cee9645SThomas Gleixner  * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an
10555cee9645SThomas Gleixner  * active timer returns 1.)
10565cee9645SThomas Gleixner  */
10575cee9645SThomas Gleixner int mod_timer(struct timer_list *timer, unsigned long expires)
10585cee9645SThomas Gleixner {
1059177ec0a0SThomas Gleixner 	return __mod_timer(timer, expires, false);
10605cee9645SThomas Gleixner }
10615cee9645SThomas Gleixner EXPORT_SYMBOL(mod_timer);
10625cee9645SThomas Gleixner 
10635cee9645SThomas Gleixner /**
10645cee9645SThomas Gleixner  * add_timer - start a timer
10655cee9645SThomas Gleixner  * @timer: the timer to be added
10665cee9645SThomas Gleixner  *
10675cee9645SThomas Gleixner  * The kernel will do a ->function(->data) callback from the
10685cee9645SThomas Gleixner  * timer interrupt at the ->expires point in the future. The
10695cee9645SThomas Gleixner  * current time is 'jiffies'.
10705cee9645SThomas Gleixner  *
10715cee9645SThomas Gleixner  * The timer's ->expires, ->function (and if the handler uses it, ->data)
10725cee9645SThomas Gleixner  * fields must be set prior calling this function.
10735cee9645SThomas Gleixner  *
10745cee9645SThomas Gleixner  * Timers with an ->expires field in the past will be executed in the next
10755cee9645SThomas Gleixner  * timer tick.
10765cee9645SThomas Gleixner  */
10775cee9645SThomas Gleixner void add_timer(struct timer_list *timer)
10785cee9645SThomas Gleixner {
10795cee9645SThomas Gleixner 	BUG_ON(timer_pending(timer));
10805cee9645SThomas Gleixner 	mod_timer(timer, timer->expires);
10815cee9645SThomas Gleixner }
10825cee9645SThomas Gleixner EXPORT_SYMBOL(add_timer);
10835cee9645SThomas Gleixner 
10845cee9645SThomas Gleixner /**
10855cee9645SThomas Gleixner  * add_timer_on - start a timer on a particular CPU
10865cee9645SThomas Gleixner  * @timer: the timer to be added
10875cee9645SThomas Gleixner  * @cpu: the CPU to start it on
10885cee9645SThomas Gleixner  *
10895cee9645SThomas Gleixner  * This is not very scalable on SMP. Double adds are not possible.
10905cee9645SThomas Gleixner  */
10915cee9645SThomas Gleixner void add_timer_on(struct timer_list *timer, int cpu)
10925cee9645SThomas Gleixner {
1093500462a9SThomas Gleixner 	struct timer_base *new_base, *base;
10945cee9645SThomas Gleixner 	unsigned long flags;
10955cee9645SThomas Gleixner 
10965cee9645SThomas Gleixner 	BUG_ON(timer_pending(timer) || !timer->function);
109722b886ddSTejun Heo 
1098500462a9SThomas Gleixner 	new_base = get_timer_cpu_base(timer->flags, cpu);
1099500462a9SThomas Gleixner 
110022b886ddSTejun Heo 	/*
110122b886ddSTejun Heo 	 * If @timer was on a different CPU, it should be migrated with the
110222b886ddSTejun Heo 	 * old base locked to prevent other operations proceeding with the
110322b886ddSTejun Heo 	 * wrong base locked.  See lock_timer_base().
110422b886ddSTejun Heo 	 */
110522b886ddSTejun Heo 	base = lock_timer_base(timer, &flags);
110622b886ddSTejun Heo 	if (base != new_base) {
110722b886ddSTejun Heo 		timer->flags |= TIMER_MIGRATING;
110822b886ddSTejun Heo 
110922b886ddSTejun Heo 		spin_unlock(&base->lock);
111022b886ddSTejun Heo 		base = new_base;
111122b886ddSTejun Heo 		spin_lock(&base->lock);
111222b886ddSTejun Heo 		WRITE_ONCE(timer->flags,
111322b886ddSTejun Heo 			   (timer->flags & ~TIMER_BASEMASK) | cpu);
111422b886ddSTejun Heo 	}
111522b886ddSTejun Heo 
11165cee9645SThomas Gleixner 	debug_activate(timer, timer->expires);
11175cee9645SThomas Gleixner 	internal_add_timer(base, timer);
11185cee9645SThomas Gleixner 	spin_unlock_irqrestore(&base->lock, flags);
11195cee9645SThomas Gleixner }
11205cee9645SThomas Gleixner EXPORT_SYMBOL_GPL(add_timer_on);
11215cee9645SThomas Gleixner 
11225cee9645SThomas Gleixner /**
11230ba42a59SMasanari Iida  * del_timer - deactivate a timer.
11245cee9645SThomas Gleixner  * @timer: the timer to be deactivated
11255cee9645SThomas Gleixner  *
11265cee9645SThomas Gleixner  * del_timer() deactivates a timer - this works on both active and inactive
11275cee9645SThomas Gleixner  * timers.
11285cee9645SThomas Gleixner  *
11295cee9645SThomas Gleixner  * The function returns whether it has deactivated a pending timer or not.
11305cee9645SThomas Gleixner  * (ie. del_timer() of an inactive timer returns 0, del_timer() of an
11315cee9645SThomas Gleixner  * active timer returns 1.)
11325cee9645SThomas Gleixner  */
11335cee9645SThomas Gleixner int del_timer(struct timer_list *timer)
11345cee9645SThomas Gleixner {
1135494af3edSThomas Gleixner 	struct timer_base *base;
11365cee9645SThomas Gleixner 	unsigned long flags;
11375cee9645SThomas Gleixner 	int ret = 0;
11385cee9645SThomas Gleixner 
11395cee9645SThomas Gleixner 	debug_assert_init(timer);
11405cee9645SThomas Gleixner 
11415cee9645SThomas Gleixner 	if (timer_pending(timer)) {
11425cee9645SThomas Gleixner 		base = lock_timer_base(timer, &flags);
11435cee9645SThomas Gleixner 		ret = detach_if_pending(timer, base, true);
11445cee9645SThomas Gleixner 		spin_unlock_irqrestore(&base->lock, flags);
11455cee9645SThomas Gleixner 	}
11465cee9645SThomas Gleixner 
11475cee9645SThomas Gleixner 	return ret;
11485cee9645SThomas Gleixner }
11495cee9645SThomas Gleixner EXPORT_SYMBOL(del_timer);
11505cee9645SThomas Gleixner 
11515cee9645SThomas Gleixner /**
11525cee9645SThomas Gleixner  * try_to_del_timer_sync - Try to deactivate a timer
1153*d15bc69aSPeter Meerwald-Stadler  * @timer: timer to delete
11545cee9645SThomas Gleixner  *
11555cee9645SThomas Gleixner  * This function tries to deactivate a timer. Upon successful (ret >= 0)
11565cee9645SThomas Gleixner  * exit the timer is not queued and the handler is not running on any CPU.
11575cee9645SThomas Gleixner  */
11585cee9645SThomas Gleixner int try_to_del_timer_sync(struct timer_list *timer)
11595cee9645SThomas Gleixner {
1160494af3edSThomas Gleixner 	struct timer_base *base;
11615cee9645SThomas Gleixner 	unsigned long flags;
11625cee9645SThomas Gleixner 	int ret = -1;
11635cee9645SThomas Gleixner 
11645cee9645SThomas Gleixner 	debug_assert_init(timer);
11655cee9645SThomas Gleixner 
11665cee9645SThomas Gleixner 	base = lock_timer_base(timer, &flags);
11675cee9645SThomas Gleixner 
1168dfb4357dSKees Cook 	if (base->running_timer != timer)
11695cee9645SThomas Gleixner 		ret = detach_if_pending(timer, base, true);
1170dfb4357dSKees Cook 
11715cee9645SThomas Gleixner 	spin_unlock_irqrestore(&base->lock, flags);
11725cee9645SThomas Gleixner 
11735cee9645SThomas Gleixner 	return ret;
11745cee9645SThomas Gleixner }
11755cee9645SThomas Gleixner EXPORT_SYMBOL(try_to_del_timer_sync);
11765cee9645SThomas Gleixner 
11775cee9645SThomas Gleixner #ifdef CONFIG_SMP
11785cee9645SThomas Gleixner /**
11795cee9645SThomas Gleixner  * del_timer_sync - deactivate a timer and wait for the handler to finish.
11805cee9645SThomas Gleixner  * @timer: the timer to be deactivated
11815cee9645SThomas Gleixner  *
11825cee9645SThomas Gleixner  * This function only differs from del_timer() on SMP: besides deactivating
11835cee9645SThomas Gleixner  * the timer it also makes sure the handler has finished executing on other
11845cee9645SThomas Gleixner  * CPUs.
11855cee9645SThomas Gleixner  *
11865cee9645SThomas Gleixner  * Synchronization rules: Callers must prevent restarting of the timer,
11875cee9645SThomas Gleixner  * otherwise this function is meaningless. It must not be called from
11885cee9645SThomas Gleixner  * interrupt contexts unless the timer is an irqsafe one. The caller must
11895cee9645SThomas Gleixner  * not hold locks which would prevent completion of the timer's
11905cee9645SThomas Gleixner  * handler. The timer's handler must not call add_timer_on(). Upon exit the
11915cee9645SThomas Gleixner  * timer is not queued and the handler is not running on any CPU.
11925cee9645SThomas Gleixner  *
11935cee9645SThomas Gleixner  * Note: For !irqsafe timers, you must not hold locks that are held in
11945cee9645SThomas Gleixner  *   interrupt context while calling this function. Even if the lock has
11955cee9645SThomas Gleixner  *   nothing to do with the timer in question.  Here's why:
11965cee9645SThomas Gleixner  *
11975cee9645SThomas Gleixner  *    CPU0                             CPU1
11985cee9645SThomas Gleixner  *    ----                             ----
11995cee9645SThomas Gleixner  *                                   <SOFTIRQ>
12005cee9645SThomas Gleixner  *                                   call_timer_fn();
12015cee9645SThomas Gleixner  *                                     base->running_timer = mytimer;
12025cee9645SThomas Gleixner  *  spin_lock_irq(somelock);
12035cee9645SThomas Gleixner  *                                     <IRQ>
12045cee9645SThomas Gleixner  *                                        spin_lock(somelock);
12055cee9645SThomas Gleixner  *  del_timer_sync(mytimer);
12065cee9645SThomas Gleixner  *   while (base->running_timer == mytimer);
12075cee9645SThomas Gleixner  *
12085cee9645SThomas Gleixner  * Now del_timer_sync() will never return and never release somelock.
12095cee9645SThomas Gleixner  * The interrupt on the other CPU is waiting to grab somelock but
12105cee9645SThomas Gleixner  * it has interrupted the softirq that CPU0 is waiting to finish.
12115cee9645SThomas Gleixner  *
12125cee9645SThomas Gleixner  * The function returns whether it has deactivated a pending timer or not.
12135cee9645SThomas Gleixner  */
12145cee9645SThomas Gleixner int del_timer_sync(struct timer_list *timer)
12155cee9645SThomas Gleixner {
12165cee9645SThomas Gleixner #ifdef CONFIG_LOCKDEP
12175cee9645SThomas Gleixner 	unsigned long flags;
12185cee9645SThomas Gleixner 
12195cee9645SThomas Gleixner 	/*
12205cee9645SThomas Gleixner 	 * If lockdep gives a backtrace here, please reference
12215cee9645SThomas Gleixner 	 * the synchronization rules above.
12225cee9645SThomas Gleixner 	 */
12235cee9645SThomas Gleixner 	local_irq_save(flags);
12245cee9645SThomas Gleixner 	lock_map_acquire(&timer->lockdep_map);
12255cee9645SThomas Gleixner 	lock_map_release(&timer->lockdep_map);
12265cee9645SThomas Gleixner 	local_irq_restore(flags);
12275cee9645SThomas Gleixner #endif
12285cee9645SThomas Gleixner 	/*
12295cee9645SThomas Gleixner 	 * don't use it in hardirq context, because it
12305cee9645SThomas Gleixner 	 * could lead to deadlock.
12315cee9645SThomas Gleixner 	 */
12320eeda71bSThomas Gleixner 	WARN_ON(in_irq() && !(timer->flags & TIMER_IRQSAFE));
12335cee9645SThomas Gleixner 	for (;;) {
12345cee9645SThomas Gleixner 		int ret = try_to_del_timer_sync(timer);
12355cee9645SThomas Gleixner 		if (ret >= 0)
12365cee9645SThomas Gleixner 			return ret;
12375cee9645SThomas Gleixner 		cpu_relax();
12385cee9645SThomas Gleixner 	}
12395cee9645SThomas Gleixner }
12405cee9645SThomas Gleixner EXPORT_SYMBOL(del_timer_sync);
12415cee9645SThomas Gleixner #endif
12425cee9645SThomas Gleixner 
12435cee9645SThomas Gleixner static void call_timer_fn(struct timer_list *timer, void (*fn)(unsigned long),
12445cee9645SThomas Gleixner 			  unsigned long data)
12455cee9645SThomas Gleixner {
12465cee9645SThomas Gleixner 	int count = preempt_count();
12475cee9645SThomas Gleixner 
12485cee9645SThomas Gleixner #ifdef CONFIG_LOCKDEP
12495cee9645SThomas Gleixner 	/*
12505cee9645SThomas Gleixner 	 * It is permissible to free the timer from inside the
12515cee9645SThomas Gleixner 	 * function that is called from it, this we need to take into
12525cee9645SThomas Gleixner 	 * account for lockdep too. To avoid bogus "held lock freed"
12535cee9645SThomas Gleixner 	 * warnings as well as problems when looking into
12545cee9645SThomas Gleixner 	 * timer->lockdep_map, make a copy and use that here.
12555cee9645SThomas Gleixner 	 */
12565cee9645SThomas Gleixner 	struct lockdep_map lockdep_map;
12575cee9645SThomas Gleixner 
12585cee9645SThomas Gleixner 	lockdep_copy_map(&lockdep_map, &timer->lockdep_map);
12595cee9645SThomas Gleixner #endif
12605cee9645SThomas Gleixner 	/*
12615cee9645SThomas Gleixner 	 * Couple the lock chain with the lock chain at
12625cee9645SThomas Gleixner 	 * del_timer_sync() by acquiring the lock_map around the fn()
12635cee9645SThomas Gleixner 	 * call here and in del_timer_sync().
12645cee9645SThomas Gleixner 	 */
12655cee9645SThomas Gleixner 	lock_map_acquire(&lockdep_map);
12665cee9645SThomas Gleixner 
12675cee9645SThomas Gleixner 	trace_timer_expire_entry(timer);
12685cee9645SThomas Gleixner 	fn(data);
12695cee9645SThomas Gleixner 	trace_timer_expire_exit(timer);
12705cee9645SThomas Gleixner 
12715cee9645SThomas Gleixner 	lock_map_release(&lockdep_map);
12725cee9645SThomas Gleixner 
12735cee9645SThomas Gleixner 	if (count != preempt_count()) {
12745cee9645SThomas Gleixner 		WARN_ONCE(1, "timer: %pF preempt leak: %08x -> %08x\n",
12755cee9645SThomas Gleixner 			  fn, count, preempt_count());
12765cee9645SThomas Gleixner 		/*
12775cee9645SThomas Gleixner 		 * Restore the preempt count. That gives us a decent
12785cee9645SThomas Gleixner 		 * chance to survive and extract information. If the
12795cee9645SThomas Gleixner 		 * callback kept a lock held, bad luck, but not worse
12805cee9645SThomas Gleixner 		 * than the BUG() we had.
12815cee9645SThomas Gleixner 		 */
12825cee9645SThomas Gleixner 		preempt_count_set(count);
12835cee9645SThomas Gleixner 	}
12845cee9645SThomas Gleixner }
12855cee9645SThomas Gleixner 
1286500462a9SThomas Gleixner static void expire_timers(struct timer_base *base, struct hlist_head *head)
12875cee9645SThomas Gleixner {
12881dabbcecSThomas Gleixner 	while (!hlist_empty(head)) {
1289500462a9SThomas Gleixner 		struct timer_list *timer;
12905cee9645SThomas Gleixner 		void (*fn)(unsigned long);
12915cee9645SThomas Gleixner 		unsigned long data;
12925cee9645SThomas Gleixner 
12931dabbcecSThomas Gleixner 		timer = hlist_entry(head->first, struct timer_list, entry);
12945cee9645SThomas Gleixner 
12955cee9645SThomas Gleixner 		base->running_timer = timer;
1296500462a9SThomas Gleixner 		detach_timer(timer, true);
12975cee9645SThomas Gleixner 
1298500462a9SThomas Gleixner 		fn = timer->function;
1299500462a9SThomas Gleixner 		data = timer->data;
1300500462a9SThomas Gleixner 
1301500462a9SThomas Gleixner 		if (timer->flags & TIMER_IRQSAFE) {
13025cee9645SThomas Gleixner 			spin_unlock(&base->lock);
13035cee9645SThomas Gleixner 			call_timer_fn(timer, fn, data);
13045cee9645SThomas Gleixner 			spin_lock(&base->lock);
13055cee9645SThomas Gleixner 		} else {
13065cee9645SThomas Gleixner 			spin_unlock_irq(&base->lock);
13075cee9645SThomas Gleixner 			call_timer_fn(timer, fn, data);
13085cee9645SThomas Gleixner 			spin_lock_irq(&base->lock);
13095cee9645SThomas Gleixner 		}
13105cee9645SThomas Gleixner 	}
13115cee9645SThomas Gleixner }
1312500462a9SThomas Gleixner 
131323696838SAnna-Maria Gleixner static int __collect_expired_timers(struct timer_base *base,
1314500462a9SThomas Gleixner 				    struct hlist_head *heads)
1315500462a9SThomas Gleixner {
1316500462a9SThomas Gleixner 	unsigned long clk = base->clk;
1317500462a9SThomas Gleixner 	struct hlist_head *vec;
1318500462a9SThomas Gleixner 	int i, levels = 0;
1319500462a9SThomas Gleixner 	unsigned int idx;
1320500462a9SThomas Gleixner 
1321500462a9SThomas Gleixner 	for (i = 0; i < LVL_DEPTH; i++) {
1322500462a9SThomas Gleixner 		idx = (clk & LVL_MASK) + i * LVL_SIZE;
1323500462a9SThomas Gleixner 
1324500462a9SThomas Gleixner 		if (__test_and_clear_bit(idx, base->pending_map)) {
1325500462a9SThomas Gleixner 			vec = base->vectors + idx;
1326500462a9SThomas Gleixner 			hlist_move_list(vec, heads++);
1327500462a9SThomas Gleixner 			levels++;
1328500462a9SThomas Gleixner 		}
1329500462a9SThomas Gleixner 		/* Is it time to look at the next level? */
1330500462a9SThomas Gleixner 		if (clk & LVL_CLK_MASK)
1331500462a9SThomas Gleixner 			break;
1332500462a9SThomas Gleixner 		/* Shift clock for the next level granularity */
1333500462a9SThomas Gleixner 		clk >>= LVL_CLK_SHIFT;
1334500462a9SThomas Gleixner 	}
1335500462a9SThomas Gleixner 	return levels;
13365cee9645SThomas Gleixner }
13375cee9645SThomas Gleixner 
13385cee9645SThomas Gleixner #ifdef CONFIG_NO_HZ_COMMON
13395cee9645SThomas Gleixner /*
134023696838SAnna-Maria Gleixner  * Find the next pending bucket of a level. Search from level start (@offset)
134123696838SAnna-Maria Gleixner  * + @clk upwards and if nothing there, search from start of the level
134223696838SAnna-Maria Gleixner  * (@offset) up to @offset + clk.
13435cee9645SThomas Gleixner  */
1344500462a9SThomas Gleixner static int next_pending_bucket(struct timer_base *base, unsigned offset,
1345500462a9SThomas Gleixner 			       unsigned clk)
13465cee9645SThomas Gleixner {
1347500462a9SThomas Gleixner 	unsigned pos, start = offset + clk;
1348500462a9SThomas Gleixner 	unsigned end = offset + LVL_SIZE;
13495cee9645SThomas Gleixner 
1350500462a9SThomas Gleixner 	pos = find_next_bit(base->pending_map, end, start);
1351500462a9SThomas Gleixner 	if (pos < end)
1352500462a9SThomas Gleixner 		return pos - start;
13535cee9645SThomas Gleixner 
1354500462a9SThomas Gleixner 	pos = find_next_bit(base->pending_map, start, offset);
1355500462a9SThomas Gleixner 	return pos < start ? pos + LVL_SIZE - start : -1;
13565cee9645SThomas Gleixner }
13575cee9645SThomas Gleixner 
1358500462a9SThomas Gleixner /*
135923696838SAnna-Maria Gleixner  * Search the first expiring timer in the various clock levels. Caller must
136023696838SAnna-Maria Gleixner  * hold base->lock.
13615cee9645SThomas Gleixner  */
1362494af3edSThomas Gleixner static unsigned long __next_timer_interrupt(struct timer_base *base)
13635cee9645SThomas Gleixner {
1364500462a9SThomas Gleixner 	unsigned long clk, next, adj;
1365500462a9SThomas Gleixner 	unsigned lvl, offset = 0;
13665cee9645SThomas Gleixner 
1367500462a9SThomas Gleixner 	next = base->clk + NEXT_TIMER_MAX_DELTA;
1368500462a9SThomas Gleixner 	clk = base->clk;
1369500462a9SThomas Gleixner 	for (lvl = 0; lvl < LVL_DEPTH; lvl++, offset += LVL_SIZE) {
1370500462a9SThomas Gleixner 		int pos = next_pending_bucket(base, offset, clk & LVL_MASK);
13715cee9645SThomas Gleixner 
1372500462a9SThomas Gleixner 		if (pos >= 0) {
1373500462a9SThomas Gleixner 			unsigned long tmp = clk + (unsigned long) pos;
13745cee9645SThomas Gleixner 
1375500462a9SThomas Gleixner 			tmp <<= LVL_SHIFT(lvl);
1376500462a9SThomas Gleixner 			if (time_before(tmp, next))
1377500462a9SThomas Gleixner 				next = tmp;
13785cee9645SThomas Gleixner 		}
13795cee9645SThomas Gleixner 		/*
1380500462a9SThomas Gleixner 		 * Clock for the next level. If the current level clock lower
1381500462a9SThomas Gleixner 		 * bits are zero, we look at the next level as is. If not we
1382500462a9SThomas Gleixner 		 * need to advance it by one because that's going to be the
1383500462a9SThomas Gleixner 		 * next expiring bucket in that level. base->clk is the next
1384500462a9SThomas Gleixner 		 * expiring jiffie. So in case of:
1385500462a9SThomas Gleixner 		 *
1386500462a9SThomas Gleixner 		 * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
1387500462a9SThomas Gleixner 		 *  0    0    0    0    0    0
1388500462a9SThomas Gleixner 		 *
1389500462a9SThomas Gleixner 		 * we have to look at all levels @index 0. With
1390500462a9SThomas Gleixner 		 *
1391500462a9SThomas Gleixner 		 * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
1392500462a9SThomas Gleixner 		 *  0    0    0    0    0    2
1393500462a9SThomas Gleixner 		 *
1394500462a9SThomas Gleixner 		 * LVL0 has the next expiring bucket @index 2. The upper
1395500462a9SThomas Gleixner 		 * levels have the next expiring bucket @index 1.
1396500462a9SThomas Gleixner 		 *
1397500462a9SThomas Gleixner 		 * In case that the propagation wraps the next level the same
1398500462a9SThomas Gleixner 		 * rules apply:
1399500462a9SThomas Gleixner 		 *
1400500462a9SThomas Gleixner 		 * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0
1401500462a9SThomas Gleixner 		 *  0    0    0    0    F    2
1402500462a9SThomas Gleixner 		 *
1403500462a9SThomas Gleixner 		 * So after looking at LVL0 we get:
1404500462a9SThomas Gleixner 		 *
1405500462a9SThomas Gleixner 		 * LVL5 LVL4 LVL3 LVL2 LVL1
1406500462a9SThomas Gleixner 		 *  0    0    0    1    0
1407500462a9SThomas Gleixner 		 *
1408500462a9SThomas Gleixner 		 * So no propagation from LVL1 to LVL2 because that happened
1409500462a9SThomas Gleixner 		 * with the add already, but then we need to propagate further
1410500462a9SThomas Gleixner 		 * from LVL2 to LVL3.
1411500462a9SThomas Gleixner 		 *
1412500462a9SThomas Gleixner 		 * So the simple check whether the lower bits of the current
1413500462a9SThomas Gleixner 		 * level are 0 or not is sufficient for all cases.
14145cee9645SThomas Gleixner 		 */
1415500462a9SThomas Gleixner 		adj = clk & LVL_CLK_MASK ? 1 : 0;
1416500462a9SThomas Gleixner 		clk >>= LVL_CLK_SHIFT;
1417500462a9SThomas Gleixner 		clk += adj;
14185cee9645SThomas Gleixner 	}
1419500462a9SThomas Gleixner 	return next;
14205cee9645SThomas Gleixner }
14215cee9645SThomas Gleixner 
14225cee9645SThomas Gleixner /*
14235cee9645SThomas Gleixner  * Check, if the next hrtimer event is before the next timer wheel
14245cee9645SThomas Gleixner  * event:
14255cee9645SThomas Gleixner  */
1426c1ad348bSThomas Gleixner static u64 cmp_next_hrtimer_event(u64 basem, u64 expires)
14275cee9645SThomas Gleixner {
1428c1ad348bSThomas Gleixner 	u64 nextevt = hrtimer_get_next_event();
14295cee9645SThomas Gleixner 
1430c1ad348bSThomas Gleixner 	/*
1431c1ad348bSThomas Gleixner 	 * If high resolution timers are enabled
1432c1ad348bSThomas Gleixner 	 * hrtimer_get_next_event() returns KTIME_MAX.
1433c1ad348bSThomas Gleixner 	 */
1434c1ad348bSThomas Gleixner 	if (expires <= nextevt)
14355cee9645SThomas Gleixner 		return expires;
14365cee9645SThomas Gleixner 
14375cee9645SThomas Gleixner 	/*
1438c1ad348bSThomas Gleixner 	 * If the next timer is already expired, return the tick base
1439c1ad348bSThomas Gleixner 	 * time so the tick is fired immediately.
14405cee9645SThomas Gleixner 	 */
1441c1ad348bSThomas Gleixner 	if (nextevt <= basem)
1442c1ad348bSThomas Gleixner 		return basem;
14435cee9645SThomas Gleixner 
14445cee9645SThomas Gleixner 	/*
1445c1ad348bSThomas Gleixner 	 * Round up to the next jiffie. High resolution timers are
1446c1ad348bSThomas Gleixner 	 * off, so the hrtimers are expired in the tick and we need to
1447c1ad348bSThomas Gleixner 	 * make sure that this tick really expires the timer to avoid
1448c1ad348bSThomas Gleixner 	 * a ping pong of the nohz stop code.
1449c1ad348bSThomas Gleixner 	 *
1450c1ad348bSThomas Gleixner 	 * Use DIV_ROUND_UP_ULL to prevent gcc calling __divdi3
14515cee9645SThomas Gleixner 	 */
1452c1ad348bSThomas Gleixner 	return DIV_ROUND_UP_ULL(nextevt, TICK_NSEC) * TICK_NSEC;
14535cee9645SThomas Gleixner }
14545cee9645SThomas Gleixner 
14555cee9645SThomas Gleixner /**
1456c1ad348bSThomas Gleixner  * get_next_timer_interrupt - return the time (clock mono) of the next timer
1457c1ad348bSThomas Gleixner  * @basej:	base time jiffies
1458c1ad348bSThomas Gleixner  * @basem:	base time clock monotonic
1459c1ad348bSThomas Gleixner  *
1460c1ad348bSThomas Gleixner  * Returns the tick aligned clock monotonic time of the next pending
1461c1ad348bSThomas Gleixner  * timer or KTIME_MAX if no timer is pending.
14625cee9645SThomas Gleixner  */
1463c1ad348bSThomas Gleixner u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
14645cee9645SThomas Gleixner {
1465500462a9SThomas Gleixner 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
1466c1ad348bSThomas Gleixner 	u64 expires = KTIME_MAX;
1467c1ad348bSThomas Gleixner 	unsigned long nextevt;
146846c8f0b0SChris Metcalf 	bool is_max_delta;
14695cee9645SThomas Gleixner 
14705cee9645SThomas Gleixner 	/*
14715cee9645SThomas Gleixner 	 * Pretend that there is no timer pending if the cpu is offline.
14725cee9645SThomas Gleixner 	 * Possible pending timers will be migrated later to an active cpu.
14735cee9645SThomas Gleixner 	 */
14745cee9645SThomas Gleixner 	if (cpu_is_offline(smp_processor_id()))
14755cee9645SThomas Gleixner 		return expires;
14765cee9645SThomas Gleixner 
14775cee9645SThomas Gleixner 	spin_lock(&base->lock);
1478500462a9SThomas Gleixner 	nextevt = __next_timer_interrupt(base);
147946c8f0b0SChris Metcalf 	is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA);
1480a683f390SThomas Gleixner 	base->next_expiry = nextevt;
1481a683f390SThomas Gleixner 	/*
1482041ad7bcSThomas Gleixner 	 * We have a fresh next event. Check whether we can forward the
1483041ad7bcSThomas Gleixner 	 * base. We can only do that when @basej is past base->clk
1484041ad7bcSThomas Gleixner 	 * otherwise we might rewind base->clk.
1485a683f390SThomas Gleixner 	 */
1486041ad7bcSThomas Gleixner 	if (time_after(basej, base->clk)) {
1487041ad7bcSThomas Gleixner 		if (time_after(nextevt, basej))
1488041ad7bcSThomas Gleixner 			base->clk = basej;
1489a683f390SThomas Gleixner 		else if (time_after(nextevt, base->clk))
1490a683f390SThomas Gleixner 			base->clk = nextevt;
1491041ad7bcSThomas Gleixner 	}
1492a683f390SThomas Gleixner 
1493a683f390SThomas Gleixner 	if (time_before_eq(nextevt, basej)) {
1494c1ad348bSThomas Gleixner 		expires = basem;
1495a683f390SThomas Gleixner 		base->is_idle = false;
1496a683f390SThomas Gleixner 	} else {
149746c8f0b0SChris Metcalf 		if (!is_max_delta)
1498c1ad348bSThomas Gleixner 			expires = basem + (nextevt - basej) * TICK_NSEC;
1499a683f390SThomas Gleixner 		/*
1500a683f390SThomas Gleixner 		 * If we expect to sleep more than a tick, mark the base idle:
1501a683f390SThomas Gleixner 		 */
1502a683f390SThomas Gleixner 		if ((expires - basem) > TICK_NSEC)
1503a683f390SThomas Gleixner 			base->is_idle = true;
15045cee9645SThomas Gleixner 	}
15055cee9645SThomas Gleixner 	spin_unlock(&base->lock);
15065cee9645SThomas Gleixner 
1507c1ad348bSThomas Gleixner 	return cmp_next_hrtimer_event(basem, expires);
15085cee9645SThomas Gleixner }
150923696838SAnna-Maria Gleixner 
1510a683f390SThomas Gleixner /**
1511a683f390SThomas Gleixner  * timer_clear_idle - Clear the idle state of the timer base
1512a683f390SThomas Gleixner  *
1513a683f390SThomas Gleixner  * Called with interrupts disabled
1514a683f390SThomas Gleixner  */
1515a683f390SThomas Gleixner void timer_clear_idle(void)
1516a683f390SThomas Gleixner {
1517a683f390SThomas Gleixner 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
1518a683f390SThomas Gleixner 
1519a683f390SThomas Gleixner 	/*
1520a683f390SThomas Gleixner 	 * We do this unlocked. The worst outcome is a remote enqueue sending
1521a683f390SThomas Gleixner 	 * a pointless IPI, but taking the lock would just make the window for
1522a683f390SThomas Gleixner 	 * sending the IPI a few instructions smaller for the cost of taking
1523a683f390SThomas Gleixner 	 * the lock in the exit from idle path.
1524a683f390SThomas Gleixner 	 */
1525a683f390SThomas Gleixner 	base->is_idle = false;
1526a683f390SThomas Gleixner }
1527a683f390SThomas Gleixner 
152823696838SAnna-Maria Gleixner static int collect_expired_timers(struct timer_base *base,
152923696838SAnna-Maria Gleixner 				  struct hlist_head *heads)
153023696838SAnna-Maria Gleixner {
153123696838SAnna-Maria Gleixner 	/*
153223696838SAnna-Maria Gleixner 	 * NOHZ optimization. After a long idle sleep we need to forward the
153323696838SAnna-Maria Gleixner 	 * base to current jiffies. Avoid a loop by searching the bitfield for
153423696838SAnna-Maria Gleixner 	 * the next expiring timer.
153523696838SAnna-Maria Gleixner 	 */
153623696838SAnna-Maria Gleixner 	if ((long)(jiffies - base->clk) > 2) {
153723696838SAnna-Maria Gleixner 		unsigned long next = __next_timer_interrupt(base);
153823696838SAnna-Maria Gleixner 
153923696838SAnna-Maria Gleixner 		/*
154023696838SAnna-Maria Gleixner 		 * If the next timer is ahead of time forward to current
1541a683f390SThomas Gleixner 		 * jiffies, otherwise forward to the next expiry time:
154223696838SAnna-Maria Gleixner 		 */
154323696838SAnna-Maria Gleixner 		if (time_after(next, jiffies)) {
154423696838SAnna-Maria Gleixner 			/* The call site will increment clock! */
154523696838SAnna-Maria Gleixner 			base->clk = jiffies - 1;
154623696838SAnna-Maria Gleixner 			return 0;
154723696838SAnna-Maria Gleixner 		}
154823696838SAnna-Maria Gleixner 		base->clk = next;
154923696838SAnna-Maria Gleixner 	}
155023696838SAnna-Maria Gleixner 	return __collect_expired_timers(base, heads);
155123696838SAnna-Maria Gleixner }
155223696838SAnna-Maria Gleixner #else
155323696838SAnna-Maria Gleixner static inline int collect_expired_timers(struct timer_base *base,
155423696838SAnna-Maria Gleixner 					 struct hlist_head *heads)
155523696838SAnna-Maria Gleixner {
155623696838SAnna-Maria Gleixner 	return __collect_expired_timers(base, heads);
155723696838SAnna-Maria Gleixner }
15585cee9645SThomas Gleixner #endif
15595cee9645SThomas Gleixner 
15605cee9645SThomas Gleixner /*
15615cee9645SThomas Gleixner  * Called from the timer interrupt handler to charge one tick to the current
15625cee9645SThomas Gleixner  * process.  user_tick is 1 if the tick is user time, 0 for system.
15635cee9645SThomas Gleixner  */
15645cee9645SThomas Gleixner void update_process_times(int user_tick)
15655cee9645SThomas Gleixner {
15665cee9645SThomas Gleixner 	struct task_struct *p = current;
15675cee9645SThomas Gleixner 
15685cee9645SThomas Gleixner 	/* Note: this timer irq context must be accounted for as well. */
15695cee9645SThomas Gleixner 	account_process_tick(p, user_tick);
15705cee9645SThomas Gleixner 	run_local_timers();
1571c3377c2dSPaul E. McKenney 	rcu_check_callbacks(user_tick);
15725cee9645SThomas Gleixner #ifdef CONFIG_IRQ_WORK
15735cee9645SThomas Gleixner 	if (in_irq())
157476a33061SFrederic Weisbecker 		irq_work_tick();
15755cee9645SThomas Gleixner #endif
15765cee9645SThomas Gleixner 	scheduler_tick();
1577baa73d9eSNicolas Pitre 	if (IS_ENABLED(CONFIG_POSIX_TIMERS))
15785cee9645SThomas Gleixner 		run_posix_cpu_timers(p);
15795cee9645SThomas Gleixner }
15805cee9645SThomas Gleixner 
158173420feaSAnna-Maria Gleixner /**
158273420feaSAnna-Maria Gleixner  * __run_timers - run all expired timers (if any) on this CPU.
158373420feaSAnna-Maria Gleixner  * @base: the timer vector to be processed.
158473420feaSAnna-Maria Gleixner  */
158573420feaSAnna-Maria Gleixner static inline void __run_timers(struct timer_base *base)
158673420feaSAnna-Maria Gleixner {
158773420feaSAnna-Maria Gleixner 	struct hlist_head heads[LVL_DEPTH];
158873420feaSAnna-Maria Gleixner 	int levels;
158973420feaSAnna-Maria Gleixner 
159073420feaSAnna-Maria Gleixner 	if (!time_after_eq(jiffies, base->clk))
159173420feaSAnna-Maria Gleixner 		return;
159273420feaSAnna-Maria Gleixner 
159373420feaSAnna-Maria Gleixner 	spin_lock_irq(&base->lock);
159473420feaSAnna-Maria Gleixner 
159573420feaSAnna-Maria Gleixner 	while (time_after_eq(jiffies, base->clk)) {
159673420feaSAnna-Maria Gleixner 
159773420feaSAnna-Maria Gleixner 		levels = collect_expired_timers(base, heads);
159873420feaSAnna-Maria Gleixner 		base->clk++;
159973420feaSAnna-Maria Gleixner 
160073420feaSAnna-Maria Gleixner 		while (levels--)
160173420feaSAnna-Maria Gleixner 			expire_timers(base, heads + levels);
160273420feaSAnna-Maria Gleixner 	}
160373420feaSAnna-Maria Gleixner 	base->running_timer = NULL;
160473420feaSAnna-Maria Gleixner 	spin_unlock_irq(&base->lock);
160573420feaSAnna-Maria Gleixner }
160673420feaSAnna-Maria Gleixner 
16075cee9645SThomas Gleixner /*
16085cee9645SThomas Gleixner  * This function runs timers and the timer-tq in bottom half context.
16095cee9645SThomas Gleixner  */
16100766f788SEmese Revfy static __latent_entropy void run_timer_softirq(struct softirq_action *h)
16115cee9645SThomas Gleixner {
1612500462a9SThomas Gleixner 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
16135cee9645SThomas Gleixner 
16145cee9645SThomas Gleixner 	__run_timers(base);
1615500462a9SThomas Gleixner 	if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active)
1616500462a9SThomas Gleixner 		__run_timers(this_cpu_ptr(&timer_bases[BASE_DEF]));
16175cee9645SThomas Gleixner }
16185cee9645SThomas Gleixner 
16195cee9645SThomas Gleixner /*
16205cee9645SThomas Gleixner  * Called by the local, per-CPU timer interrupt on SMP.
16215cee9645SThomas Gleixner  */
16225cee9645SThomas Gleixner void run_local_timers(void)
16235cee9645SThomas Gleixner {
16244e85876aSThomas Gleixner 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
16254e85876aSThomas Gleixner 
16265cee9645SThomas Gleixner 	hrtimer_run_queues();
16274e85876aSThomas Gleixner 	/* Raise the softirq only if required. */
16284e85876aSThomas Gleixner 	if (time_before(jiffies, base->clk)) {
16294e85876aSThomas Gleixner 		if (!IS_ENABLED(CONFIG_NO_HZ_COMMON) || !base->nohz_active)
16304e85876aSThomas Gleixner 			return;
16314e85876aSThomas Gleixner 		/* CPU is awake, so check the deferrable base. */
16324e85876aSThomas Gleixner 		base++;
16334e85876aSThomas Gleixner 		if (time_before(jiffies, base->clk))
16344e85876aSThomas Gleixner 			return;
16354e85876aSThomas Gleixner 	}
16365cee9645SThomas Gleixner 	raise_softirq(TIMER_SOFTIRQ);
16375cee9645SThomas Gleixner }
16385cee9645SThomas Gleixner 
16395cee9645SThomas Gleixner static void process_timeout(unsigned long __data)
16405cee9645SThomas Gleixner {
16415cee9645SThomas Gleixner 	wake_up_process((struct task_struct *)__data);
16425cee9645SThomas Gleixner }
16435cee9645SThomas Gleixner 
16445cee9645SThomas Gleixner /**
16455cee9645SThomas Gleixner  * schedule_timeout - sleep until timeout
16465cee9645SThomas Gleixner  * @timeout: timeout value in jiffies
16475cee9645SThomas Gleixner  *
16485cee9645SThomas Gleixner  * Make the current task sleep until @timeout jiffies have
16495cee9645SThomas Gleixner  * elapsed. The routine will return immediately unless
16505cee9645SThomas Gleixner  * the current task state has been set (see set_current_state()).
16515cee9645SThomas Gleixner  *
16525cee9645SThomas Gleixner  * You can set the task state as follows -
16535cee9645SThomas Gleixner  *
16545cee9645SThomas Gleixner  * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
16554b7e9cf9SDouglas Anderson  * pass before the routine returns unless the current task is explicitly
16564b7e9cf9SDouglas Anderson  * woken up, (e.g. by wake_up_process())".
16575cee9645SThomas Gleixner  *
16585cee9645SThomas Gleixner  * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
16594b7e9cf9SDouglas Anderson  * delivered to the current task or the current task is explicitly woken
16604b7e9cf9SDouglas Anderson  * up.
16615cee9645SThomas Gleixner  *
16625cee9645SThomas Gleixner  * The current task state is guaranteed to be TASK_RUNNING when this
16635cee9645SThomas Gleixner  * routine returns.
16645cee9645SThomas Gleixner  *
16655cee9645SThomas Gleixner  * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
16665cee9645SThomas Gleixner  * the CPU away without a bound on the timeout. In this case the return
16675cee9645SThomas Gleixner  * value will be %MAX_SCHEDULE_TIMEOUT.
16685cee9645SThomas Gleixner  *
16694b7e9cf9SDouglas Anderson  * Returns 0 when the timer has expired otherwise the remaining time in
16704b7e9cf9SDouglas Anderson  * jiffies will be returned.  In all cases the return value is guaranteed
16714b7e9cf9SDouglas Anderson  * to be non-negative.
16725cee9645SThomas Gleixner  */
16735cee9645SThomas Gleixner signed long __sched schedule_timeout(signed long timeout)
16745cee9645SThomas Gleixner {
16755cee9645SThomas Gleixner 	struct timer_list timer;
16765cee9645SThomas Gleixner 	unsigned long expire;
16775cee9645SThomas Gleixner 
16785cee9645SThomas Gleixner 	switch (timeout)
16795cee9645SThomas Gleixner 	{
16805cee9645SThomas Gleixner 	case MAX_SCHEDULE_TIMEOUT:
16815cee9645SThomas Gleixner 		/*
16825cee9645SThomas Gleixner 		 * These two special cases are useful to be comfortable
16835cee9645SThomas Gleixner 		 * in the caller. Nothing more. We could take
16845cee9645SThomas Gleixner 		 * MAX_SCHEDULE_TIMEOUT from one of the negative value
16855cee9645SThomas Gleixner 		 * but I' d like to return a valid offset (>=0) to allow
16865cee9645SThomas Gleixner 		 * the caller to do everything it want with the retval.
16875cee9645SThomas Gleixner 		 */
16885cee9645SThomas Gleixner 		schedule();
16895cee9645SThomas Gleixner 		goto out;
16905cee9645SThomas Gleixner 	default:
16915cee9645SThomas Gleixner 		/*
16925cee9645SThomas Gleixner 		 * Another bit of PARANOID. Note that the retval will be
16935cee9645SThomas Gleixner 		 * 0 since no piece of kernel is supposed to do a check
16945cee9645SThomas Gleixner 		 * for a negative retval of schedule_timeout() (since it
16955cee9645SThomas Gleixner 		 * should never happens anyway). You just have the printk()
16965cee9645SThomas Gleixner 		 * that will tell you if something is gone wrong and where.
16975cee9645SThomas Gleixner 		 */
16985cee9645SThomas Gleixner 		if (timeout < 0) {
16995cee9645SThomas Gleixner 			printk(KERN_ERR "schedule_timeout: wrong timeout "
17005cee9645SThomas Gleixner 				"value %lx\n", timeout);
17015cee9645SThomas Gleixner 			dump_stack();
17025cee9645SThomas Gleixner 			current->state = TASK_RUNNING;
17035cee9645SThomas Gleixner 			goto out;
17045cee9645SThomas Gleixner 		}
17055cee9645SThomas Gleixner 	}
17065cee9645SThomas Gleixner 
17075cee9645SThomas Gleixner 	expire = timeout + jiffies;
17085cee9645SThomas Gleixner 
17095cee9645SThomas Gleixner 	setup_timer_on_stack(&timer, process_timeout, (unsigned long)current);
1710177ec0a0SThomas Gleixner 	__mod_timer(&timer, expire, false);
17115cee9645SThomas Gleixner 	schedule();
17125cee9645SThomas Gleixner 	del_singleshot_timer_sync(&timer);
17135cee9645SThomas Gleixner 
17145cee9645SThomas Gleixner 	/* Remove the timer from the object tracker */
17155cee9645SThomas Gleixner 	destroy_timer_on_stack(&timer);
17165cee9645SThomas Gleixner 
17175cee9645SThomas Gleixner 	timeout = expire - jiffies;
17185cee9645SThomas Gleixner 
17195cee9645SThomas Gleixner  out:
17205cee9645SThomas Gleixner 	return timeout < 0 ? 0 : timeout;
17215cee9645SThomas Gleixner }
17225cee9645SThomas Gleixner EXPORT_SYMBOL(schedule_timeout);
17235cee9645SThomas Gleixner 
17245cee9645SThomas Gleixner /*
17255cee9645SThomas Gleixner  * We can use __set_current_state() here because schedule_timeout() calls
17265cee9645SThomas Gleixner  * schedule() unconditionally.
17275cee9645SThomas Gleixner  */
17285cee9645SThomas Gleixner signed long __sched schedule_timeout_interruptible(signed long timeout)
17295cee9645SThomas Gleixner {
17305cee9645SThomas Gleixner 	__set_current_state(TASK_INTERRUPTIBLE);
17315cee9645SThomas Gleixner 	return schedule_timeout(timeout);
17325cee9645SThomas Gleixner }
17335cee9645SThomas Gleixner EXPORT_SYMBOL(schedule_timeout_interruptible);
17345cee9645SThomas Gleixner 
17355cee9645SThomas Gleixner signed long __sched schedule_timeout_killable(signed long timeout)
17365cee9645SThomas Gleixner {
17375cee9645SThomas Gleixner 	__set_current_state(TASK_KILLABLE);
17385cee9645SThomas Gleixner 	return schedule_timeout(timeout);
17395cee9645SThomas Gleixner }
17405cee9645SThomas Gleixner EXPORT_SYMBOL(schedule_timeout_killable);
17415cee9645SThomas Gleixner 
17425cee9645SThomas Gleixner signed long __sched schedule_timeout_uninterruptible(signed long timeout)
17435cee9645SThomas Gleixner {
17445cee9645SThomas Gleixner 	__set_current_state(TASK_UNINTERRUPTIBLE);
17455cee9645SThomas Gleixner 	return schedule_timeout(timeout);
17465cee9645SThomas Gleixner }
17475cee9645SThomas Gleixner EXPORT_SYMBOL(schedule_timeout_uninterruptible);
17485cee9645SThomas Gleixner 
174969b27bafSAndrew Morton /*
175069b27bafSAndrew Morton  * Like schedule_timeout_uninterruptible(), except this task will not contribute
175169b27bafSAndrew Morton  * to load average.
175269b27bafSAndrew Morton  */
175369b27bafSAndrew Morton signed long __sched schedule_timeout_idle(signed long timeout)
175469b27bafSAndrew Morton {
175569b27bafSAndrew Morton 	__set_current_state(TASK_IDLE);
175669b27bafSAndrew Morton 	return schedule_timeout(timeout);
175769b27bafSAndrew Morton }
175869b27bafSAndrew Morton EXPORT_SYMBOL(schedule_timeout_idle);
175969b27bafSAndrew Morton 
17605cee9645SThomas Gleixner #ifdef CONFIG_HOTPLUG_CPU
1761494af3edSThomas Gleixner static void migrate_timer_list(struct timer_base *new_base, struct hlist_head *head)
17625cee9645SThomas Gleixner {
17635cee9645SThomas Gleixner 	struct timer_list *timer;
17640eeda71bSThomas Gleixner 	int cpu = new_base->cpu;
17655cee9645SThomas Gleixner 
17661dabbcecSThomas Gleixner 	while (!hlist_empty(head)) {
17671dabbcecSThomas Gleixner 		timer = hlist_entry(head->first, struct timer_list, entry);
17685cee9645SThomas Gleixner 		detach_timer(timer, false);
17690eeda71bSThomas Gleixner 		timer->flags = (timer->flags & ~TIMER_BASEMASK) | cpu;
17705cee9645SThomas Gleixner 		internal_add_timer(new_base, timer);
17715cee9645SThomas Gleixner 	}
17725cee9645SThomas Gleixner }
17735cee9645SThomas Gleixner 
177424f73b99SRichard Cochran int timers_dead_cpu(unsigned int cpu)
17755cee9645SThomas Gleixner {
1776494af3edSThomas Gleixner 	struct timer_base *old_base;
1777494af3edSThomas Gleixner 	struct timer_base *new_base;
1778500462a9SThomas Gleixner 	int b, i;
17795cee9645SThomas Gleixner 
17805cee9645SThomas Gleixner 	BUG_ON(cpu_online(cpu));
1781500462a9SThomas Gleixner 
1782500462a9SThomas Gleixner 	for (b = 0; b < NR_BASES; b++) {
1783500462a9SThomas Gleixner 		old_base = per_cpu_ptr(&timer_bases[b], cpu);
1784500462a9SThomas Gleixner 		new_base = get_cpu_ptr(&timer_bases[b]);
17855cee9645SThomas Gleixner 		/*
17865cee9645SThomas Gleixner 		 * The caller is globally serialized and nobody else
17875cee9645SThomas Gleixner 		 * takes two locks at once, deadlock is not possible.
17885cee9645SThomas Gleixner 		 */
17895cee9645SThomas Gleixner 		spin_lock_irq(&new_base->lock);
17905cee9645SThomas Gleixner 		spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
17915cee9645SThomas Gleixner 
17925cee9645SThomas Gleixner 		BUG_ON(old_base->running_timer);
17935cee9645SThomas Gleixner 
1794500462a9SThomas Gleixner 		for (i = 0; i < WHEEL_SIZE; i++)
1795500462a9SThomas Gleixner 			migrate_timer_list(new_base, old_base->vectors + i);
17968def9060SViresh Kumar 
17975cee9645SThomas Gleixner 		spin_unlock(&old_base->lock);
17985cee9645SThomas Gleixner 		spin_unlock_irq(&new_base->lock);
1799494af3edSThomas Gleixner 		put_cpu_ptr(&timer_bases);
18005cee9645SThomas Gleixner 	}
180124f73b99SRichard Cochran 	return 0;
18025cee9645SThomas Gleixner }
18035cee9645SThomas Gleixner 
18043650b57fSPeter Zijlstra #endif /* CONFIG_HOTPLUG_CPU */
18055cee9645SThomas Gleixner 
18060eeda71bSThomas Gleixner static void __init init_timer_cpu(int cpu)
18078def9060SViresh Kumar {
1808500462a9SThomas Gleixner 	struct timer_base *base;
1809500462a9SThomas Gleixner 	int i;
18103650b57fSPeter Zijlstra 
1811500462a9SThomas Gleixner 	for (i = 0; i < NR_BASES; i++) {
1812500462a9SThomas Gleixner 		base = per_cpu_ptr(&timer_bases[i], cpu);
18138def9060SViresh Kumar 		base->cpu = cpu;
18148def9060SViresh Kumar 		spin_lock_init(&base->lock);
1815494af3edSThomas Gleixner 		base->clk = jiffies;
1816500462a9SThomas Gleixner 	}
18178def9060SViresh Kumar }
18188def9060SViresh Kumar 
18198def9060SViresh Kumar static void __init init_timer_cpus(void)
18208def9060SViresh Kumar {
18218def9060SViresh Kumar 	int cpu;
18228def9060SViresh Kumar 
18230eeda71bSThomas Gleixner 	for_each_possible_cpu(cpu)
18240eeda71bSThomas Gleixner 		init_timer_cpu(cpu);
18258def9060SViresh Kumar }
18265cee9645SThomas Gleixner 
18275cee9645SThomas Gleixner void __init init_timers(void)
18285cee9645SThomas Gleixner {
18298def9060SViresh Kumar 	init_timer_cpus();
18305cee9645SThomas Gleixner 	open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
18315cee9645SThomas Gleixner }
18325cee9645SThomas Gleixner 
18335cee9645SThomas Gleixner /**
18345cee9645SThomas Gleixner  * msleep - sleep safely even with waitqueue interruptions
18355cee9645SThomas Gleixner  * @msecs: Time in milliseconds to sleep for
18365cee9645SThomas Gleixner  */
18375cee9645SThomas Gleixner void msleep(unsigned int msecs)
18385cee9645SThomas Gleixner {
18395cee9645SThomas Gleixner 	unsigned long timeout = msecs_to_jiffies(msecs) + 1;
18405cee9645SThomas Gleixner 
18415cee9645SThomas Gleixner 	while (timeout)
18425cee9645SThomas Gleixner 		timeout = schedule_timeout_uninterruptible(timeout);
18435cee9645SThomas Gleixner }
18445cee9645SThomas Gleixner 
18455cee9645SThomas Gleixner EXPORT_SYMBOL(msleep);
18465cee9645SThomas Gleixner 
18475cee9645SThomas Gleixner /**
18485cee9645SThomas Gleixner  * msleep_interruptible - sleep waiting for signals
18495cee9645SThomas Gleixner  * @msecs: Time in milliseconds to sleep for
18505cee9645SThomas Gleixner  */
18515cee9645SThomas Gleixner unsigned long msleep_interruptible(unsigned int msecs)
18525cee9645SThomas Gleixner {
18535cee9645SThomas Gleixner 	unsigned long timeout = msecs_to_jiffies(msecs) + 1;
18545cee9645SThomas Gleixner 
18555cee9645SThomas Gleixner 	while (timeout && !signal_pending(current))
18565cee9645SThomas Gleixner 		timeout = schedule_timeout_interruptible(timeout);
18575cee9645SThomas Gleixner 	return jiffies_to_msecs(timeout);
18585cee9645SThomas Gleixner }
18595cee9645SThomas Gleixner 
18605cee9645SThomas Gleixner EXPORT_SYMBOL(msleep_interruptible);
18615cee9645SThomas Gleixner 
18625cee9645SThomas Gleixner /**
1863b5227d03SBjorn Helgaas  * usleep_range - Sleep for an approximate time
18645cee9645SThomas Gleixner  * @min: Minimum time in usecs to sleep
18655cee9645SThomas Gleixner  * @max: Maximum time in usecs to sleep
1866b5227d03SBjorn Helgaas  *
1867b5227d03SBjorn Helgaas  * In non-atomic context where the exact wakeup time is flexible, use
1868b5227d03SBjorn Helgaas  * usleep_range() instead of udelay().  The sleep improves responsiveness
1869b5227d03SBjorn Helgaas  * by avoiding the CPU-hogging busy-wait of udelay(), and the range reduces
1870b5227d03SBjorn Helgaas  * power usage by allowing hrtimers to take advantage of an already-
1871b5227d03SBjorn Helgaas  * scheduled interrupt instead of scheduling a new one just for this sleep.
18725cee9645SThomas Gleixner  */
18732ad5d327SThomas Gleixner void __sched usleep_range(unsigned long min, unsigned long max)
18745cee9645SThomas Gleixner {
18756c5e9059SDouglas Anderson 	ktime_t exp = ktime_add_us(ktime_get(), min);
18766c5e9059SDouglas Anderson 	u64 delta = (u64)(max - min) * NSEC_PER_USEC;
18776c5e9059SDouglas Anderson 
18786c5e9059SDouglas Anderson 	for (;;) {
18795cee9645SThomas Gleixner 		__set_current_state(TASK_UNINTERRUPTIBLE);
18806c5e9059SDouglas Anderson 		/* Do not return before the requested sleep time has elapsed */
18816c5e9059SDouglas Anderson 		if (!schedule_hrtimeout_range(&exp, delta, HRTIMER_MODE_ABS))
18826c5e9059SDouglas Anderson 			break;
18836c5e9059SDouglas Anderson 	}
18845cee9645SThomas Gleixner }
18855cee9645SThomas Gleixner EXPORT_SYMBOL(usleep_range);
1886