Thomas Gleixner | 35728b8 | 2018-10-31 19:21:09 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Stephen Rothwell | 4a22f16 | 2013-04-30 15:27:37 -0700 | [diff] [blame] | 3 | * Kernel internal timers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | * |
| 7 | * 1997-01-28 Modified by Finn Arne Gangstad to make timers scale better. |
| 8 | * |
| 9 | * 1997-09-10 Updated NTP code according to technical memorandum Jan '96 |
| 10 | * "A Kernel Model for Precision Timekeeping" by Dave Mills |
| 11 | * 1998-12-24 Fixed a xtime SMP race (we need the xtime_lock rw spinlock to |
| 12 | * serialize accesses to xtime/lost_ticks). |
| 13 | * Copyright (C) 1998 Andrea Arcangeli |
| 14 | * 1999-03-10 Improved NTP compatibility by Ulrich Windl |
| 15 | * 2002-05-31 Move sys_sysinfo here and make its locking sane, Robert Love |
| 16 | * 2000-10-05 Implemented scalable SMP per-CPU timer handling. |
| 17 | * Copyright (C) 2000, 2001, 2002 Ingo Molnar |
| 18 | * Designed by David S. Miller, Alexey Kuznetsov and Ingo Molnar |
| 19 | */ |
| 20 | |
| 21 | #include <linux/kernel_stat.h> |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 22 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/percpu.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/mm.h> |
| 27 | #include <linux/swap.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 28 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/notifier.h> |
| 30 | #include <linux/thread_info.h> |
| 31 | #include <linux/time.h> |
| 32 | #include <linux/jiffies.h> |
| 33 | #include <linux/posix-timers.h> |
| 34 | #include <linux/cpu.h> |
| 35 | #include <linux/syscalls.h> |
Adrian Bunk | 97a41e2 | 2006-01-08 01:02:17 -0800 | [diff] [blame] | 36 | #include <linux/delay.h> |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 37 | #include <linux/tick.h> |
Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 38 | #include <linux/kallsyms.h> |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 39 | #include <linux/irq_work.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 40 | #include <linux/sched/signal.h> |
Clark Williams | cf4aebc2 | 2013-02-07 09:46:59 -0600 | [diff] [blame] | 41 | #include <linux/sched/sysctl.h> |
Ingo Molnar | 370c913 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 42 | #include <linux/sched/nohz.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 43 | #include <linux/sched/debug.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
Stephen Rothwell | 1a0df59 | 2013-04-30 15:27:34 -0700 | [diff] [blame] | 45 | #include <linux/compat.h> |
Willy Tarreau | f227e3e | 2020-07-10 15:23:19 +0200 | [diff] [blame] | 46 | #include <linux/random.h> |
tangmeng | efaa022 | 2022-02-15 14:50:19 +0800 | [diff] [blame] | 47 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 49 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/unistd.h> |
| 51 | #include <asm/div64.h> |
| 52 | #include <asm/timex.h> |
| 53 | #include <asm/io.h> |
| 54 | |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 55 | #include "tick-internal.h" |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 56 | #include "timer_migration.h" |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 57 | |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 58 | #define CREATE_TRACE_POINTS |
| 59 | #include <trace/events/timer.h> |
| 60 | |
Andi Kleen | 40747ff | 2014-02-08 08:51:59 +0100 | [diff] [blame] | 61 | __visible u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES; |
Thomas Gleixner | ecea8d1 | 2005-10-30 15:03:00 -0800 | [diff] [blame] | 62 | |
| 63 | EXPORT_SYMBOL(jiffies_64); |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 66 | * The timer wheel has LVL_DEPTH array levels. Each level provides an array of |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 67 | * LVL_SIZE buckets. Each level is driven by its own clock and therefore each |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 68 | * level has a different granularity. |
| 69 | * |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 70 | * The level granularity is: LVL_CLK_DIV ^ level |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 71 | * The level clock frequency is: HZ / (LVL_CLK_DIV ^ level) |
| 72 | * |
| 73 | * The array level of a newly armed timer depends on the relative expiry |
| 74 | * time. The farther the expiry time is away the higher the array level and |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 75 | * therefore the granularity becomes. |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 76 | * |
| 77 | * Contrary to the original timer wheel implementation, which aims for 'exact' |
| 78 | * expiry of the timers, this implementation removes the need for recascading |
| 79 | * the timers into the lower array levels. The previous 'classic' timer wheel |
| 80 | * implementation of the kernel already violated the 'exact' expiry by adding |
| 81 | * slack to the expiry time to provide batched expiration. The granularity |
| 82 | * levels provide implicit batching. |
| 83 | * |
| 84 | * This is an optimization of the original timer wheel implementation for the |
| 85 | * majority of the timer wheel use cases: timeouts. The vast majority of |
| 86 | * timeout timers (networking, disk I/O ...) are canceled before expiry. If |
| 87 | * the timeout expires it indicates that normal operation is disturbed, so it |
| 88 | * does not matter much whether the timeout comes with a slight delay. |
| 89 | * |
| 90 | * The only exception to this are networking timers with a small expiry |
| 91 | * time. They rely on the granularity. Those fit into the first wheel level, |
| 92 | * which has HZ granularity. |
| 93 | * |
| 94 | * We don't have cascading anymore. timers with a expiry time above the |
| 95 | * capacity of the last wheel level are force expired at the maximum timeout |
| 96 | * value of the last wheel level. From data sampling we know that the maximum |
| 97 | * value observed is 5 days (network connection tracking), so this should not |
| 98 | * be an issue. |
| 99 | * |
| 100 | * The currently chosen array constants values are a good compromise between |
| 101 | * array size and granularity. |
| 102 | * |
| 103 | * This results in the following granularity and range levels: |
| 104 | * |
| 105 | * HZ 1000 steps |
| 106 | * Level Offset Granularity Range |
| 107 | * 0 0 1 ms 0 ms - 63 ms |
| 108 | * 1 64 8 ms 64 ms - 511 ms |
| 109 | * 2 128 64 ms 512 ms - 4095 ms (512ms - ~4s) |
| 110 | * 3 192 512 ms 4096 ms - 32767 ms (~4s - ~32s) |
| 111 | * 4 256 4096 ms (~4s) 32768 ms - 262143 ms (~32s - ~4m) |
| 112 | * 5 320 32768 ms (~32s) 262144 ms - 2097151 ms (~4m - ~34m) |
| 113 | * 6 384 262144 ms (~4m) 2097152 ms - 16777215 ms (~34m - ~4h) |
| 114 | * 7 448 2097152 ms (~34m) 16777216 ms - 134217727 ms (~4h - ~1d) |
| 115 | * 8 512 16777216 ms (~4h) 134217728 ms - 1073741822 ms (~1d - ~12d) |
| 116 | * |
| 117 | * HZ 300 |
| 118 | * Level Offset Granularity Range |
| 119 | * 0 0 3 ms 0 ms - 210 ms |
| 120 | * 1 64 26 ms 213 ms - 1703 ms (213ms - ~1s) |
| 121 | * 2 128 213 ms 1706 ms - 13650 ms (~1s - ~13s) |
| 122 | * 3 192 1706 ms (~1s) 13653 ms - 109223 ms (~13s - ~1m) |
| 123 | * 4 256 13653 ms (~13s) 109226 ms - 873810 ms (~1m - ~14m) |
| 124 | * 5 320 109226 ms (~1m) 873813 ms - 6990503 ms (~14m - ~1h) |
| 125 | * 6 384 873813 ms (~14m) 6990506 ms - 55924050 ms (~1h - ~15h) |
| 126 | * 7 448 6990506 ms (~1h) 55924053 ms - 447392423 ms (~15h - ~5d) |
| 127 | * 8 512 55924053 ms (~15h) 447392426 ms - 3579139406 ms (~5d - ~41d) |
| 128 | * |
| 129 | * HZ 250 |
| 130 | * Level Offset Granularity Range |
| 131 | * 0 0 4 ms 0 ms - 255 ms |
| 132 | * 1 64 32 ms 256 ms - 2047 ms (256ms - ~2s) |
| 133 | * 2 128 256 ms 2048 ms - 16383 ms (~2s - ~16s) |
| 134 | * 3 192 2048 ms (~2s) 16384 ms - 131071 ms (~16s - ~2m) |
| 135 | * 4 256 16384 ms (~16s) 131072 ms - 1048575 ms (~2m - ~17m) |
| 136 | * 5 320 131072 ms (~2m) 1048576 ms - 8388607 ms (~17m - ~2h) |
| 137 | * 6 384 1048576 ms (~17m) 8388608 ms - 67108863 ms (~2h - ~18h) |
| 138 | * 7 448 8388608 ms (~2h) 67108864 ms - 536870911 ms (~18h - ~6d) |
| 139 | * 8 512 67108864 ms (~18h) 536870912 ms - 4294967288 ms (~6d - ~49d) |
| 140 | * |
| 141 | * HZ 100 |
| 142 | * Level Offset Granularity Range |
| 143 | * 0 0 10 ms 0 ms - 630 ms |
| 144 | * 1 64 80 ms 640 ms - 5110 ms (640ms - ~5s) |
| 145 | * 2 128 640 ms 5120 ms - 40950 ms (~5s - ~40s) |
| 146 | * 3 192 5120 ms (~5s) 40960 ms - 327670 ms (~40s - ~5m) |
| 147 | * 4 256 40960 ms (~40s) 327680 ms - 2621430 ms (~5m - ~43m) |
| 148 | * 5 320 327680 ms (~5m) 2621440 ms - 20971510 ms (~43m - ~5h) |
| 149 | * 6 384 2621440 ms (~43m) 20971520 ms - 167772150 ms (~5h - ~1d) |
| 150 | * 7 448 20971520 ms (~5h) 167772160 ms - 1342177270 ms (~1d - ~15d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 153 | /* Clock divisor for the next level */ |
| 154 | #define LVL_CLK_SHIFT 3 |
| 155 | #define LVL_CLK_DIV (1UL << LVL_CLK_SHIFT) |
| 156 | #define LVL_CLK_MASK (LVL_CLK_DIV - 1) |
| 157 | #define LVL_SHIFT(n) ((n) * LVL_CLK_SHIFT) |
| 158 | #define LVL_GRAN(n) (1UL << LVL_SHIFT(n)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 160 | /* |
| 161 | * The time start value for each level to select the bucket at enqueue |
Frederic Weisbecker | 4468897 | 2020-07-17 16:05:44 +0200 | [diff] [blame] | 162 | * time. We start from the last possible delta of the previous level |
| 163 | * so that we can later add an extra LVL_GRAN(n) to n (see calc_index()). |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 164 | */ |
| 165 | #define LVL_START(n) ((LVL_SIZE - 1) << (((n) - 1) * LVL_CLK_SHIFT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 167 | /* Size of each clock level */ |
| 168 | #define LVL_BITS 6 |
| 169 | #define LVL_SIZE (1UL << LVL_BITS) |
| 170 | #define LVL_MASK (LVL_SIZE - 1) |
| 171 | #define LVL_OFFS(n) ((n) * LVL_SIZE) |
| 172 | |
| 173 | /* Level depth */ |
| 174 | #if HZ > 100 |
| 175 | # define LVL_DEPTH 9 |
| 176 | # else |
| 177 | # define LVL_DEPTH 8 |
| 178 | #endif |
| 179 | |
| 180 | /* The cutoff (max. capacity of the wheel) */ |
| 181 | #define WHEEL_TIMEOUT_CUTOFF (LVL_START(LVL_DEPTH)) |
| 182 | #define WHEEL_TIMEOUT_MAX (WHEEL_TIMEOUT_CUTOFF - LVL_GRAN(LVL_DEPTH - 1)) |
| 183 | |
| 184 | /* |
| 185 | * The resulting wheel size. If NOHZ is configured we allocate two |
| 186 | * wheels so we have a separate storage for the deferrable timers. |
| 187 | */ |
| 188 | #define WHEEL_SIZE (LVL_SIZE * LVL_DEPTH) |
| 189 | |
| 190 | #ifdef CONFIG_NO_HZ_COMMON |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 191 | /* |
| 192 | * If multiple bases need to be locked, use the base ordering for lock |
| 193 | * nesting, i.e. lowest number first. |
| 194 | */ |
| 195 | # define NR_BASES 3 |
| 196 | # define BASE_LOCAL 0 |
| 197 | # define BASE_GLOBAL 1 |
| 198 | # define BASE_DEF 2 |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 199 | #else |
| 200 | # define NR_BASES 1 |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 201 | # define BASE_LOCAL 0 |
| 202 | # define BASE_GLOBAL 0 |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 203 | # define BASE_DEF 0 |
| 204 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Anna-Maria Behnsen | 892abd3 | 2024-01-23 17:46:58 +0100 | [diff] [blame] | 206 | /** |
| 207 | * struct timer_base - Per CPU timer base (number of base depends on config) |
| 208 | * @lock: Lock protecting the timer_base |
| 209 | * @running_timer: When expiring timers, the lock is dropped. To make |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 210 | * sure not to race against deleting/modifying a |
Anna-Maria Behnsen | 892abd3 | 2024-01-23 17:46:58 +0100 | [diff] [blame] | 211 | * currently running timer, the pointer is set to the |
| 212 | * timer, which expires at the moment. If no timer is |
| 213 | * running, the pointer is NULL. |
| 214 | * @expiry_lock: PREEMPT_RT only: Lock is taken in softirq around |
| 215 | * timer expiry callback execution and when trying to |
| 216 | * delete a running timer and it wasn't successful in |
| 217 | * the first glance. It prevents priority inversion |
| 218 | * when callback was preempted on a remote CPU and a |
| 219 | * caller tries to delete the running timer. It also |
| 220 | * prevents a life lock, when the task which tries to |
| 221 | * delete a timer preempted the softirq thread which |
| 222 | * is running the timer callback function. |
| 223 | * @timer_waiters: PREEMPT_RT only: Tells, if there is a waiter |
| 224 | * waiting for the end of the timer callback function |
| 225 | * execution. |
| 226 | * @clk: clock of the timer base; is updated before enqueue |
| 227 | * of a timer; during expiry, it is 1 offset ahead of |
| 228 | * jiffies to avoid endless requeuing to current |
| 229 | * jiffies |
| 230 | * @next_expiry: expiry value of the first timer; it is updated when |
| 231 | * finding the next timer and during enqueue; the |
| 232 | * value is not valid, when next_expiry_recalc is set |
| 233 | * @cpu: Number of CPU the timer base belongs to |
| 234 | * @next_expiry_recalc: States, whether a recalculation of next_expiry is |
| 235 | * required. Value is set true, when a timer was |
| 236 | * deleted. |
| 237 | * @is_idle: Is set, when timer_base is idle. It is triggered by NOHZ |
| 238 | * code. This state is only used in standard |
| 239 | * base. Deferrable timers, which are enqueued remotely |
| 240 | * never wake up an idle CPU. So no matter of supporting it |
| 241 | * for this base. |
| 242 | * @timers_pending: Is set, when a timer is pending in the base. It is only |
| 243 | * reliable when next_expiry_recalc is not set. |
| 244 | * @pending_map: bitmap of the timer wheel; each bit reflects a |
| 245 | * bucket of the wheel. When a bit is set, at least a |
| 246 | * single timer is enqueued in the related bucket. |
| 247 | * @vectors: Array of lists; Each array member reflects a bucket |
| 248 | * of the timer wheel. The list contains all timers |
| 249 | * which are enqueued into a specific bucket. |
| 250 | */ |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 251 | struct timer_base { |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 252 | raw_spinlock_t lock; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 253 | struct timer_list *running_timer; |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 254 | #ifdef CONFIG_PREEMPT_RT |
| 255 | spinlock_t expiry_lock; |
| 256 | atomic_t timer_waiters; |
| 257 | #endif |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 258 | unsigned long clk; |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 259 | unsigned long next_expiry; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 260 | unsigned int cpu; |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 261 | bool next_expiry_recalc; |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 262 | bool is_idle; |
Nicolas Saenz Julienne | aebacb7 | 2021-07-09 16:13:25 +0200 | [diff] [blame] | 263 | bool timers_pending; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 264 | DECLARE_BITMAP(pending_map, WHEEL_SIZE); |
| 265 | struct hlist_head vectors[WHEEL_SIZE]; |
Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 266 | } ____cacheline_aligned; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 268 | static DEFINE_PER_CPU(struct timer_base, timer_bases[NR_BASES]); |
Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 269 | |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 270 | #ifdef CONFIG_NO_HZ_COMMON |
| 271 | |
Anna-Maria Gleixner | 14c8034 | 2017-12-21 11:41:49 +0100 | [diff] [blame] | 272 | static DEFINE_STATIC_KEY_FALSE(timers_nohz_active); |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 273 | static DEFINE_MUTEX(timer_keys_mutex); |
| 274 | |
| 275 | static void timer_update_keys(struct work_struct *work); |
| 276 | static DECLARE_WORK(timer_update_work, timer_update_keys); |
| 277 | |
| 278 | #ifdef CONFIG_SMP |
tangmeng | efaa022 | 2022-02-15 14:50:19 +0800 | [diff] [blame] | 279 | static unsigned int sysctl_timer_migration = 1; |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 280 | |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 281 | DEFINE_STATIC_KEY_FALSE(timers_migration_enabled); |
| 282 | |
| 283 | static void timers_update_migration(void) |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 284 | { |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 285 | if (sysctl_timer_migration && tick_nohz_active) |
| 286 | static_branch_enable(&timers_migration_enabled); |
| 287 | else |
| 288 | static_branch_disable(&timers_migration_enabled); |
| 289 | } |
tangmeng | efaa022 | 2022-02-15 14:50:19 +0800 | [diff] [blame] | 290 | |
| 291 | #ifdef CONFIG_SYSCTL |
Joel Granados | 78eb4ea | 2024-07-24 20:59:29 +0200 | [diff] [blame] | 292 | static int timer_migration_handler(const struct ctl_table *table, int write, |
tangmeng | efaa022 | 2022-02-15 14:50:19 +0800 | [diff] [blame] | 293 | void *buffer, size_t *lenp, loff_t *ppos) |
| 294 | { |
| 295 | int ret; |
| 296 | |
| 297 | mutex_lock(&timer_keys_mutex); |
| 298 | ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
| 299 | if (!ret && write) |
| 300 | timers_update_migration(); |
| 301 | mutex_unlock(&timer_keys_mutex); |
| 302 | return ret; |
| 303 | } |
| 304 | |
| 305 | static struct ctl_table timer_sysctl[] = { |
| 306 | { |
| 307 | .procname = "timer_migration", |
| 308 | .data = &sysctl_timer_migration, |
| 309 | .maxlen = sizeof(unsigned int), |
| 310 | .mode = 0644, |
| 311 | .proc_handler = timer_migration_handler, |
| 312 | .extra1 = SYSCTL_ZERO, |
| 313 | .extra2 = SYSCTL_ONE, |
| 314 | }, |
tangmeng | efaa022 | 2022-02-15 14:50:19 +0800 | [diff] [blame] | 315 | }; |
| 316 | |
| 317 | static int __init timer_sysctl_init(void) |
| 318 | { |
| 319 | register_sysctl("kernel", timer_sysctl); |
| 320 | return 0; |
| 321 | } |
| 322 | device_initcall(timer_sysctl_init); |
| 323 | #endif /* CONFIG_SYSCTL */ |
| 324 | #else /* CONFIG_SMP */ |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 325 | static inline void timers_update_migration(void) { } |
| 326 | #endif /* !CONFIG_SMP */ |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 327 | |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 328 | static void timer_update_keys(struct work_struct *work) |
| 329 | { |
| 330 | mutex_lock(&timer_keys_mutex); |
| 331 | timers_update_migration(); |
| 332 | static_branch_enable(&timers_nohz_active); |
| 333 | mutex_unlock(&timer_keys_mutex); |
| 334 | } |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 335 | |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 336 | void timers_update_nohz(void) |
| 337 | { |
| 338 | schedule_work(&timer_update_work); |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Anna-Maria Gleixner | 14c8034 | 2017-12-21 11:41:49 +0100 | [diff] [blame] | 341 | static inline bool is_timers_nohz_active(void) |
| 342 | { |
| 343 | return static_branch_unlikely(&timers_nohz_active); |
| 344 | } |
| 345 | #else |
| 346 | static inline bool is_timers_nohz_active(void) { return false; } |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 347 | #endif /* NO_HZ_COMMON */ |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 348 | |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 349 | static unsigned long round_jiffies_common(unsigned long j, int cpu, |
| 350 | bool force_up) |
| 351 | { |
| 352 | int rem; |
| 353 | unsigned long original = j; |
| 354 | |
| 355 | /* |
| 356 | * We don't want all cpus firing their timers at once hitting the |
| 357 | * same lock or cachelines, so we skew each extra cpu with an extra |
| 358 | * 3 jiffies. This 3 jiffies came originally from the mm/ code which |
| 359 | * already did this. |
| 360 | * The skew is done by adding 3*cpunr, then round, then subtract this |
| 361 | * extra offset again. |
| 362 | */ |
| 363 | j += cpu * 3; |
| 364 | |
| 365 | rem = j % HZ; |
| 366 | |
| 367 | /* |
| 368 | * If the target jiffie is just after a whole second (which can happen |
| 369 | * due to delays of the timer irq, long irq off times etc etc) then |
| 370 | * we should round down to the whole second, not up. Use 1/4th second |
| 371 | * as cutoff for this rounding as an extreme upper bound for this. |
| 372 | * But never round down if @force_up is set. |
| 373 | */ |
| 374 | if (rem < HZ/4 && !force_up) /* round down */ |
| 375 | j = j - rem; |
| 376 | else /* round up */ |
| 377 | j = j - rem + HZ; |
| 378 | |
| 379 | /* now that we have rounded, subtract the extra skew again */ |
| 380 | j -= cpu * 3; |
| 381 | |
Bart Van Assche | 9e04d38 | 2013-05-21 20:43:50 +0200 | [diff] [blame] | 382 | /* |
| 383 | * Make sure j is still in the future. Otherwise return the |
| 384 | * unmodified value. |
| 385 | */ |
| 386 | return time_is_after_jiffies(j) ? j : original; |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 387 | } |
| 388 | |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 389 | /** |
| 390 | * __round_jiffies - function to round jiffies to a full second |
| 391 | * @j: the time in (absolute) jiffies that should be rounded |
| 392 | * @cpu: the processor number on which the timeout will happen |
| 393 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 394 | * __round_jiffies() rounds an absolute time in the future (in jiffies) |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 395 | * up or down to (approximately) full seconds. This is useful for timers |
| 396 | * for which the exact time they fire does not matter too much, as long as |
| 397 | * they fire approximately every X seconds. |
| 398 | * |
| 399 | * By rounding these timers to whole seconds, all such timers will fire |
| 400 | * at the same time, rather than at various times spread out. The goal |
| 401 | * of this is to have the CPU wake up less, which saves power. |
| 402 | * |
| 403 | * The exact rounding is skewed for each processor to avoid all |
| 404 | * processors firing at the exact same time, which could lead |
| 405 | * to lock contention or spurious cache line bouncing. |
| 406 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 407 | * The return value is the rounded version of the @j parameter. |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 408 | */ |
| 409 | unsigned long __round_jiffies(unsigned long j, int cpu) |
| 410 | { |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 411 | return round_jiffies_common(j, cpu, false); |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 412 | } |
| 413 | EXPORT_SYMBOL_GPL(__round_jiffies); |
| 414 | |
| 415 | /** |
| 416 | * __round_jiffies_relative - function to round jiffies to a full second |
| 417 | * @j: the time in (relative) jiffies that should be rounded |
| 418 | * @cpu: the processor number on which the timeout will happen |
| 419 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 420 | * __round_jiffies_relative() rounds a time delta in the future (in jiffies) |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 421 | * up or down to (approximately) full seconds. This is useful for timers |
| 422 | * for which the exact time they fire does not matter too much, as long as |
| 423 | * they fire approximately every X seconds. |
| 424 | * |
| 425 | * By rounding these timers to whole seconds, all such timers will fire |
| 426 | * at the same time, rather than at various times spread out. The goal |
| 427 | * of this is to have the CPU wake up less, which saves power. |
| 428 | * |
| 429 | * The exact rounding is skewed for each processor to avoid all |
| 430 | * processors firing at the exact same time, which could lead |
| 431 | * to lock contention or spurious cache line bouncing. |
| 432 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 433 | * The return value is the rounded version of the @j parameter. |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 434 | */ |
| 435 | unsigned long __round_jiffies_relative(unsigned long j, int cpu) |
| 436 | { |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 437 | unsigned long j0 = jiffies; |
| 438 | |
| 439 | /* Use j0 because jiffies might change while we run */ |
| 440 | return round_jiffies_common(j + j0, cpu, false) - j0; |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 441 | } |
| 442 | EXPORT_SYMBOL_GPL(__round_jiffies_relative); |
| 443 | |
| 444 | /** |
| 445 | * round_jiffies - function to round jiffies to a full second |
| 446 | * @j: the time in (absolute) jiffies that should be rounded |
| 447 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 448 | * round_jiffies() rounds an absolute time in the future (in jiffies) |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 449 | * up or down to (approximately) full seconds. This is useful for timers |
| 450 | * for which the exact time they fire does not matter too much, as long as |
| 451 | * they fire approximately every X seconds. |
| 452 | * |
| 453 | * By rounding these timers to whole seconds, all such timers will fire |
| 454 | * at the same time, rather than at various times spread out. The goal |
| 455 | * of this is to have the CPU wake up less, which saves power. |
| 456 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 457 | * The return value is the rounded version of the @j parameter. |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 458 | */ |
| 459 | unsigned long round_jiffies(unsigned long j) |
| 460 | { |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 461 | return round_jiffies_common(j, raw_smp_processor_id(), false); |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 462 | } |
| 463 | EXPORT_SYMBOL_GPL(round_jiffies); |
| 464 | |
| 465 | /** |
| 466 | * round_jiffies_relative - function to round jiffies to a full second |
| 467 | * @j: the time in (relative) jiffies that should be rounded |
| 468 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 469 | * round_jiffies_relative() rounds a time delta in the future (in jiffies) |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 470 | * up or down to (approximately) full seconds. This is useful for timers |
| 471 | * for which the exact time they fire does not matter too much, as long as |
| 472 | * they fire approximately every X seconds. |
| 473 | * |
| 474 | * By rounding these timers to whole seconds, all such timers will fire |
| 475 | * at the same time, rather than at various times spread out. The goal |
| 476 | * of this is to have the CPU wake up less, which saves power. |
| 477 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 478 | * The return value is the rounded version of the @j parameter. |
Arjan van de Ven | 4c36a5d | 2006-12-10 02:21:24 -0800 | [diff] [blame] | 479 | */ |
| 480 | unsigned long round_jiffies_relative(unsigned long j) |
| 481 | { |
| 482 | return __round_jiffies_relative(j, raw_smp_processor_id()); |
| 483 | } |
| 484 | EXPORT_SYMBOL_GPL(round_jiffies_relative); |
| 485 | |
Alan Stern | 9c133c4 | 2008-11-06 08:42:48 +0100 | [diff] [blame] | 486 | /** |
| 487 | * __round_jiffies_up - function to round jiffies up to a full second |
| 488 | * @j: the time in (absolute) jiffies that should be rounded |
| 489 | * @cpu: the processor number on which the timeout will happen |
| 490 | * |
| 491 | * This is the same as __round_jiffies() except that it will never |
| 492 | * round down. This is useful for timeouts for which the exact time |
| 493 | * of firing does not matter too much, as long as they don't fire too |
| 494 | * early. |
| 495 | */ |
| 496 | unsigned long __round_jiffies_up(unsigned long j, int cpu) |
| 497 | { |
| 498 | return round_jiffies_common(j, cpu, true); |
| 499 | } |
| 500 | EXPORT_SYMBOL_GPL(__round_jiffies_up); |
| 501 | |
| 502 | /** |
| 503 | * __round_jiffies_up_relative - function to round jiffies up to a full second |
| 504 | * @j: the time in (relative) jiffies that should be rounded |
| 505 | * @cpu: the processor number on which the timeout will happen |
| 506 | * |
| 507 | * This is the same as __round_jiffies_relative() except that it will never |
| 508 | * round down. This is useful for timeouts for which the exact time |
| 509 | * of firing does not matter too much, as long as they don't fire too |
| 510 | * early. |
| 511 | */ |
| 512 | unsigned long __round_jiffies_up_relative(unsigned long j, int cpu) |
| 513 | { |
| 514 | unsigned long j0 = jiffies; |
| 515 | |
| 516 | /* Use j0 because jiffies might change while we run */ |
| 517 | return round_jiffies_common(j + j0, cpu, true) - j0; |
| 518 | } |
| 519 | EXPORT_SYMBOL_GPL(__round_jiffies_up_relative); |
| 520 | |
| 521 | /** |
| 522 | * round_jiffies_up - function to round jiffies up to a full second |
| 523 | * @j: the time in (absolute) jiffies that should be rounded |
| 524 | * |
| 525 | * This is the same as round_jiffies() except that it will never |
| 526 | * round down. This is useful for timeouts for which the exact time |
| 527 | * of firing does not matter too much, as long as they don't fire too |
| 528 | * early. |
| 529 | */ |
| 530 | unsigned long round_jiffies_up(unsigned long j) |
| 531 | { |
| 532 | return round_jiffies_common(j, raw_smp_processor_id(), true); |
| 533 | } |
| 534 | EXPORT_SYMBOL_GPL(round_jiffies_up); |
| 535 | |
| 536 | /** |
| 537 | * round_jiffies_up_relative - function to round jiffies up to a full second |
| 538 | * @j: the time in (relative) jiffies that should be rounded |
| 539 | * |
| 540 | * This is the same as round_jiffies_relative() except that it will never |
| 541 | * round down. This is useful for timeouts for which the exact time |
| 542 | * of firing does not matter too much, as long as they don't fire too |
| 543 | * early. |
| 544 | */ |
| 545 | unsigned long round_jiffies_up_relative(unsigned long j) |
| 546 | { |
| 547 | return __round_jiffies_up_relative(j, raw_smp_processor_id()); |
| 548 | } |
| 549 | EXPORT_SYMBOL_GPL(round_jiffies_up_relative); |
| 550 | |
Arjan van de Ven | 3bbb9ec | 2010-03-11 14:04:36 -0800 | [diff] [blame] | 551 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 552 | static inline unsigned int timer_get_idx(struct timer_list *timer) |
Venki Pallipadi | c5c061b8 | 2007-07-15 23:40:30 -0700 | [diff] [blame] | 553 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 554 | return (timer->flags & TIMER_ARRAYMASK) >> TIMER_ARRAYSHIFT; |
Venki Pallipadi | c5c061b8 | 2007-07-15 23:40:30 -0700 | [diff] [blame] | 555 | } |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 556 | |
| 557 | static inline void timer_set_idx(struct timer_list *timer, unsigned int idx) |
| 558 | { |
| 559 | timer->flags = (timer->flags & ~TIMER_ARRAYMASK) | |
| 560 | idx << TIMER_ARRAYSHIFT; |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Helper function to calculate the array index for a given expiry |
| 565 | * time. |
| 566 | */ |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 567 | static inline unsigned calc_index(unsigned long expires, unsigned lvl, |
| 568 | unsigned long *bucket_expiry) |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 569 | { |
Frederic Weisbecker | 4468897 | 2020-07-17 16:05:44 +0200 | [diff] [blame] | 570 | |
| 571 | /* |
| 572 | * The timer wheel has to guarantee that a timer does not fire |
| 573 | * early. Early expiry can happen due to: |
| 574 | * - Timer is armed at the edge of a tick |
| 575 | * - Truncation of the expiry time in the outer wheel levels |
| 576 | * |
| 577 | * Round up with level granularity to prevent this. |
| 578 | */ |
Thomas Gleixner | a2026e4 | 2022-04-04 16:47:55 +0200 | [diff] [blame] | 579 | expires = (expires >> LVL_SHIFT(lvl)) + 1; |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 580 | *bucket_expiry = expires << LVL_SHIFT(lvl); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 581 | return LVL_OFFS(lvl) + (expires & LVL_MASK); |
| 582 | } |
| 583 | |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 584 | static int calc_wheel_index(unsigned long expires, unsigned long clk, |
| 585 | unsigned long *bucket_expiry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 587 | unsigned long delta = expires - clk; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 588 | unsigned int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 590 | if (delta < LVL_START(1)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 591 | idx = calc_index(expires, 0, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 592 | } else if (delta < LVL_START(2)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 593 | idx = calc_index(expires, 1, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 594 | } else if (delta < LVL_START(3)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 595 | idx = calc_index(expires, 2, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 596 | } else if (delta < LVL_START(4)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 597 | idx = calc_index(expires, 3, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 598 | } else if (delta < LVL_START(5)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 599 | idx = calc_index(expires, 4, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 600 | } else if (delta < LVL_START(6)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 601 | idx = calc_index(expires, 5, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 602 | } else if (delta < LVL_START(7)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 603 | idx = calc_index(expires, 6, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 604 | } else if (LVL_DEPTH > 8 && delta < LVL_START(8)) { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 605 | idx = calc_index(expires, 7, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 606 | } else if ((long) delta < 0) { |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 607 | idx = clk & LVL_MASK; |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 608 | *bucket_expiry = clk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } else { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 610 | /* |
| 611 | * Force expire obscene large timeouts to expire at the |
| 612 | * capacity limit of the wheel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | */ |
Frederic Weisbecker | e2a71bd | 2020-07-17 16:05:40 +0200 | [diff] [blame] | 614 | if (delta >= WHEEL_TIMEOUT_CUTOFF) |
| 615 | expires = clk + WHEEL_TIMEOUT_MAX; |
Thomas Gleixner | 1bd04bf | 2015-05-26 22:50:26 +0000 | [diff] [blame] | 616 | |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 617 | idx = calc_index(expires, LVL_DEPTH - 1, bucket_expiry); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 618 | } |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 619 | return idx; |
| 620 | } |
| 621 | |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 622 | static void |
| 623 | trigger_dyntick_cpu(struct timer_base *base, struct timer_list *timer) |
Thomas Gleixner | facbb4a | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 624 | { |
Viresh Kumar | 9f6d9ba | 2014-06-22 01:29:14 +0200 | [diff] [blame] | 625 | /* |
Anna-Maria Behnsen | d124c33 | 2023-12-01 10:26:28 +0100 | [diff] [blame] | 626 | * Deferrable timers do not prevent the CPU from entering dynticks and |
| 627 | * are not taken into account on the idle/nohz_full path. An IPI when a |
| 628 | * new deferrable timer is enqueued will wake up the remote CPU but |
| 629 | * nothing will be done with the deferrable timer base. Therefore skip |
| 630 | * the remote IPI for deferrable timers completely. |
Viresh Kumar | 9f6d9ba | 2014-06-22 01:29:14 +0200 | [diff] [blame] | 631 | */ |
Anna-Maria Behnsen | d124c33 | 2023-12-01 10:26:28 +0100 | [diff] [blame] | 632 | if (!is_timers_nohz_active() || timer->flags & TIMER_DEFERRABLE) |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 633 | return; |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 634 | |
| 635 | /* |
| 636 | * We might have to IPI the remote CPU if the base is idle and the |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 637 | * timer is pinned. If it is a non pinned timer, it is only queued |
| 638 | * on the remote CPU, when timer was running during queueing. Then |
| 639 | * everything is handled by remote CPU anyway. If the other CPU is |
| 640 | * on the way to idle then it can't set base->is_idle as we hold |
| 641 | * the base lock: |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 642 | */ |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 643 | if (base->is_idle) { |
Frederic Weisbecker | 0387703 | 2024-03-19 00:07:29 +0100 | [diff] [blame] | 644 | WARN_ON_ONCE(!(timer->flags & TIMER_PINNED || |
| 645 | tick_nohz_full_cpu(base->cpu))); |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 646 | wake_up_nohz_cpu(base->cpu); |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 647 | } |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 650 | /* |
| 651 | * Enqueue the timer into the hash bucket, mark it pending in |
| 652 | * the bitmap, store the index in the timer flags then wake up |
| 653 | * the target CPU if needed. |
| 654 | */ |
| 655 | static void enqueue_timer(struct timer_base *base, struct timer_list *timer, |
| 656 | unsigned int idx, unsigned long bucket_expiry) |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 657 | { |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 658 | |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 659 | hlist_add_head(&timer->entry, base->vectors + idx); |
| 660 | __set_bit(idx, base->pending_map); |
| 661 | timer_set_idx(timer, idx); |
| 662 | |
Anna-Maria Behnsen | dbcdcb6 | 2023-12-01 10:26:26 +0100 | [diff] [blame] | 663 | trace_timer_start(timer, bucket_expiry); |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 664 | |
| 665 | /* |
| 666 | * Check whether this is the new first expiring timer. The |
| 667 | * effective expiry time of the timer is required here |
| 668 | * (bucket_expiry) instead of timer->expires. |
| 669 | */ |
| 670 | if (time_before(bucket_expiry, base->next_expiry)) { |
| 671 | /* |
| 672 | * Set the next expiry time and kick the CPU so it |
| 673 | * can reevaluate the wheel: |
| 674 | */ |
| 675 | base->next_expiry = bucket_expiry; |
Nicolas Saenz Julienne | aebacb7 | 2021-07-09 16:13:25 +0200 | [diff] [blame] | 676 | base->timers_pending = true; |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 677 | base->next_expiry_recalc = false; |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 678 | trigger_dyntick_cpu(base, timer); |
| 679 | } |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | static void internal_add_timer(struct timer_base *base, struct timer_list *timer) |
Anna-Maria Gleixner | ffdf047 | 2016-07-04 09:50:39 +0000 | [diff] [blame] | 683 | { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 684 | unsigned long bucket_expiry; |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 685 | unsigned int idx; |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 686 | |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 687 | idx = calc_wheel_index(timer->expires, base->clk, &bucket_expiry); |
| 688 | enqueue_timer(base, timer, idx, bucket_expiry); |
Thomas Gleixner | facbb4a | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 691 | #ifdef CONFIG_DEBUG_OBJECTS_TIMERS |
| 692 | |
Stephen Boyd | f9e62f3 | 2020-08-14 17:40:27 -0700 | [diff] [blame] | 693 | static const struct debug_obj_descr timer_debug_descr; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 694 | |
Stephen Boyd | 317f29c | 2022-05-11 13:19:51 -0700 | [diff] [blame] | 695 | struct timer_hint { |
| 696 | void (*function)(struct timer_list *t); |
| 697 | long offset; |
| 698 | }; |
| 699 | |
| 700 | #define TIMER_HINT(fn, container, timr, hintfn) \ |
| 701 | { \ |
| 702 | .function = fn, \ |
| 703 | .offset = offsetof(container, hintfn) - \ |
| 704 | offsetof(container, timr) \ |
| 705 | } |
| 706 | |
| 707 | static const struct timer_hint timer_hints[] = { |
| 708 | TIMER_HINT(delayed_work_timer_fn, |
| 709 | struct delayed_work, timer, work.func), |
| 710 | TIMER_HINT(kthread_delayed_work_timer_fn, |
| 711 | struct kthread_delayed_work, timer, work.func), |
| 712 | }; |
| 713 | |
Stanislaw Gruszka | 9977728 | 2011-03-07 09:58:33 +0100 | [diff] [blame] | 714 | static void *timer_debug_hint(void *addr) |
| 715 | { |
Stephen Boyd | 317f29c | 2022-05-11 13:19:51 -0700 | [diff] [blame] | 716 | struct timer_list *timer = addr; |
| 717 | int i; |
| 718 | |
| 719 | for (i = 0; i < ARRAY_SIZE(timer_hints); i++) { |
| 720 | if (timer_hints[i].function == timer->function) { |
| 721 | void (**fn)(void) = addr + timer_hints[i].offset; |
| 722 | |
| 723 | return *fn; |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | return timer->function; |
Stanislaw Gruszka | 9977728 | 2011-03-07 09:58:33 +0100 | [diff] [blame] | 728 | } |
| 729 | |
Du, Changbin | b9fdac7f | 2016-05-19 17:09:41 -0700 | [diff] [blame] | 730 | static bool timer_is_static_object(void *addr) |
| 731 | { |
| 732 | struct timer_list *timer = addr; |
| 733 | |
| 734 | return (timer->entry.pprev == NULL && |
| 735 | timer->entry.next == TIMER_ENTRY_STATIC); |
| 736 | } |
| 737 | |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 738 | /* |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 739 | * timer_fixup_init is called when: |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 740 | * - an active object is initialized |
| 741 | */ |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 742 | static bool timer_fixup_init(void *addr, enum debug_obj_state state) |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 743 | { |
| 744 | struct timer_list *timer = addr; |
| 745 | |
| 746 | switch (state) { |
| 747 | case ODEBUG_STATE_ACTIVE: |
| 748 | del_timer_sync(timer); |
| 749 | debug_object_init(timer, &timer_debug_descr); |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 750 | return true; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 751 | default: |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 752 | return false; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 753 | } |
| 754 | } |
| 755 | |
Stephen Boyd | fb16b8c | 2011-11-07 19:48:26 -0800 | [diff] [blame] | 756 | /* Stub timer callback for improperly used timers. */ |
Thomas Gleixner | ba16490 | 2017-10-18 16:10:19 +0200 | [diff] [blame] | 757 | static void stub_timer(struct timer_list *unused) |
Stephen Boyd | fb16b8c | 2011-11-07 19:48:26 -0800 | [diff] [blame] | 758 | { |
| 759 | WARN_ON(1); |
| 760 | } |
| 761 | |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 762 | /* |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 763 | * timer_fixup_activate is called when: |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 764 | * - an active object is activated |
Du, Changbin | b9fdac7f | 2016-05-19 17:09:41 -0700 | [diff] [blame] | 765 | * - an unknown non-static object is activated |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 766 | */ |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 767 | static bool timer_fixup_activate(void *addr, enum debug_obj_state state) |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 768 | { |
| 769 | struct timer_list *timer = addr; |
| 770 | |
| 771 | switch (state) { |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 772 | case ODEBUG_STATE_NOTAVAILABLE: |
Thomas Gleixner | ba16490 | 2017-10-18 16:10:19 +0200 | [diff] [blame] | 773 | timer_setup(timer, stub_timer, 0); |
Du, Changbin | b9fdac7f | 2016-05-19 17:09:41 -0700 | [diff] [blame] | 774 | return true; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 775 | |
| 776 | case ODEBUG_STATE_ACTIVE: |
| 777 | WARN_ON(1); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 778 | fallthrough; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 779 | default: |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 780 | return false; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 781 | } |
| 782 | } |
| 783 | |
| 784 | /* |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 785 | * timer_fixup_free is called when: |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 786 | * - an active object is freed |
| 787 | */ |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 788 | static bool timer_fixup_free(void *addr, enum debug_obj_state state) |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 789 | { |
| 790 | struct timer_list *timer = addr; |
| 791 | |
| 792 | switch (state) { |
| 793 | case ODEBUG_STATE_ACTIVE: |
| 794 | del_timer_sync(timer); |
| 795 | debug_object_free(timer, &timer_debug_descr); |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 796 | return true; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 797 | default: |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 798 | return false; |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 799 | } |
| 800 | } |
| 801 | |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 802 | /* |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 803 | * timer_fixup_assert_init is called when: |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 804 | * - an untracked/uninit-ed object is found |
| 805 | */ |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 806 | static bool timer_fixup_assert_init(void *addr, enum debug_obj_state state) |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 807 | { |
| 808 | struct timer_list *timer = addr; |
| 809 | |
| 810 | switch (state) { |
| 811 | case ODEBUG_STATE_NOTAVAILABLE: |
Thomas Gleixner | ba16490 | 2017-10-18 16:10:19 +0200 | [diff] [blame] | 812 | timer_setup(timer, stub_timer, 0); |
Du, Changbin | b9fdac7f | 2016-05-19 17:09:41 -0700 | [diff] [blame] | 813 | return true; |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 814 | default: |
Du, Changbin | e325246 | 2016-05-19 17:09:29 -0700 | [diff] [blame] | 815 | return false; |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 816 | } |
| 817 | } |
| 818 | |
Stephen Boyd | f9e62f3 | 2020-08-14 17:40:27 -0700 | [diff] [blame] | 819 | static const struct debug_obj_descr timer_debug_descr = { |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 820 | .name = "timer_list", |
| 821 | .debug_hint = timer_debug_hint, |
Du, Changbin | b9fdac7f | 2016-05-19 17:09:41 -0700 | [diff] [blame] | 822 | .is_static_object = timer_is_static_object, |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 823 | .fixup_init = timer_fixup_init, |
| 824 | .fixup_activate = timer_fixup_activate, |
| 825 | .fixup_free = timer_fixup_free, |
| 826 | .fixup_assert_init = timer_fixup_assert_init, |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 827 | }; |
| 828 | |
| 829 | static inline void debug_timer_init(struct timer_list *timer) |
| 830 | { |
| 831 | debug_object_init(timer, &timer_debug_descr); |
| 832 | } |
| 833 | |
| 834 | static inline void debug_timer_activate(struct timer_list *timer) |
| 835 | { |
| 836 | debug_object_activate(timer, &timer_debug_descr); |
| 837 | } |
| 838 | |
| 839 | static inline void debug_timer_deactivate(struct timer_list *timer) |
| 840 | { |
| 841 | debug_object_deactivate(timer, &timer_debug_descr); |
| 842 | } |
| 843 | |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 844 | static inline void debug_timer_assert_init(struct timer_list *timer) |
| 845 | { |
| 846 | debug_object_assert_init(timer, &timer_debug_descr); |
| 847 | } |
| 848 | |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 849 | static void do_init_timer(struct timer_list *timer, |
| 850 | void (*func)(struct timer_list *), |
| 851 | unsigned int flags, |
Tejun Heo | fc68399 | 2012-08-08 11:10:27 -0700 | [diff] [blame] | 852 | const char *name, struct lock_class_key *key); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 853 | |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 854 | void init_timer_on_stack_key(struct timer_list *timer, |
| 855 | void (*func)(struct timer_list *), |
| 856 | unsigned int flags, |
Tejun Heo | fc68399 | 2012-08-08 11:10:27 -0700 | [diff] [blame] | 857 | const char *name, struct lock_class_key *key) |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 858 | { |
| 859 | debug_object_init_on_stack(timer, &timer_debug_descr); |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 860 | do_init_timer(timer, func, flags, name, key); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 861 | } |
Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 862 | EXPORT_SYMBOL_GPL(init_timer_on_stack_key); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 863 | |
| 864 | void destroy_timer_on_stack(struct timer_list *timer) |
| 865 | { |
| 866 | debug_object_free(timer, &timer_debug_descr); |
| 867 | } |
| 868 | EXPORT_SYMBOL_GPL(destroy_timer_on_stack); |
| 869 | |
| 870 | #else |
| 871 | static inline void debug_timer_init(struct timer_list *timer) { } |
| 872 | static inline void debug_timer_activate(struct timer_list *timer) { } |
| 873 | static inline void debug_timer_deactivate(struct timer_list *timer) { } |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 874 | static inline void debug_timer_assert_init(struct timer_list *timer) { } |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 875 | #endif |
| 876 | |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 877 | static inline void debug_init(struct timer_list *timer) |
| 878 | { |
| 879 | debug_timer_init(timer); |
| 880 | trace_timer_init(timer); |
| 881 | } |
| 882 | |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 883 | static inline void debug_deactivate(struct timer_list *timer) |
| 884 | { |
| 885 | debug_timer_deactivate(timer); |
| 886 | trace_timer_cancel(timer); |
| 887 | } |
| 888 | |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 889 | static inline void debug_assert_init(struct timer_list *timer) |
| 890 | { |
| 891 | debug_timer_assert_init(timer); |
| 892 | } |
| 893 | |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 894 | static void do_init_timer(struct timer_list *timer, |
| 895 | void (*func)(struct timer_list *), |
| 896 | unsigned int flags, |
Tejun Heo | fc68399 | 2012-08-08 11:10:27 -0700 | [diff] [blame] | 897 | const char *name, struct lock_class_key *key) |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 898 | { |
Thomas Gleixner | 1dabbce | 2015-05-26 22:50:28 +0000 | [diff] [blame] | 899 | timer->entry.pprev = NULL; |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 900 | timer->function = func; |
Qianli Zhao | b952caf | 2020-08-13 23:03:14 +0800 | [diff] [blame] | 901 | if (WARN_ON_ONCE(flags & ~TIMER_INIT_FLAGS)) |
| 902 | flags &= TIMER_INIT_FLAGS; |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 903 | timer->flags = flags | raw_smp_processor_id(); |
Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 904 | lockdep_init_map(&timer->lockdep_map, name, key, 0); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 905 | } |
| 906 | |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 907 | /** |
Randy Dunlap | 633fe79 | 2009-04-01 17:47:23 -0700 | [diff] [blame] | 908 | * init_timer_key - initialize a timer |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 909 | * @timer: the timer to be initialized |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 910 | * @func: timer callback function |
Tejun Heo | fc68399 | 2012-08-08 11:10:27 -0700 | [diff] [blame] | 911 | * @flags: timer flags |
Randy Dunlap | 633fe79 | 2009-04-01 17:47:23 -0700 | [diff] [blame] | 912 | * @name: name of the timer |
| 913 | * @key: lockdep class key of the fake lock used for tracking timer |
| 914 | * sync lock dependencies |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 915 | * |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 916 | * init_timer_key() must be done to a timer prior to calling *any* of the |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 917 | * other timer functions. |
| 918 | */ |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 919 | void init_timer_key(struct timer_list *timer, |
| 920 | void (*func)(struct timer_list *), unsigned int flags, |
Tejun Heo | fc68399 | 2012-08-08 11:10:27 -0700 | [diff] [blame] | 921 | const char *name, struct lock_class_key *key) |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 922 | { |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 923 | debug_init(timer); |
Kees Cook | 188665b | 2017-10-22 18:14:46 -0700 | [diff] [blame] | 924 | do_init_timer(timer, func, flags, name, key); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 925 | } |
Johannes Berg | 6f2b9b9 | 2009-01-29 16:03:20 +0100 | [diff] [blame] | 926 | EXPORT_SYMBOL(init_timer_key); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 927 | |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 928 | static inline void detach_timer(struct timer_list *timer, bool clear_pending) |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 929 | { |
Thomas Gleixner | 1dabbce | 2015-05-26 22:50:28 +0000 | [diff] [blame] | 930 | struct hlist_node *entry = &timer->entry; |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 931 | |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 932 | debug_deactivate(timer); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 933 | |
Thomas Gleixner | 1dabbce | 2015-05-26 22:50:28 +0000 | [diff] [blame] | 934 | __hlist_del(entry); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 935 | if (clear_pending) |
Thomas Gleixner | 1dabbce | 2015-05-26 22:50:28 +0000 | [diff] [blame] | 936 | entry->pprev = NULL; |
| 937 | entry->next = LIST_POISON2; |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 938 | } |
| 939 | |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 940 | static int detach_if_pending(struct timer_list *timer, struct timer_base *base, |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 941 | bool clear_pending) |
| 942 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 943 | unsigned idx = timer_get_idx(timer); |
| 944 | |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 945 | if (!timer_pending(timer)) |
| 946 | return 0; |
| 947 | |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 948 | if (hlist_is_singular_node(&timer->entry, base->vectors + idx)) { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 949 | __clear_bit(idx, base->pending_map); |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 950 | base->next_expiry_recalc = true; |
| 951 | } |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 952 | |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 953 | detach_timer(timer, clear_pending); |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 954 | return 1; |
| 955 | } |
| 956 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 957 | static inline struct timer_base *get_timer_cpu_base(u32 tflags, u32 cpu) |
| 958 | { |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 959 | int index = tflags & TIMER_PINNED ? BASE_LOCAL : BASE_GLOBAL; |
| 960 | struct timer_base *base; |
| 961 | |
| 962 | base = per_cpu_ptr(&timer_bases[index], cpu); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 963 | |
| 964 | /* |
Anna-Maria Gleixner | ced6d5c | 2017-12-22 15:51:12 +0100 | [diff] [blame] | 965 | * If the timer is deferrable and NO_HZ_COMMON is set then we need |
| 966 | * to use the deferrable base. |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 967 | */ |
Anna-Maria Gleixner | ced6d5c | 2017-12-22 15:51:12 +0100 | [diff] [blame] | 968 | if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && (tflags & TIMER_DEFERRABLE)) |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 969 | base = per_cpu_ptr(&timer_bases[BASE_DEF], cpu); |
| 970 | return base; |
| 971 | } |
| 972 | |
| 973 | static inline struct timer_base *get_timer_this_cpu_base(u32 tflags) |
| 974 | { |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 975 | int index = tflags & TIMER_PINNED ? BASE_LOCAL : BASE_GLOBAL; |
| 976 | struct timer_base *base; |
| 977 | |
| 978 | base = this_cpu_ptr(&timer_bases[index]); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 979 | |
| 980 | /* |
Anna-Maria Gleixner | ced6d5c | 2017-12-22 15:51:12 +0100 | [diff] [blame] | 981 | * If the timer is deferrable and NO_HZ_COMMON is set then we need |
| 982 | * to use the deferrable base. |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 983 | */ |
Anna-Maria Gleixner | ced6d5c | 2017-12-22 15:51:12 +0100 | [diff] [blame] | 984 | if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && (tflags & TIMER_DEFERRABLE)) |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 985 | base = this_cpu_ptr(&timer_bases[BASE_DEF]); |
| 986 | return base; |
| 987 | } |
| 988 | |
| 989 | static inline struct timer_base *get_timer_base(u32 tflags) |
| 990 | { |
| 991 | return get_timer_cpu_base(tflags, tflags & TIMER_CPUMASK); |
| 992 | } |
| 993 | |
Anna-Maria Behnsen | 1e49048 | 2023-12-01 10:26:31 +0100 | [diff] [blame] | 994 | static inline void __forward_timer_base(struct timer_base *base, |
| 995 | unsigned long basej) |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 996 | { |
| 997 | /* |
Anna-Maria Behnsen | 8a2c9c7e | 2023-12-01 10:26:30 +0100 | [diff] [blame] | 998 | * Check whether we can forward the base. We can only do that when |
| 999 | * @basej is past base->clk otherwise we might rewind base->clk. |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 1000 | */ |
Anna-Maria Behnsen | 1e49048 | 2023-12-01 10:26:31 +0100 | [diff] [blame] | 1001 | if (time_before_eq(basej, base->clk)) |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 1002 | return; |
| 1003 | |
| 1004 | /* |
| 1005 | * If the next expiry value is > jiffies, then we fast forward to |
| 1006 | * jiffies otherwise we forward to the next expiry value. |
| 1007 | */ |
Anna-Maria Behnsen | 1e49048 | 2023-12-01 10:26:31 +0100 | [diff] [blame] | 1008 | if (time_after(base->next_expiry, basej)) { |
| 1009 | base->clk = basej; |
Frederic Weisbecker | 30c66fc | 2020-07-03 03:06:57 +0200 | [diff] [blame] | 1010 | } else { |
| 1011 | if (WARN_ON_ONCE(time_before(base->next_expiry, base->clk))) |
| 1012 | return; |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 1013 | base->clk = base->next_expiry; |
Frederic Weisbecker | 30c66fc | 2020-07-03 03:06:57 +0200 | [diff] [blame] | 1014 | } |
Anna-Maria Behnsen | 1e49048 | 2023-12-01 10:26:31 +0100 | [diff] [blame] | 1015 | |
Thomas Gleixner | ae67bad | 2018-01-14 23:30:51 +0100 | [diff] [blame] | 1016 | } |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 1017 | |
Anna-Maria Behnsen | 1e49048 | 2023-12-01 10:26:31 +0100 | [diff] [blame] | 1018 | static inline void forward_timer_base(struct timer_base *base) |
| 1019 | { |
| 1020 | __forward_timer_base(base, READ_ONCE(jiffies)); |
| 1021 | } |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 1022 | |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1023 | /* |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1024 | * We are using hashed locking: Holding per_cpu(timer_bases[x]).lock means |
| 1025 | * that all timers which are tied to this base are locked, and the base itself |
| 1026 | * is locked too. |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1027 | * |
| 1028 | * So __run_timers/migrate_timers can safely modify all timers which could |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1029 | * be found in the base->vectors array. |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1030 | * |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1031 | * When a timer is migrating then the TIMER_MIGRATING flag is set and we need |
| 1032 | * to wait until the migration is done. |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1033 | */ |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 1034 | static struct timer_base *lock_timer_base(struct timer_list *timer, |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1035 | unsigned long *flags) |
Josh Triplett | 89e7e374 | 2006-09-29 01:59:36 -0700 | [diff] [blame] | 1036 | __acquires(timer->base->lock) |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1037 | { |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1038 | for (;;) { |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 1039 | struct timer_base *base; |
Thomas Gleixner | b831275 | 2016-10-24 11:41:56 +0200 | [diff] [blame] | 1040 | u32 tf; |
| 1041 | |
| 1042 | /* |
| 1043 | * We need to use READ_ONCE() here, otherwise the compiler |
| 1044 | * might re-read @tf between the check for TIMER_MIGRATING |
| 1045 | * and spin_lock(). |
| 1046 | */ |
| 1047 | tf = READ_ONCE(timer->flags); |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 1048 | |
| 1049 | if (!(tf & TIMER_MIGRATING)) { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1050 | base = get_timer_base(tf); |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1051 | raw_spin_lock_irqsave(&base->lock, *flags); |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 1052 | if (timer->flags == tf) |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1053 | return base; |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1054 | raw_spin_unlock_irqrestore(&base->lock, *flags); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1055 | } |
| 1056 | cpu_relax(); |
| 1057 | } |
| 1058 | } |
| 1059 | |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1060 | #define MOD_TIMER_PENDING_ONLY 0x01 |
| 1061 | #define MOD_TIMER_REDUCE 0x02 |
Eric Dumazet | 90c0189 | 2019-11-07 11:37:38 -0800 | [diff] [blame] | 1062 | #define MOD_TIMER_NOTPENDING 0x04 |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1063 | |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1064 | static inline int |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1065 | __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int options) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | { |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 1067 | unsigned long clk = 0, flags, bucket_expiry; |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 1068 | struct timer_base *base, *new_base; |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1069 | unsigned int idx = UINT_MAX; |
Thomas Gleixner | bc7a34b | 2015-05-26 22:50:33 +0000 | [diff] [blame] | 1070 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1072 | debug_assert_init(timer); |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1073 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1074 | /* |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1075 | * This is a common optimization triggered by the networking code - if |
| 1076 | * the timer is re-modified to have the same timeout or ends up in the |
| 1077 | * same array bucket then just return: |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1078 | */ |
Eric Dumazet | 90c0189 | 2019-11-07 11:37:38 -0800 | [diff] [blame] | 1079 | if (!(options & MOD_TIMER_NOTPENDING) && timer_pending(timer)) { |
Nicholas Piggin | 2fe59f5 | 2017-08-22 18:43:48 +1000 | [diff] [blame] | 1080 | /* |
| 1081 | * The downside of this optimization is that it can result in |
| 1082 | * larger granularity than you would get from adding a new |
| 1083 | * timer with this expiry. |
| 1084 | */ |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1085 | long diff = timer->expires - expires; |
| 1086 | |
| 1087 | if (!diff) |
| 1088 | return 1; |
| 1089 | if (options & MOD_TIMER_REDUCE && diff <= 0) |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1090 | return 1; |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1091 | |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1092 | /* |
| 1093 | * We lock timer base and calculate the bucket index right |
| 1094 | * here. If the timer ends up in the same bucket, then we |
| 1095 | * just update the expiry time and avoid the whole |
| 1096 | * dequeue/enqueue dance. |
| 1097 | */ |
| 1098 | base = lock_timer_base(timer, &flags); |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1099 | /* |
| 1100 | * Has @timer been shutdown? This needs to be evaluated |
| 1101 | * while holding base lock to prevent a race against the |
| 1102 | * shutdown code. |
| 1103 | */ |
| 1104 | if (!timer->function) |
| 1105 | goto out_unlock; |
| 1106 | |
Nicholas Piggin | 2fe59f5 | 2017-08-22 18:43:48 +1000 | [diff] [blame] | 1107 | forward_timer_base(base); |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1108 | |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1109 | if (timer_pending(timer) && (options & MOD_TIMER_REDUCE) && |
| 1110 | time_before_eq(timer->expires, expires)) { |
| 1111 | ret = 1; |
| 1112 | goto out_unlock; |
| 1113 | } |
| 1114 | |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1115 | clk = base->clk; |
Anna-Maria Behnsen | 1f32cab | 2020-07-17 16:05:42 +0200 | [diff] [blame] | 1116 | idx = calc_wheel_index(expires, clk, &bucket_expiry); |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1117 | |
| 1118 | /* |
| 1119 | * Retrieve and compare the array index of the pending |
| 1120 | * timer. If it matches set the expiry to the new value so a |
| 1121 | * subsequent call will exit in the expires check above. |
| 1122 | */ |
| 1123 | if (idx == timer_get_idx(timer)) { |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1124 | if (!(options & MOD_TIMER_REDUCE)) |
| 1125 | timer->expires = expires; |
| 1126 | else if (time_after(timer->expires, expires)) |
| 1127 | timer->expires = expires; |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1128 | ret = 1; |
| 1129 | goto out_unlock; |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1130 | } |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1131 | } else { |
| 1132 | base = lock_timer_base(timer, &flags); |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1133 | /* |
| 1134 | * Has @timer been shutdown? This needs to be evaluated |
| 1135 | * while holding base lock to prevent a race against the |
| 1136 | * shutdown code. |
| 1137 | */ |
| 1138 | if (!timer->function) |
| 1139 | goto out_unlock; |
| 1140 | |
Nicholas Piggin | 2fe59f5 | 2017-08-22 18:43:48 +1000 | [diff] [blame] | 1141 | forward_timer_base(base); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1142 | } |
| 1143 | |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 1144 | ret = detach_if_pending(timer, base, false); |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1145 | if (!ret && (options & MOD_TIMER_PENDING_ONLY)) |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 1146 | goto out_unlock; |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1147 | |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 1148 | new_base = get_timer_this_cpu_base(timer->flags); |
Arun R Bharadwaj | eea08f3 | 2009-04-16 12:16:41 +0530 | [diff] [blame] | 1149 | |
Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 1150 | if (base != new_base) { |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1151 | /* |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1152 | * We are trying to schedule the timer on the new base. |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1153 | * However we can't change timer's base while it is running, |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1154 | * otherwise timer_delete_sync() can't detect that the timer's |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1155 | * handler yet has not finished. This also guarantees that the |
| 1156 | * timer is serialized wrt itself. |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1157 | */ |
Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 1158 | if (likely(base->running_timer != timer)) { |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1159 | /* See the comment in lock_timer_base() */ |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 1160 | timer->flags |= TIMER_MIGRATING; |
| 1161 | |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1162 | raw_spin_unlock(&base->lock); |
Oleg Nesterov | a2c348f | 2006-03-31 02:30:31 -0800 | [diff] [blame] | 1163 | base = new_base; |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1164 | raw_spin_lock(&base->lock); |
Eric Dumazet | d0023a1 | 2015-08-17 10:18:48 -0700 | [diff] [blame] | 1165 | WRITE_ONCE(timer->flags, |
| 1166 | (timer->flags & ~TIMER_BASEMASK) | base->cpu); |
Nicholas Piggin | 2fe59f5 | 2017-08-22 18:43:48 +1000 | [diff] [blame] | 1167 | forward_timer_base(base); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1168 | } |
| 1169 | } |
| 1170 | |
Anna-Maria Gleixner | dc1e7dc | 2019-03-21 13:09:19 +0100 | [diff] [blame] | 1171 | debug_timer_activate(timer); |
Thomas Gleixner | fd45bb7 | 2017-12-22 15:51:14 +0100 | [diff] [blame] | 1172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | timer->expires = expires; |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1174 | /* |
| 1175 | * If 'idx' was calculated above and the base time did not advance |
Thomas Gleixner | 4da9152 | 2016-10-24 11:55:10 +0200 | [diff] [blame] | 1176 | * between calculating 'idx' and possibly switching the base, only |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 1177 | * enqueue_timer() is required. Otherwise we need to (re)calculate |
| 1178 | * the wheel index via internal_add_timer(). |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1179 | */ |
Frederic Weisbecker | 9a2b764 | 2020-07-17 16:05:43 +0200 | [diff] [blame] | 1180 | if (idx != UINT_MAX && clk == base->clk) |
| 1181 | enqueue_timer(base, timer, idx, bucket_expiry); |
| 1182 | else |
Anna-Maria Gleixner | f00c0af | 2016-07-04 09:50:40 +0000 | [diff] [blame] | 1183 | internal_add_timer(base, timer); |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1184 | |
| 1185 | out_unlock: |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1186 | raw_spin_unlock_irqrestore(&base->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
| 1188 | return ret; |
| 1189 | } |
| 1190 | |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1191 | /** |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1192 | * mod_timer_pending - Modify a pending timer's timeout |
| 1193 | * @timer: The pending timer to be modified |
| 1194 | * @expires: New absolute timeout in jiffies |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1195 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1196 | * mod_timer_pending() is the same for pending timers as mod_timer(), but |
| 1197 | * will not activate inactive timers. |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1198 | * |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1199 | * If @timer->function == NULL then the start operation is silently |
| 1200 | * discarded. |
| 1201 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1202 | * Return: |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1203 | * * %0 - The timer was inactive and not modified or was in |
| 1204 | * shutdown state and the operation was discarded |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1205 | * * %1 - The timer was active and requeued to expire at @expires |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1206 | */ |
| 1207 | int mod_timer_pending(struct timer_list *timer, unsigned long expires) |
| 1208 | { |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1209 | return __mod_timer(timer, expires, MOD_TIMER_PENDING_ONLY); |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1210 | } |
| 1211 | EXPORT_SYMBOL(mod_timer_pending); |
| 1212 | |
| 1213 | /** |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1214 | * mod_timer - Modify a timer's timeout |
| 1215 | * @timer: The timer to be modified |
| 1216 | * @expires: New absolute timeout in jiffies |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1217 | * |
| 1218 | * mod_timer(timer, expires) is equivalent to: |
| 1219 | * |
| 1220 | * del_timer(timer); timer->expires = expires; add_timer(timer); |
| 1221 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1222 | * mod_timer() is more efficient than the above open coded sequence. In |
| 1223 | * case that the timer is inactive, the del_timer() part is a NOP. The |
| 1224 | * timer is in any case activated with the new expiry time @expires. |
| 1225 | * |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1226 | * Note that if there are multiple unserialized concurrent users of the |
| 1227 | * same timer, then mod_timer() is the only safe way to modify the timeout, |
| 1228 | * since add_timer() cannot modify an already running timer. |
| 1229 | * |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1230 | * If @timer->function == NULL then the start operation is silently |
| 1231 | * discarded. In this case the return value is 0 and meaningless. |
| 1232 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1233 | * Return: |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1234 | * * %0 - The timer was inactive and started or was in shutdown |
| 1235 | * state and the operation was discarded |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1236 | * * %1 - The timer was active and requeued to expire at @expires or |
| 1237 | * the timer was active and not modified because @expires did |
| 1238 | * not change the effective expiry time |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1239 | */ |
| 1240 | int mod_timer(struct timer_list *timer, unsigned long expires) |
| 1241 | { |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1242 | return __mod_timer(timer, expires, 0); |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1243 | } |
| 1244 | EXPORT_SYMBOL(mod_timer); |
| 1245 | |
| 1246 | /** |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1247 | * timer_reduce - Modify a timer's timeout if it would reduce the timeout |
| 1248 | * @timer: The timer to be modified |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1249 | * @expires: New absolute timeout in jiffies |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1250 | * |
| 1251 | * timer_reduce() is very similar to mod_timer(), except that it will only |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1252 | * modify an enqueued timer if that would reduce the expiration time. If |
| 1253 | * @timer is not enqueued it starts the timer. |
| 1254 | * |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1255 | * If @timer->function == NULL then the start operation is silently |
| 1256 | * discarded. |
| 1257 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1258 | * Return: |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1259 | * * %0 - The timer was inactive and started or was in shutdown |
| 1260 | * state and the operation was discarded |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1261 | * * %1 - The timer was active and requeued to expire at @expires or |
| 1262 | * the timer was active and not modified because @expires |
| 1263 | * did not change the effective expiry time such that the |
| 1264 | * timer would expire earlier than already scheduled |
David Howells | b24591e | 2017-11-09 12:35:07 +0000 | [diff] [blame] | 1265 | */ |
| 1266 | int timer_reduce(struct timer_list *timer, unsigned long expires) |
| 1267 | { |
| 1268 | return __mod_timer(timer, expires, MOD_TIMER_REDUCE); |
| 1269 | } |
| 1270 | EXPORT_SYMBOL(timer_reduce); |
| 1271 | |
| 1272 | /** |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1273 | * add_timer - Start a timer |
| 1274 | * @timer: The timer to be started |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1275 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1276 | * Start @timer to expire at @timer->expires in the future. @timer->expires |
| 1277 | * is the absolute expiry time measured in 'jiffies'. When the timer expires |
| 1278 | * timer->function(timer) will be invoked from soft interrupt context. |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1279 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1280 | * The @timer->expires and @timer->function fields must be set prior |
| 1281 | * to calling this function. |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1282 | * |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1283 | * If @timer->function == NULL then the start operation is silently |
| 1284 | * discarded. |
| 1285 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1286 | * If @timer->expires is already in the past @timer will be queued to |
| 1287 | * expire at the next timer tick. |
| 1288 | * |
| 1289 | * This can only operate on an inactive timer. Attempts to invoke this on |
| 1290 | * an active timer are rejected with a warning. |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1291 | */ |
| 1292 | void add_timer(struct timer_list *timer) |
| 1293 | { |
Thomas Gleixner | 82ed6f7 | 2022-11-23 21:18:39 +0100 | [diff] [blame] | 1294 | if (WARN_ON_ONCE(timer_pending(timer))) |
| 1295 | return; |
Eric Dumazet | 90c0189 | 2019-11-07 11:37:38 -0800 | [diff] [blame] | 1296 | __mod_timer(timer, timer->expires, MOD_TIMER_NOTPENDING); |
Ingo Molnar | 7401922 | 2009-02-18 12:23:29 +0100 | [diff] [blame] | 1297 | } |
| 1298 | EXPORT_SYMBOL(add_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1300 | /** |
Anna-Maria Behnsen | 8e7e247f | 2024-02-21 10:05:33 +0100 | [diff] [blame] | 1301 | * add_timer_local() - Start a timer on the local CPU |
| 1302 | * @timer: The timer to be started |
| 1303 | * |
| 1304 | * Same as add_timer() except that the timer flag TIMER_PINNED is set. |
| 1305 | * |
| 1306 | * See add_timer() for further details. |
| 1307 | */ |
| 1308 | void add_timer_local(struct timer_list *timer) |
| 1309 | { |
| 1310 | if (WARN_ON_ONCE(timer_pending(timer))) |
| 1311 | return; |
| 1312 | timer->flags |= TIMER_PINNED; |
| 1313 | __mod_timer(timer, timer->expires, MOD_TIMER_NOTPENDING); |
| 1314 | } |
| 1315 | EXPORT_SYMBOL(add_timer_local); |
| 1316 | |
| 1317 | /** |
| 1318 | * add_timer_global() - Start a timer without TIMER_PINNED flag set |
| 1319 | * @timer: The timer to be started |
| 1320 | * |
| 1321 | * Same as add_timer() except that the timer flag TIMER_PINNED is unset. |
| 1322 | * |
| 1323 | * See add_timer() for further details. |
| 1324 | */ |
| 1325 | void add_timer_global(struct timer_list *timer) |
| 1326 | { |
| 1327 | if (WARN_ON_ONCE(timer_pending(timer))) |
| 1328 | return; |
| 1329 | timer->flags &= ~TIMER_PINNED; |
| 1330 | __mod_timer(timer, timer->expires, MOD_TIMER_NOTPENDING); |
| 1331 | } |
| 1332 | EXPORT_SYMBOL(add_timer_global); |
| 1333 | |
| 1334 | /** |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1335 | * add_timer_on - Start a timer on a particular CPU |
| 1336 | * @timer: The timer to be started |
| 1337 | * @cpu: The CPU to start it on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | * |
Anna-Maria Behnsen | aae55e9 | 2024-02-21 10:05:35 +0100 | [diff] [blame] | 1339 | * Same as add_timer() except that it starts the timer on the given CPU and |
| 1340 | * the TIMER_PINNED flag is set. When timer shouldn't be a pinned timer in |
| 1341 | * the next round, add_timer_global() should be used instead as it unsets |
| 1342 | * the TIMER_PINNED flag. |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1343 | * |
| 1344 | * See add_timer() for further details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | */ |
| 1346 | void add_timer_on(struct timer_list *timer, int cpu) |
| 1347 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1348 | struct timer_base *new_base, *base; |
Thomas Gleixner | 6819457 | 2007-07-19 01:49:16 -0700 | [diff] [blame] | 1349 | unsigned long flags; |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1350 | |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1351 | debug_assert_init(timer); |
| 1352 | |
| 1353 | if (WARN_ON_ONCE(timer_pending(timer))) |
Thomas Gleixner | 82ed6f7 | 2022-11-23 21:18:39 +0100 | [diff] [blame] | 1354 | return; |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1355 | |
Anna-Maria Behnsen | aae55e9 | 2024-02-21 10:05:35 +0100 | [diff] [blame] | 1356 | /* Make sure timer flags have TIMER_PINNED flag set */ |
| 1357 | timer->flags |= TIMER_PINNED; |
| 1358 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1359 | new_base = get_timer_cpu_base(timer->flags, cpu); |
| 1360 | |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1361 | /* |
| 1362 | * If @timer was on a different CPU, it should be migrated with the |
| 1363 | * old base locked to prevent other operations proceeding with the |
| 1364 | * wrong base locked. See lock_timer_base(). |
| 1365 | */ |
| 1366 | base = lock_timer_base(timer, &flags); |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1367 | /* |
| 1368 | * Has @timer been shutdown? This needs to be evaluated while |
| 1369 | * holding base lock to prevent a race against the shutdown code. |
| 1370 | */ |
| 1371 | if (!timer->function) |
| 1372 | goto out_unlock; |
| 1373 | |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1374 | if (base != new_base) { |
| 1375 | timer->flags |= TIMER_MIGRATING; |
| 1376 | |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1377 | raw_spin_unlock(&base->lock); |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1378 | base = new_base; |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1379 | raw_spin_lock(&base->lock); |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1380 | WRITE_ONCE(timer->flags, |
| 1381 | (timer->flags & ~TIMER_BASEMASK) | cpu); |
| 1382 | } |
Nicholas Piggin | 2fe59f5 | 2017-08-22 18:43:48 +1000 | [diff] [blame] | 1383 | forward_timer_base(base); |
Tejun Heo | 22b886d | 2015-11-04 12:15:33 -0500 | [diff] [blame] | 1384 | |
Anna-Maria Gleixner | dc1e7dc | 2019-03-21 13:09:19 +0100 | [diff] [blame] | 1385 | debug_timer_activate(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | internal_add_timer(base, timer); |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1387 | out_unlock: |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1388 | raw_spin_unlock_irqrestore(&base->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | } |
Andi Kleen | a9862e0 | 2009-05-19 22:49:07 +0200 | [diff] [blame] | 1390 | EXPORT_SYMBOL_GPL(add_timer_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1392 | /** |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1393 | * __timer_delete - Internal function: Deactivate a timer |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1394 | * @timer: The timer to be deactivated |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1395 | * @shutdown: If true, this indicates that the timer is about to be |
| 1396 | * shutdown permanently. |
| 1397 | * |
| 1398 | * If @shutdown is true then @timer->function is set to NULL under the |
| 1399 | * timer base lock which prevents further rearming of the time. In that |
| 1400 | * case any attempt to rearm @timer after this function returns will be |
| 1401 | * silently ignored. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1403 | * Return: |
| 1404 | * * %0 - The timer was not pending |
| 1405 | * * %1 - The timer was pending and deactivated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | */ |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1407 | static int __timer_delete(struct timer_list *timer, bool shutdown) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | { |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 1409 | struct timer_base *base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | unsigned long flags; |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1411 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Christine Chan | dc4218b | 2011-11-07 19:48:28 -0800 | [diff] [blame] | 1413 | debug_assert_init(timer); |
| 1414 | |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1415 | /* |
| 1416 | * If @shutdown is set then the lock has to be taken whether the |
| 1417 | * timer is pending or not to protect against a concurrent rearm |
| 1418 | * which might hit between the lockless pending check and the lock |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 1419 | * acquisition. By taking the lock it is ensured that such a newly |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1420 | * enqueued timer is dequeued and cannot end up with |
| 1421 | * timer->function == NULL in the expiry code. |
| 1422 | * |
| 1423 | * If timer->function is currently executed, then this makes sure |
| 1424 | * that the callback cannot requeue the timer. |
| 1425 | */ |
| 1426 | if (timer_pending(timer) || shutdown) { |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1427 | base = lock_timer_base(timer, &flags); |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 1428 | ret = detach_if_pending(timer, base, true); |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1429 | if (shutdown) |
| 1430 | timer->function = NULL; |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1431 | raw_spin_unlock_irqrestore(&base->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 1434 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | } |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1436 | |
| 1437 | /** |
| 1438 | * timer_delete - Deactivate a timer |
| 1439 | * @timer: The timer to be deactivated |
| 1440 | * |
| 1441 | * The function only deactivates a pending timer, but contrary to |
| 1442 | * timer_delete_sync() it does not take into account whether the timer's |
| 1443 | * callback function is concurrently executed on a different CPU or not. |
| 1444 | * It neither prevents rearming of the timer. If @timer can be rearmed |
| 1445 | * concurrently then the return value of this function is meaningless. |
| 1446 | * |
| 1447 | * Return: |
| 1448 | * * %0 - The timer was not pending |
| 1449 | * * %1 - The timer was pending and deactivated |
| 1450 | */ |
| 1451 | int timer_delete(struct timer_list *timer) |
| 1452 | { |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1453 | return __timer_delete(timer, false); |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1454 | } |
Thomas Gleixner | bb663f0 | 2022-11-23 21:18:45 +0100 | [diff] [blame] | 1455 | EXPORT_SYMBOL(timer_delete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1457 | /** |
Thomas Gleixner | f571faf | 2022-11-23 21:18:53 +0100 | [diff] [blame] | 1458 | * timer_shutdown - Deactivate a timer and prevent rearming |
| 1459 | * @timer: The timer to be deactivated |
| 1460 | * |
| 1461 | * The function does not wait for an eventually running timer callback on a |
| 1462 | * different CPU but it prevents rearming of the timer. Any attempt to arm |
| 1463 | * @timer after this function returns will be silently ignored. |
| 1464 | * |
| 1465 | * This function is useful for teardown code and should only be used when |
| 1466 | * timer_shutdown_sync() cannot be invoked due to locking or context constraints. |
| 1467 | * |
| 1468 | * Return: |
| 1469 | * * %0 - The timer was not pending |
| 1470 | * * %1 - The timer was pending |
| 1471 | */ |
| 1472 | int timer_shutdown(struct timer_list *timer) |
| 1473 | { |
| 1474 | return __timer_delete(timer, true); |
| 1475 | } |
| 1476 | EXPORT_SYMBOL_GPL(timer_shutdown); |
| 1477 | |
| 1478 | /** |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1479 | * __try_to_del_timer_sync - Internal function: Try to deactivate a timer |
| 1480 | * @timer: Timer to deactivate |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1481 | * @shutdown: If true, this indicates that the timer is about to be |
| 1482 | * shutdown permanently. |
| 1483 | * |
| 1484 | * If @shutdown is true then @timer->function is set to NULL under the |
| 1485 | * timer base lock which prevents further rearming of the timer. Any |
| 1486 | * attempt to rearm @timer after this function returns will be silently |
| 1487 | * ignored. |
| 1488 | * |
| 1489 | * This function cannot guarantee that the timer cannot be rearmed |
| 1490 | * right after dropping the base lock if @shutdown is false. That |
| 1491 | * needs to be prevented by the calling code if necessary. |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1492 | * |
| 1493 | * Return: |
| 1494 | * * %0 - The timer was not pending |
| 1495 | * * %1 - The timer was pending and deactivated |
| 1496 | * * %-1 - The timer callback function is running on a different CPU |
| 1497 | */ |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1498 | static int __try_to_del_timer_sync(struct timer_list *timer, bool shutdown) |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1499 | { |
| 1500 | struct timer_base *base; |
| 1501 | unsigned long flags; |
| 1502 | int ret = -1; |
| 1503 | |
| 1504 | debug_assert_init(timer); |
| 1505 | |
| 1506 | base = lock_timer_base(timer, &flags); |
| 1507 | |
| 1508 | if (base->running_timer != timer) |
| 1509 | ret = detach_if_pending(timer, base, true); |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1510 | if (shutdown) |
| 1511 | timer->function = NULL; |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1512 | |
| 1513 | raw_spin_unlock_irqrestore(&base->lock, flags); |
| 1514 | |
| 1515 | return ret; |
| 1516 | } |
| 1517 | |
| 1518 | /** |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1519 | * try_to_del_timer_sync - Try to deactivate a timer |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1520 | * @timer: Timer to deactivate |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1521 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1522 | * This function tries to deactivate a timer. On success the timer is not |
| 1523 | * queued and the timer callback function is not running on any CPU. |
| 1524 | * |
| 1525 | * This function does not guarantee that the timer cannot be rearmed right |
| 1526 | * after dropping the base lock. That needs to be prevented by the calling |
| 1527 | * code if necessary. |
| 1528 | * |
| 1529 | * Return: |
| 1530 | * * %0 - The timer was not pending |
| 1531 | * * %1 - The timer was pending and deactivated |
| 1532 | * * %-1 - The timer callback function is running on a different CPU |
Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 1533 | */ |
| 1534 | int try_to_del_timer_sync(struct timer_list *timer) |
| 1535 | { |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1536 | return __try_to_del_timer_sync(timer, false); |
Oleg Nesterov | fd450b7 | 2005-06-23 00:08:59 -0700 | [diff] [blame] | 1537 | } |
David Howells | e19dff1 | 2007-04-26 15:46:56 -0700 | [diff] [blame] | 1538 | EXPORT_SYMBOL(try_to_del_timer_sync); |
| 1539 | |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1540 | #ifdef CONFIG_PREEMPT_RT |
| 1541 | static __init void timer_base_init_expiry_lock(struct timer_base *base) |
| 1542 | { |
| 1543 | spin_lock_init(&base->expiry_lock); |
| 1544 | } |
| 1545 | |
| 1546 | static inline void timer_base_lock_expiry(struct timer_base *base) |
| 1547 | { |
| 1548 | spin_lock(&base->expiry_lock); |
| 1549 | } |
| 1550 | |
| 1551 | static inline void timer_base_unlock_expiry(struct timer_base *base) |
| 1552 | { |
| 1553 | spin_unlock(&base->expiry_lock); |
| 1554 | } |
| 1555 | |
| 1556 | /* |
| 1557 | * The counterpart to del_timer_wait_running(). |
| 1558 | * |
| 1559 | * If there is a waiter for base->expiry_lock, then it was waiting for the |
Ingo Molnar | 4bf07f6 | 2021-03-22 22:39:03 +0100 | [diff] [blame] | 1560 | * timer callback to finish. Drop expiry_lock and reacquire it. That allows |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1561 | * the waiter to acquire the lock and make progress. |
| 1562 | */ |
| 1563 | static void timer_sync_wait_running(struct timer_base *base) |
| 1564 | { |
| 1565 | if (atomic_read(&base->timer_waiters)) { |
Thomas Gleixner | bb7262b | 2020-12-06 22:40:07 +0100 | [diff] [blame] | 1566 | raw_spin_unlock_irq(&base->lock); |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1567 | spin_unlock(&base->expiry_lock); |
| 1568 | spin_lock(&base->expiry_lock); |
Thomas Gleixner | bb7262b | 2020-12-06 22:40:07 +0100 | [diff] [blame] | 1569 | raw_spin_lock_irq(&base->lock); |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | /* |
| 1574 | * This function is called on PREEMPT_RT kernels when the fast path |
| 1575 | * deletion of a timer failed because the timer callback function was |
| 1576 | * running. |
| 1577 | * |
| 1578 | * This prevents priority inversion, if the softirq thread on a remote CPU |
| 1579 | * got preempted, and it prevents a life lock when the task which tries to |
| 1580 | * delete a timer preempted the softirq thread running the timer callback |
| 1581 | * function. |
| 1582 | */ |
| 1583 | static void del_timer_wait_running(struct timer_list *timer) |
| 1584 | { |
| 1585 | u32 tf; |
| 1586 | |
| 1587 | tf = READ_ONCE(timer->flags); |
Sebastian Andrzej Siewior | c725daf | 2020-11-03 20:09:37 +0100 | [diff] [blame] | 1588 | if (!(tf & (TIMER_MIGRATING | TIMER_IRQSAFE))) { |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1589 | struct timer_base *base = get_timer_base(tf); |
| 1590 | |
| 1591 | /* |
| 1592 | * Mark the base as contended and grab the expiry lock, |
| 1593 | * which is held by the softirq across the timer |
| 1594 | * callback. Drop the lock immediately so the softirq can |
| 1595 | * expire the next timer. In theory the timer could already |
| 1596 | * be running again, but that's more than unlikely and just |
| 1597 | * causes another wait loop. |
| 1598 | */ |
| 1599 | atomic_inc(&base->timer_waiters); |
| 1600 | spin_lock_bh(&base->expiry_lock); |
| 1601 | atomic_dec(&base->timer_waiters); |
| 1602 | spin_unlock_bh(&base->expiry_lock); |
| 1603 | } |
| 1604 | } |
| 1605 | #else |
| 1606 | static inline void timer_base_init_expiry_lock(struct timer_base *base) { } |
| 1607 | static inline void timer_base_lock_expiry(struct timer_base *base) { } |
| 1608 | static inline void timer_base_unlock_expiry(struct timer_base *base) { } |
| 1609 | static inline void timer_sync_wait_running(struct timer_base *base) { } |
| 1610 | static inline void del_timer_wait_running(struct timer_list *timer) { } |
| 1611 | #endif |
| 1612 | |
Rolf Eike Beer | 2aae4a1 | 2006-09-29 01:59:46 -0700 | [diff] [blame] | 1613 | /** |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1614 | * __timer_delete_sync - Internal function: Deactivate a timer and wait |
| 1615 | * for the handler to finish. |
| 1616 | * @timer: The timer to be deactivated |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1617 | * @shutdown: If true, @timer->function will be set to NULL under the |
| 1618 | * timer base lock which prevents rearming of @timer |
| 1619 | * |
| 1620 | * If @shutdown is not set the timer can be rearmed later. If the timer can |
| 1621 | * be rearmed concurrently, i.e. after dropping the base lock then the |
| 1622 | * return value is meaningless. |
| 1623 | * |
| 1624 | * If @shutdown is set then @timer->function is set to NULL under timer |
| 1625 | * base lock which prevents rearming of the timer. Any attempt to rearm |
| 1626 | * a shutdown timer is silently ignored. |
| 1627 | * |
| 1628 | * If the timer should be reused after shutdown it has to be initialized |
| 1629 | * again. |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1630 | * |
| 1631 | * Return: |
| 1632 | * * %0 - The timer was not pending |
| 1633 | * * %1 - The timer was pending and deactivated |
| 1634 | */ |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1635 | static int __timer_delete_sync(struct timer_list *timer, bool shutdown) |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1636 | { |
| 1637 | int ret; |
| 1638 | |
| 1639 | #ifdef CONFIG_LOCKDEP |
| 1640 | unsigned long flags; |
| 1641 | |
| 1642 | /* |
| 1643 | * If lockdep gives a backtrace here, please reference |
| 1644 | * the synchronization rules above. |
| 1645 | */ |
| 1646 | local_irq_save(flags); |
| 1647 | lock_map_acquire(&timer->lockdep_map); |
| 1648 | lock_map_release(&timer->lockdep_map); |
| 1649 | local_irq_restore(flags); |
| 1650 | #endif |
| 1651 | /* |
| 1652 | * don't use it in hardirq context, because it |
| 1653 | * could lead to deadlock. |
| 1654 | */ |
| 1655 | WARN_ON(in_hardirq() && !(timer->flags & TIMER_IRQSAFE)); |
| 1656 | |
| 1657 | /* |
| 1658 | * Must be able to sleep on PREEMPT_RT because of the slowpath in |
| 1659 | * del_timer_wait_running(). |
| 1660 | */ |
| 1661 | if (IS_ENABLED(CONFIG_PREEMPT_RT) && !(timer->flags & TIMER_IRQSAFE)) |
| 1662 | lockdep_assert_preemption_enabled(); |
| 1663 | |
| 1664 | do { |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1665 | ret = __try_to_del_timer_sync(timer, shutdown); |
Thomas Gleixner | 8553b5f | 2022-11-23 21:18:50 +0100 | [diff] [blame] | 1666 | |
| 1667 | if (unlikely(ret < 0)) { |
| 1668 | del_timer_wait_running(timer); |
| 1669 | cpu_relax(); |
| 1670 | } |
| 1671 | } while (ret < 0); |
| 1672 | |
| 1673 | return ret; |
| 1674 | } |
| 1675 | |
| 1676 | /** |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1677 | * timer_delete_sync - Deactivate a timer and wait for the handler to finish. |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1678 | * @timer: The timer to be deactivated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 1680 | * Synchronization rules: Callers must prevent restarting of the timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | * otherwise this function is meaningless. It must not be called from |
Tejun Heo | c5f66e9 | 2012-08-08 11:10:28 -0700 | [diff] [blame] | 1682 | * interrupt contexts unless the timer is an irqsafe one. The caller must |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1683 | * not hold locks which would prevent completion of the timer's callback |
| 1684 | * function. The timer's handler must not call add_timer_on(). Upon exit |
| 1685 | * the timer is not queued and the handler is not running on any CPU. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1687 | * For !irqsafe timers, the caller must not hold locks that are held in |
| 1688 | * interrupt context. Even if the lock has nothing to do with the timer in |
| 1689 | * question. Here's why:: |
Steven Rostedt | 48228f7 | 2011-02-08 12:39:54 -0500 | [diff] [blame] | 1690 | * |
| 1691 | * CPU0 CPU1 |
| 1692 | * ---- ---- |
Mauro Carvalho Chehab | bf9c96b | 2018-05-07 06:35:48 -0300 | [diff] [blame] | 1693 | * <SOFTIRQ> |
| 1694 | * call_timer_fn(); |
| 1695 | * base->running_timer = mytimer; |
| 1696 | * spin_lock_irq(somelock); |
Steven Rostedt | 48228f7 | 2011-02-08 12:39:54 -0500 | [diff] [blame] | 1697 | * <IRQ> |
| 1698 | * spin_lock(somelock); |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1699 | * timer_delete_sync(mytimer); |
Mauro Carvalho Chehab | bf9c96b | 2018-05-07 06:35:48 -0300 | [diff] [blame] | 1700 | * while (base->running_timer == mytimer); |
Steven Rostedt | 48228f7 | 2011-02-08 12:39:54 -0500 | [diff] [blame] | 1701 | * |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1702 | * Now timer_delete_sync() will never return and never release somelock. |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1703 | * The interrupt on the other CPU is waiting to grab somelock but it has |
| 1704 | * interrupted the softirq that CPU0 is waiting to finish. |
Steven Rostedt | 48228f7 | 2011-02-08 12:39:54 -0500 | [diff] [blame] | 1705 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1706 | * This function cannot guarantee that the timer is not rearmed again by |
| 1707 | * some concurrent or preempting code, right after it dropped the base |
| 1708 | * lock. If there is the possibility of a concurrent rearm then the return |
| 1709 | * value of the function is meaningless. |
| 1710 | * |
Thomas Gleixner | f571faf | 2022-11-23 21:18:53 +0100 | [diff] [blame] | 1711 | * If such a guarantee is needed, e.g. for teardown situations then use |
| 1712 | * timer_shutdown_sync() instead. |
| 1713 | * |
Thomas Gleixner | 14f043f | 2022-11-23 21:18:40 +0100 | [diff] [blame] | 1714 | * Return: |
| 1715 | * * %0 - The timer was not pending |
| 1716 | * * %1 - The timer was pending and deactivated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | */ |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1718 | int timer_delete_sync(struct timer_list *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | { |
Thomas Gleixner | 0cc04e8 | 2022-11-23 21:18:52 +0100 | [diff] [blame] | 1720 | return __timer_delete_sync(timer, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | } |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1722 | EXPORT_SYMBOL(timer_delete_sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | |
Thomas Gleixner | f571faf | 2022-11-23 21:18:53 +0100 | [diff] [blame] | 1724 | /** |
| 1725 | * timer_shutdown_sync - Shutdown a timer and prevent rearming |
| 1726 | * @timer: The timer to be shutdown |
| 1727 | * |
| 1728 | * When the function returns it is guaranteed that: |
| 1729 | * - @timer is not queued |
| 1730 | * - The callback function of @timer is not running |
| 1731 | * - @timer cannot be enqueued again. Any attempt to rearm |
| 1732 | * @timer is silently ignored. |
| 1733 | * |
| 1734 | * See timer_delete_sync() for synchronization rules. |
| 1735 | * |
| 1736 | * This function is useful for final teardown of an infrastructure where |
| 1737 | * the timer is subject to a circular dependency problem. |
| 1738 | * |
| 1739 | * A common pattern for this is a timer and a workqueue where the timer can |
| 1740 | * schedule work and work can arm the timer. On shutdown the workqueue must |
| 1741 | * be destroyed and the timer must be prevented from rearming. Unless the |
| 1742 | * code has conditionals like 'if (mything->in_shutdown)' to prevent that |
| 1743 | * there is no way to get this correct with timer_delete_sync(). |
| 1744 | * |
| 1745 | * timer_shutdown_sync() is solving the problem. The correct ordering of |
| 1746 | * calls in this case is: |
| 1747 | * |
| 1748 | * timer_shutdown_sync(&mything->timer); |
| 1749 | * workqueue_destroy(&mything->workqueue); |
| 1750 | * |
| 1751 | * After this 'mything' can be safely freed. |
| 1752 | * |
| 1753 | * This obviously implies that the timer is not required to be functional |
| 1754 | * for the rest of the shutdown operation. |
| 1755 | * |
| 1756 | * Return: |
| 1757 | * * %0 - The timer was not pending |
| 1758 | * * %1 - The timer was pending |
| 1759 | */ |
| 1760 | int timer_shutdown_sync(struct timer_list *timer) |
| 1761 | { |
| 1762 | return __timer_delete_sync(timer, true); |
| 1763 | } |
| 1764 | EXPORT_SYMBOL_GPL(timer_shutdown_sync); |
| 1765 | |
Anna-Maria Gleixner | f28d3d5 | 2019-03-21 13:09:21 +0100 | [diff] [blame] | 1766 | static void call_timer_fn(struct timer_list *timer, |
| 1767 | void (*fn)(struct timer_list *), |
| 1768 | unsigned long baseclk) |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1769 | { |
Peter Zijlstra | 4a2b4b2 | 2013-08-14 14:55:24 +0200 | [diff] [blame] | 1770 | int count = preempt_count(); |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1771 | |
| 1772 | #ifdef CONFIG_LOCKDEP |
| 1773 | /* |
| 1774 | * It is permissible to free the timer from inside the |
| 1775 | * function that is called from it, this we need to take into |
| 1776 | * account for lockdep too. To avoid bogus "held lock freed" |
| 1777 | * warnings as well as problems when looking into |
| 1778 | * timer->lockdep_map, make a copy and use that here. |
| 1779 | */ |
Peter Zijlstra | 4d82a1d | 2012-05-15 08:06:19 -0700 | [diff] [blame] | 1780 | struct lockdep_map lockdep_map; |
| 1781 | |
| 1782 | lockdep_copy_map(&lockdep_map, &timer->lockdep_map); |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1783 | #endif |
| 1784 | /* |
| 1785 | * Couple the lock chain with the lock chain at |
Thomas Gleixner | 9b13df3 | 2022-11-23 21:18:44 +0100 | [diff] [blame] | 1786 | * timer_delete_sync() by acquiring the lock_map around the fn() |
| 1787 | * call here and in timer_delete_sync(). |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1788 | */ |
| 1789 | lock_map_acquire(&lockdep_map); |
| 1790 | |
Anna-Maria Gleixner | f28d3d5 | 2019-03-21 13:09:21 +0100 | [diff] [blame] | 1791 | trace_timer_expire_entry(timer, baseclk); |
Kees Cook | 354b46b1 | 2017-10-22 19:15:40 -0700 | [diff] [blame] | 1792 | fn(timer); |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1793 | trace_timer_expire_exit(timer); |
| 1794 | |
| 1795 | lock_map_release(&lockdep_map); |
| 1796 | |
Peter Zijlstra | 4a2b4b2 | 2013-08-14 14:55:24 +0200 | [diff] [blame] | 1797 | if (count != preempt_count()) { |
Sakari Ailus | d75f773 | 2019-03-25 21:32:28 +0200 | [diff] [blame] | 1798 | WARN_ONCE(1, "timer: %pS preempt leak: %08x -> %08x\n", |
Peter Zijlstra | 4a2b4b2 | 2013-08-14 14:55:24 +0200 | [diff] [blame] | 1799 | fn, count, preempt_count()); |
Thomas Gleixner | 802702e | 2010-03-12 20:13:23 +0100 | [diff] [blame] | 1800 | /* |
| 1801 | * Restore the preempt count. That gives us a decent |
| 1802 | * chance to survive and extract information. If the |
| 1803 | * callback kept a lock held, bad luck, but not worse |
| 1804 | * than the BUG() we had. |
| 1805 | */ |
Peter Zijlstra | 4a2b4b2 | 2013-08-14 14:55:24 +0200 | [diff] [blame] | 1806 | preempt_count_set(count); |
Thomas Gleixner | 576da12 | 2010-03-12 21:10:29 +0100 | [diff] [blame] | 1807 | } |
| 1808 | } |
| 1809 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1810 | static void expire_timers(struct timer_base *base, struct hlist_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | { |
Anna-Maria Gleixner | f28d3d5 | 2019-03-21 13:09:21 +0100 | [diff] [blame] | 1812 | /* |
| 1813 | * This value is required only for tracing. base->clk was |
| 1814 | * incremented directly before expire_timers was called. But expiry |
| 1815 | * is related to the old base->clk value. |
| 1816 | */ |
| 1817 | unsigned long baseclk = base->clk - 1; |
| 1818 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1819 | while (!hlist_empty(head)) { |
| 1820 | struct timer_list *timer; |
Kees Cook | 354b46b1 | 2017-10-22 19:15:40 -0700 | [diff] [blame] | 1821 | void (*fn)(struct timer_list *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1823 | timer = hlist_entry(head->first, struct timer_list, entry); |
Thomas Gleixner | 3bb475a | 2015-05-26 22:50:24 +0000 | [diff] [blame] | 1824 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1825 | base->running_timer = timer; |
| 1826 | detach_timer(timer, true); |
Thomas Gleixner | 3bb475a | 2015-05-26 22:50:24 +0000 | [diff] [blame] | 1827 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1828 | fn = timer->function; |
Thomas Gleixner | 3bb475a | 2015-05-26 22:50:24 +0000 | [diff] [blame] | 1829 | |
Thomas Gleixner | d02e382 | 2022-11-24 09:22:36 +0100 | [diff] [blame] | 1830 | if (WARN_ON_ONCE(!fn)) { |
| 1831 | /* Should never happen. Emphasis on should! */ |
| 1832 | base->running_timer = NULL; |
| 1833 | continue; |
| 1834 | } |
| 1835 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1836 | if (timer->flags & TIMER_IRQSAFE) { |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1837 | raw_spin_unlock(&base->lock); |
Anna-Maria Gleixner | f28d3d5 | 2019-03-21 13:09:21 +0100 | [diff] [blame] | 1838 | call_timer_fn(timer, fn, baseclk); |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1839 | raw_spin_lock(&base->lock); |
Thomas Gleixner | bb7262b | 2020-12-06 22:40:07 +0100 | [diff] [blame] | 1840 | base->running_timer = NULL; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1841 | } else { |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 1842 | raw_spin_unlock_irq(&base->lock); |
Anna-Maria Gleixner | f28d3d5 | 2019-03-21 13:09:21 +0100 | [diff] [blame] | 1843 | call_timer_fn(timer, fn, baseclk); |
Thomas Gleixner | bb7262b | 2020-12-06 22:40:07 +0100 | [diff] [blame] | 1844 | raw_spin_lock_irq(&base->lock); |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 1845 | base->running_timer = NULL; |
| 1846 | timer_sync_wait_running(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | } |
| 1848 | } |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
Frederic Weisbecker | d4f7dae | 2020-07-17 16:05:49 +0200 | [diff] [blame] | 1851 | static int collect_expired_timers(struct timer_base *base, |
| 1852 | struct hlist_head *heads) |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1853 | { |
Frederic Weisbecker | d4f7dae | 2020-07-17 16:05:49 +0200 | [diff] [blame] | 1854 | unsigned long clk = base->clk = base->next_expiry; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1855 | struct hlist_head *vec; |
| 1856 | int i, levels = 0; |
| 1857 | unsigned int idx; |
| 1858 | |
| 1859 | for (i = 0; i < LVL_DEPTH; i++) { |
| 1860 | idx = (clk & LVL_MASK) + i * LVL_SIZE; |
| 1861 | |
| 1862 | if (__test_and_clear_bit(idx, base->pending_map)) { |
| 1863 | vec = base->vectors + idx; |
| 1864 | hlist_move_list(vec, heads++); |
| 1865 | levels++; |
| 1866 | } |
| 1867 | /* Is it time to look at the next level? */ |
| 1868 | if (clk & LVL_CLK_MASK) |
| 1869 | break; |
| 1870 | /* Shift clock for the next level granularity */ |
| 1871 | clk >>= LVL_CLK_SHIFT; |
| 1872 | } |
| 1873 | return levels; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | } |
| 1875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | /* |
Anna-Maria Gleixner | 2369683 | 2016-07-04 09:50:34 +0000 | [diff] [blame] | 1877 | * Find the next pending bucket of a level. Search from level start (@offset) |
| 1878 | * + @clk upwards and if nothing there, search from start of the level |
| 1879 | * (@offset) up to @offset + clk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | */ |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1881 | static int next_pending_bucket(struct timer_base *base, unsigned offset, |
| 1882 | unsigned clk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1884 | unsigned pos, start = offset + clk; |
| 1885 | unsigned end = offset + LVL_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1887 | pos = find_next_bit(base->pending_map, end, start); |
| 1888 | if (pos < end) |
| 1889 | return pos - start; |
Venki Pallipadi | 6e453a6 | 2007-05-08 00:27:44 -0700 | [diff] [blame] | 1890 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1891 | pos = find_next_bit(base->pending_map, start, offset); |
| 1892 | return pos < start ? pos + LVL_SIZE - start : -1; |
| 1893 | } |
| 1894 | |
| 1895 | /* |
Anna-Maria Gleixner | 2369683 | 2016-07-04 09:50:34 +0000 | [diff] [blame] | 1896 | * Search the first expiring timer in the various clock levels. Caller must |
| 1897 | * hold base->lock. |
Anna-Maria Behnsen | b5e6f59 | 2023-12-01 10:26:29 +0100 | [diff] [blame] | 1898 | * |
| 1899 | * Store next expiry time in base->next_expiry. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | */ |
Anna-Maria Behnsen | b5e6f59 | 2023-12-01 10:26:29 +0100 | [diff] [blame] | 1901 | static void next_expiry_recalc(struct timer_base *base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1903 | unsigned long clk, next, adj; |
| 1904 | unsigned lvl, offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1906 | next = base->clk + NEXT_TIMER_MAX_DELTA; |
| 1907 | clk = base->clk; |
| 1908 | for (lvl = 0; lvl < LVL_DEPTH; lvl++, offset += LVL_SIZE) { |
| 1909 | int pos = next_pending_bucket(base, offset, clk & LVL_MASK); |
Frederic Weisbecker | 001ec1b | 2020-07-17 16:05:45 +0200 | [diff] [blame] | 1910 | unsigned long lvl_clk = clk & LVL_CLK_MASK; |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1911 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1912 | if (pos >= 0) { |
| 1913 | unsigned long tmp = clk + (unsigned long) pos; |
| 1914 | |
| 1915 | tmp <<= LVL_SHIFT(lvl); |
| 1916 | if (time_before(tmp, next)) |
| 1917 | next = tmp; |
Frederic Weisbecker | 001ec1b | 2020-07-17 16:05:45 +0200 | [diff] [blame] | 1918 | |
| 1919 | /* |
| 1920 | * If the next expiration happens before we reach |
| 1921 | * the next level, no need to check further. |
| 1922 | */ |
| 1923 | if (pos <= ((LVL_CLK_DIV - lvl_clk) & LVL_CLK_MASK)) |
| 1924 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | } |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1926 | /* |
| 1927 | * Clock for the next level. If the current level clock lower |
| 1928 | * bits are zero, we look at the next level as is. If not we |
| 1929 | * need to advance it by one because that's going to be the |
| 1930 | * next expiring bucket in that level. base->clk is the next |
| 1931 | * expiring jiffie. So in case of: |
| 1932 | * |
| 1933 | * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0 |
| 1934 | * 0 0 0 0 0 0 |
| 1935 | * |
| 1936 | * we have to look at all levels @index 0. With |
| 1937 | * |
| 1938 | * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0 |
| 1939 | * 0 0 0 0 0 2 |
| 1940 | * |
| 1941 | * LVL0 has the next expiring bucket @index 2. The upper |
| 1942 | * levels have the next expiring bucket @index 1. |
| 1943 | * |
| 1944 | * In case that the propagation wraps the next level the same |
| 1945 | * rules apply: |
| 1946 | * |
| 1947 | * LVL5 LVL4 LVL3 LVL2 LVL1 LVL0 |
| 1948 | * 0 0 0 0 F 2 |
| 1949 | * |
| 1950 | * So after looking at LVL0 we get: |
| 1951 | * |
| 1952 | * LVL5 LVL4 LVL3 LVL2 LVL1 |
| 1953 | * 0 0 0 1 0 |
| 1954 | * |
| 1955 | * So no propagation from LVL1 to LVL2 because that happened |
| 1956 | * with the add already, but then we need to propagate further |
| 1957 | * from LVL2 to LVL3. |
| 1958 | * |
| 1959 | * So the simple check whether the lower bits of the current |
| 1960 | * level are 0 or not is sufficient for all cases. |
| 1961 | */ |
Frederic Weisbecker | 001ec1b | 2020-07-17 16:05:45 +0200 | [diff] [blame] | 1962 | adj = lvl_clk ? 1 : 0; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 1963 | clk >>= LVL_CLK_SHIFT; |
| 1964 | clk += adj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | } |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 1966 | |
Anna-Maria Behnsen | b5e6f59 | 2023-12-01 10:26:29 +0100 | [diff] [blame] | 1967 | base->next_expiry = next; |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 1968 | base->next_expiry_recalc = false; |
Nicolas Saenz Julienne | aebacb7 | 2021-07-09 16:13:25 +0200 | [diff] [blame] | 1969 | base->timers_pending = !(next == base->clk + NEXT_TIMER_MAX_DELTA); |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1970 | } |
| 1971 | |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 1972 | #ifdef CONFIG_NO_HZ_COMMON |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1973 | /* |
| 1974 | * Check, if the next hrtimer event is before the next timer wheel |
| 1975 | * event: |
| 1976 | */ |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1977 | static u64 cmp_next_hrtimer_event(u64 basem, u64 expires) |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1978 | { |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1979 | u64 nextevt = hrtimer_get_next_event(); |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1980 | |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1981 | /* |
| 1982 | * If high resolution timers are enabled |
| 1983 | * hrtimer_get_next_event() returns KTIME_MAX. |
| 1984 | */ |
| 1985 | if (expires <= nextevt) |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 1986 | return expires; |
| 1987 | |
Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1988 | /* |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1989 | * If the next timer is already expired, return the tick base |
| 1990 | * time so the tick is fired immediately. |
Thomas Gleixner | 9501b6c | 2007-03-25 14:31:17 +0200 | [diff] [blame] | 1991 | */ |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1992 | if (nextevt <= basem) |
| 1993 | return basem; |
Thomas Gleixner | eaad084 | 2007-05-29 23:47:39 +0200 | [diff] [blame] | 1994 | |
| 1995 | /* |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 1996 | * Round up to the next jiffie. High resolution timers are |
| 1997 | * off, so the hrtimers are expired in the tick and we need to |
| 1998 | * make sure that this tick really expires the timer to avoid |
| 1999 | * a ping pong of the nohz stop code. |
| 2000 | * |
| 2001 | * Use DIV_ROUND_UP_ULL to prevent gcc calling __divdi3 |
Thomas Gleixner | eaad084 | 2007-05-29 23:47:39 +0200 | [diff] [blame] | 2002 | */ |
Thomas Gleixner | c1ad348 | 2015-04-14 21:08:58 +0000 | [diff] [blame] | 2003 | return DIV_ROUND_UP_ULL(nextevt, TICK_NSEC) * TICK_NSEC; |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 2004 | } |
| 2005 | |
Anna-Maria Behnsen | 9f6a3c6 | 2024-02-21 10:05:37 +0100 | [diff] [blame] | 2006 | static unsigned long next_timer_interrupt(struct timer_base *base, |
| 2007 | unsigned long basej) |
| 2008 | { |
| 2009 | if (base->next_expiry_recalc) |
| 2010 | next_expiry_recalc(base); |
| 2011 | |
| 2012 | /* |
| 2013 | * Move next_expiry for the empty base into the future to prevent an |
| 2014 | * unnecessary raise of the timer softirq when the next_expiry value |
| 2015 | * will be reached even if there is no timer pending. |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2016 | * |
| 2017 | * This update is also required to make timer_base::next_expiry values |
| 2018 | * easy comparable to find out which base holds the first pending timer. |
Anna-Maria Behnsen | 9f6a3c6 | 2024-02-21 10:05:37 +0100 | [diff] [blame] | 2019 | */ |
| 2020 | if (!base->timers_pending) |
| 2021 | base->next_expiry = basej + NEXT_TIMER_MAX_DELTA; |
| 2022 | |
| 2023 | return base->next_expiry; |
| 2024 | } |
| 2025 | |
Anna-Maria Behnsen | 70b4cf8 | 2024-02-21 10:05:40 +0100 | [diff] [blame] | 2026 | static unsigned long fetch_next_timer_interrupt(unsigned long basej, u64 basem, |
| 2027 | struct timer_base *base_local, |
| 2028 | struct timer_base *base_global, |
| 2029 | struct timer_events *tevt) |
| 2030 | { |
| 2031 | unsigned long nextevt, nextevt_local, nextevt_global; |
| 2032 | bool local_first; |
| 2033 | |
| 2034 | nextevt_local = next_timer_interrupt(base_local, basej); |
| 2035 | nextevt_global = next_timer_interrupt(base_global, basej); |
| 2036 | |
| 2037 | local_first = time_before_eq(nextevt_local, nextevt_global); |
| 2038 | |
| 2039 | nextevt = local_first ? nextevt_local : nextevt_global; |
| 2040 | |
| 2041 | /* |
| 2042 | * If the @nextevt is at max. one tick away, use @nextevt and store |
| 2043 | * it in the local expiry value. The next global event is irrelevant in |
| 2044 | * this case and can be left as KTIME_MAX. |
| 2045 | */ |
| 2046 | if (time_before_eq(nextevt, basej + 1)) { |
| 2047 | /* If we missed a tick already, force 0 delta */ |
| 2048 | if (time_before(nextevt, basej)) |
| 2049 | nextevt = basej; |
| 2050 | tevt->local = basem + (u64)(nextevt - basej) * TICK_NSEC; |
Anna-Maria Behnsen | f73d925 | 2024-02-21 10:05:41 +0100 | [diff] [blame] | 2051 | |
| 2052 | /* |
| 2053 | * This is required for the remote check only but it doesn't |
| 2054 | * hurt, when it is done for both call sites: |
| 2055 | * |
| 2056 | * * The remote callers will only take care of the global timers |
| 2057 | * as local timers will be handled by CPU itself. When not |
| 2058 | * updating tevt->global with the already missed first global |
| 2059 | * timer, it is possible that it will be missed completely. |
| 2060 | * |
| 2061 | * * The local callers will ignore the tevt->global anyway, when |
| 2062 | * nextevt is max. one tick away. |
| 2063 | */ |
| 2064 | if (!local_first) |
| 2065 | tevt->global = tevt->local; |
Anna-Maria Behnsen | 70b4cf8 | 2024-02-21 10:05:40 +0100 | [diff] [blame] | 2066 | return nextevt; |
| 2067 | } |
| 2068 | |
| 2069 | /* |
| 2070 | * Update tevt.* values: |
| 2071 | * |
| 2072 | * If the local queue expires first, then the global event can be |
| 2073 | * ignored. If the global queue is empty, nothing to do either. |
| 2074 | */ |
| 2075 | if (!local_first && base_global->timers_pending) |
| 2076 | tevt->global = basem + (u64)(nextevt_global - basej) * TICK_NSEC; |
| 2077 | |
| 2078 | if (base_local->timers_pending) |
| 2079 | tevt->local = basem + (u64)(nextevt_local - basej) * TICK_NSEC; |
| 2080 | |
| 2081 | return nextevt; |
| 2082 | } |
| 2083 | |
Anna-Maria Behnsen | f73d925 | 2024-02-21 10:05:41 +0100 | [diff] [blame] | 2084 | # ifdef CONFIG_SMP |
| 2085 | /** |
| 2086 | * fetch_next_timer_interrupt_remote() - Store next timers into @tevt |
| 2087 | * @basej: base time jiffies |
| 2088 | * @basem: base time clock monotonic |
| 2089 | * @tevt: Pointer to the storage for the expiry values |
| 2090 | * @cpu: Remote CPU |
| 2091 | * |
| 2092 | * Stores the next pending local and global timer expiry values in the |
| 2093 | * struct pointed to by @tevt. If a queue is empty the corresponding |
| 2094 | * field is set to KTIME_MAX. If local event expires before global |
| 2095 | * event, global event is set to KTIME_MAX as well. |
| 2096 | * |
| 2097 | * Caller needs to make sure timer base locks are held (use |
| 2098 | * timer_lock_remote_bases() for this purpose). |
| 2099 | */ |
| 2100 | void fetch_next_timer_interrupt_remote(unsigned long basej, u64 basem, |
| 2101 | struct timer_events *tevt, |
| 2102 | unsigned int cpu) |
| 2103 | { |
| 2104 | struct timer_base *base_local, *base_global; |
| 2105 | |
| 2106 | /* Preset local / global events */ |
| 2107 | tevt->local = tevt->global = KTIME_MAX; |
| 2108 | |
| 2109 | base_local = per_cpu_ptr(&timer_bases[BASE_LOCAL], cpu); |
| 2110 | base_global = per_cpu_ptr(&timer_bases[BASE_GLOBAL], cpu); |
| 2111 | |
| 2112 | lockdep_assert_held(&base_local->lock); |
| 2113 | lockdep_assert_held(&base_global->lock); |
| 2114 | |
| 2115 | fetch_next_timer_interrupt(basej, basem, base_local, base_global, tevt); |
| 2116 | } |
| 2117 | |
| 2118 | /** |
| 2119 | * timer_unlock_remote_bases - unlock timer bases of cpu |
| 2120 | * @cpu: Remote CPU |
| 2121 | * |
| 2122 | * Unlocks the remote timer bases. |
| 2123 | */ |
| 2124 | void timer_unlock_remote_bases(unsigned int cpu) |
| 2125 | __releases(timer_bases[BASE_LOCAL]->lock) |
| 2126 | __releases(timer_bases[BASE_GLOBAL]->lock) |
| 2127 | { |
| 2128 | struct timer_base *base_local, *base_global; |
| 2129 | |
| 2130 | base_local = per_cpu_ptr(&timer_bases[BASE_LOCAL], cpu); |
| 2131 | base_global = per_cpu_ptr(&timer_bases[BASE_GLOBAL], cpu); |
| 2132 | |
| 2133 | raw_spin_unlock(&base_global->lock); |
| 2134 | raw_spin_unlock(&base_local->lock); |
| 2135 | } |
| 2136 | |
| 2137 | /** |
| 2138 | * timer_lock_remote_bases - lock timer bases of cpu |
| 2139 | * @cpu: Remote CPU |
| 2140 | * |
| 2141 | * Locks the remote timer bases. |
| 2142 | */ |
| 2143 | void timer_lock_remote_bases(unsigned int cpu) |
| 2144 | __acquires(timer_bases[BASE_LOCAL]->lock) |
| 2145 | __acquires(timer_bases[BASE_GLOBAL]->lock) |
| 2146 | { |
| 2147 | struct timer_base *base_local, *base_global; |
| 2148 | |
| 2149 | base_local = per_cpu_ptr(&timer_bases[BASE_LOCAL], cpu); |
| 2150 | base_global = per_cpu_ptr(&timer_bases[BASE_GLOBAL], cpu); |
| 2151 | |
| 2152 | lockdep_assert_irqs_disabled(); |
| 2153 | |
| 2154 | raw_spin_lock(&base_local->lock); |
| 2155 | raw_spin_lock_nested(&base_global->lock, SINGLE_DEPTH_NESTING); |
| 2156 | } |
Anna-Maria Behnsen | 57e95a5 | 2024-02-21 10:05:45 +0100 | [diff] [blame] | 2157 | |
| 2158 | /** |
| 2159 | * timer_base_is_idle() - Return whether timer base is set idle |
| 2160 | * |
| 2161 | * Returns value of local timer base is_idle value. |
| 2162 | */ |
| 2163 | bool timer_base_is_idle(void) |
| 2164 | { |
| 2165 | return __this_cpu_read(timer_bases[BASE_LOCAL].is_idle); |
| 2166 | } |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2167 | |
| 2168 | static void __run_timer_base(struct timer_base *base); |
| 2169 | |
| 2170 | /** |
| 2171 | * timer_expire_remote() - expire global timers of cpu |
| 2172 | * @cpu: Remote CPU |
| 2173 | * |
| 2174 | * Expire timers of global base of remote CPU. |
| 2175 | */ |
| 2176 | void timer_expire_remote(unsigned int cpu) |
| 2177 | { |
| 2178 | struct timer_base *base = per_cpu_ptr(&timer_bases[BASE_GLOBAL], cpu); |
| 2179 | |
| 2180 | __run_timer_base(base); |
| 2181 | } |
| 2182 | |
| 2183 | static void timer_use_tmigr(unsigned long basej, u64 basem, |
| 2184 | unsigned long *nextevt, bool *tick_stop_path, |
| 2185 | bool timer_base_idle, struct timer_events *tevt) |
| 2186 | { |
| 2187 | u64 next_tmigr; |
| 2188 | |
| 2189 | if (timer_base_idle) |
| 2190 | next_tmigr = tmigr_cpu_new_timer(tevt->global); |
| 2191 | else if (tick_stop_path) |
| 2192 | next_tmigr = tmigr_cpu_deactivate(tevt->global); |
| 2193 | else |
| 2194 | next_tmigr = tmigr_quick_check(tevt->global); |
| 2195 | |
| 2196 | /* |
| 2197 | * If the CPU is the last going idle in timer migration hierarchy, make |
| 2198 | * sure the CPU will wake up in time to handle remote timers. |
| 2199 | * next_tmigr == KTIME_MAX if other CPUs are still active. |
| 2200 | */ |
| 2201 | if (next_tmigr < tevt->local) { |
| 2202 | u64 tmp; |
| 2203 | |
| 2204 | /* If we missed a tick already, force 0 delta */ |
| 2205 | if (next_tmigr < basem) |
| 2206 | next_tmigr = basem; |
| 2207 | |
| 2208 | tmp = div_u64(next_tmigr - basem, TICK_NSEC); |
| 2209 | |
| 2210 | *nextevt = basej + (unsigned long)tmp; |
| 2211 | tevt->local = next_tmigr; |
| 2212 | } |
| 2213 | } |
| 2214 | # else |
| 2215 | static void timer_use_tmigr(unsigned long basej, u64 basem, |
| 2216 | unsigned long *nextevt, bool *tick_stop_path, |
| 2217 | bool timer_base_idle, struct timer_events *tevt) |
| 2218 | { |
| 2219 | /* |
| 2220 | * Make sure first event is written into tevt->local to not miss a |
| 2221 | * timer on !SMP systems. |
| 2222 | */ |
| 2223 | tevt->local = min_t(u64, tevt->local, tevt->global); |
| 2224 | } |
Anna-Maria Behnsen | f73d925 | 2024-02-21 10:05:41 +0100 | [diff] [blame] | 2225 | # endif /* CONFIG_SMP */ |
| 2226 | |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2227 | static inline u64 __get_next_timer_interrupt(unsigned long basej, u64 basem, |
| 2228 | bool *idle) |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 2229 | { |
Anna-Maria Behnsen | 21927fc | 2024-02-21 10:05:39 +0100 | [diff] [blame] | 2230 | struct timer_events tevt = { .local = KTIME_MAX, .global = KTIME_MAX }; |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2231 | struct timer_base *base_local, *base_global; |
Anna-Maria Behnsen | 70b4cf8 | 2024-02-21 10:05:40 +0100 | [diff] [blame] | 2232 | unsigned long nextevt; |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2233 | bool idle_is_possible; |
Thomas Gleixner | 1cfd684 | 2007-02-16 01:27:46 -0800 | [diff] [blame] | 2234 | |
Heiko Carstens | dbd87b5 | 2010-12-01 10:11:09 +0100 | [diff] [blame] | 2235 | /* |
Frederic Weisbecker | 19b344a | 2024-02-25 23:55:08 +0100 | [diff] [blame] | 2236 | * When the CPU is offline, the tick is cancelled and nothing is supposed |
| 2237 | * to try to stop it. |
Heiko Carstens | dbd87b5 | 2010-12-01 10:11:09 +0100 | [diff] [blame] | 2238 | */ |
Frederic Weisbecker | 19b344a | 2024-02-25 23:55:08 +0100 | [diff] [blame] | 2239 | if (WARN_ON_ONCE(cpu_is_offline(smp_processor_id()))) { |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2240 | if (idle) |
| 2241 | *idle = true; |
Anna-Maria Behnsen | 21927fc | 2024-02-21 10:05:39 +0100 | [diff] [blame] | 2242 | return tevt.local; |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2243 | } |
Thomas Gleixner | e40468a | 2012-05-25 22:08:59 +0000 | [diff] [blame] | 2244 | |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2245 | base_local = this_cpu_ptr(&timer_bases[BASE_LOCAL]); |
| 2246 | base_global = this_cpu_ptr(&timer_bases[BASE_GLOBAL]); |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 2247 | |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2248 | raw_spin_lock(&base_local->lock); |
| 2249 | raw_spin_lock_nested(&base_global->lock, SINGLE_DEPTH_NESTING); |
| 2250 | |
Anna-Maria Behnsen | 70b4cf8 | 2024-02-21 10:05:40 +0100 | [diff] [blame] | 2251 | nextevt = fetch_next_timer_interrupt(basej, basem, base_local, |
| 2252 | base_global, &tevt); |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2253 | |
Anna-Maria Behnsen | 21927fc | 2024-02-21 10:05:39 +0100 | [diff] [blame] | 2254 | /* |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2255 | * If the next event is only one jiffie ahead there is no need to call |
| 2256 | * timer migration hierarchy related functions. The value for the next |
| 2257 | * global timer in @tevt struct equals then KTIME_MAX. This is also |
| 2258 | * true, when the timer base is idle. |
| 2259 | * |
| 2260 | * The proper timer migration hierarchy function depends on the callsite |
| 2261 | * and whether timer base is idle or not. @nextevt will be updated when |
| 2262 | * this CPU needs to handle the first timer migration hierarchy |
| 2263 | * event. See timer_use_tmigr() for detailed information. |
| 2264 | */ |
| 2265 | idle_is_possible = time_after(nextevt, basej + 1); |
| 2266 | if (idle_is_possible) |
| 2267 | timer_use_tmigr(basej, basem, &nextevt, idle, |
| 2268 | base_local->is_idle, &tevt); |
| 2269 | |
| 2270 | /* |
Anna-Maria Behnsen | bebed66 | 2024-02-21 10:05:29 +0100 | [diff] [blame] | 2271 | * We have a fresh next event. Check whether we can forward the |
| 2272 | * base. |
| 2273 | */ |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2274 | __forward_timer_base(base_local, basej); |
| 2275 | __forward_timer_base(base_global, basej); |
Anna-Maria Behnsen | bebed66 | 2024-02-21 10:05:29 +0100 | [diff] [blame] | 2276 | |
| 2277 | /* |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2278 | * Set base->is_idle only when caller is timer_base_try_to_set_idle() |
Thomas Gleixner | bb8caad | 2023-12-01 10:26:33 +0100 | [diff] [blame] | 2279 | */ |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2280 | if (idle) { |
| 2281 | /* |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2282 | * Bases are idle if the next event is more than a tick |
| 2283 | * away. Caution: @nextevt could have changed by enqueueing a |
| 2284 | * global timer into timer migration hierarchy. Therefore a new |
| 2285 | * check is required here. |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2286 | * |
| 2287 | * If the base is marked idle then any timer add operation must |
| 2288 | * forward the base clk itself to keep granularity small. This |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2289 | * idle logic is only maintained for the BASE_LOCAL and |
| 2290 | * BASE_GLOBAL base, deferrable timers may still see large |
| 2291 | * granularity skew (by design). |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2292 | */ |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2293 | if (!base_local->is_idle && time_after(nextevt, basej + 1)) { |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 2294 | base_local->is_idle = true; |
Frederic Weisbecker | 0387703 | 2024-03-19 00:07:29 +0100 | [diff] [blame] | 2295 | /* |
| 2296 | * Global timers queued locally while running in a task |
| 2297 | * in nohz_full mode need a self-IPI to kick reprogramming |
| 2298 | * in IRQ tail. |
| 2299 | */ |
| 2300 | if (tick_nohz_full_cpu(base_local->cpu)) |
| 2301 | base_global->is_idle = true; |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2302 | trace_timer_base_idle(true, base_local->cpu); |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2303 | } |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2304 | *idle = base_local->is_idle; |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2305 | |
| 2306 | /* |
| 2307 | * When timer base is not set idle, undo the effect of |
Randy Dunlap | 9e643ab | 2024-03-31 10:26:52 -0700 | [diff] [blame] | 2308 | * tmigr_cpu_deactivate() to prevent inconsistent states - active |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2309 | * timer base but inactive timer migration hierarchy. |
| 2310 | * |
| 2311 | * When timer base was already marked idle, nothing will be |
| 2312 | * changed here. |
| 2313 | */ |
| 2314 | if (!base_local->is_idle && idle_is_possible) |
| 2315 | tmigr_cpu_activate(); |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2316 | } |
Thomas Gleixner | bb8caad | 2023-12-01 10:26:33 +0100 | [diff] [blame] | 2317 | |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2318 | raw_spin_unlock(&base_global->lock); |
| 2319 | raw_spin_unlock(&base_local->lock); |
Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 2320 | |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2321 | return cmp_next_hrtimer_event(basem, tevt.local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | } |
Anna-Maria Gleixner | 2369683 | 2016-07-04 09:50:34 +0000 | [diff] [blame] | 2323 | |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 2324 | /** |
Anna-Maria Behnsen | 39ed699 | 2024-02-21 10:05:30 +0100 | [diff] [blame] | 2325 | * get_next_timer_interrupt() - return the time (clock mono) of the next timer |
| 2326 | * @basej: base time jiffies |
| 2327 | * @basem: base time clock monotonic |
| 2328 | * |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2329 | * Returns the tick aligned clock monotonic time of the next pending timer or |
| 2330 | * KTIME_MAX if no timer is pending. If timer of global base was queued into |
| 2331 | * timer migration hierarchy, first global timer is not taken into account. If |
| 2332 | * it was the last CPU of timer migration hierarchy going idle, first global |
| 2333 | * event is taken into account. |
Anna-Maria Behnsen | 39ed699 | 2024-02-21 10:05:30 +0100 | [diff] [blame] | 2334 | */ |
| 2335 | u64 get_next_timer_interrupt(unsigned long basej, u64 basem) |
| 2336 | { |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2337 | return __get_next_timer_interrupt(basej, basem, NULL); |
| 2338 | } |
| 2339 | |
| 2340 | /** |
| 2341 | * timer_base_try_to_set_idle() - Try to set the idle state of the timer bases |
| 2342 | * @basej: base time jiffies |
| 2343 | * @basem: base time clock monotonic |
Anna-Maria Behnsen | 73129cf | 2024-02-21 10:05:32 +0100 | [diff] [blame] | 2344 | * @idle: pointer to store the value of timer_base->is_idle on return; |
| 2345 | * *idle contains the information whether tick was already stopped |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2346 | * |
Anna-Maria Behnsen | 73129cf | 2024-02-21 10:05:32 +0100 | [diff] [blame] | 2347 | * Returns the tick aligned clock monotonic time of the next pending timer or |
| 2348 | * KTIME_MAX if no timer is pending. When tick was already stopped KTIME_MAX is |
| 2349 | * returned as well. |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2350 | */ |
| 2351 | u64 timer_base_try_to_set_idle(unsigned long basej, u64 basem, bool *idle) |
| 2352 | { |
Anna-Maria Behnsen | 73129cf | 2024-02-21 10:05:32 +0100 | [diff] [blame] | 2353 | if (*idle) |
| 2354 | return KTIME_MAX; |
| 2355 | |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2356 | return __get_next_timer_interrupt(basej, basem, idle); |
Anna-Maria Behnsen | 39ed699 | 2024-02-21 10:05:30 +0100 | [diff] [blame] | 2357 | } |
| 2358 | |
| 2359 | /** |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 2360 | * timer_clear_idle - Clear the idle state of the timer base |
| 2361 | * |
| 2362 | * Called with interrupts disabled |
| 2363 | */ |
| 2364 | void timer_clear_idle(void) |
| 2365 | { |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 2366 | /* |
Anna-Maria Behnsen | b2cf750 | 2024-02-21 10:05:48 +0100 | [diff] [blame] | 2367 | * We do this unlocked. The worst outcome is a remote pinned timer |
| 2368 | * enqueue sending a pointless IPI, but taking the lock would just |
| 2369 | * make the window for sending the IPI a few instructions smaller |
| 2370 | * for the cost of taking the lock in the exit from idle |
| 2371 | * path. Required for BASE_LOCAL only. |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 2372 | */ |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2373 | __this_cpu_write(timer_bases[BASE_LOCAL].is_idle, false); |
Frederic Weisbecker | 0387703 | 2024-03-19 00:07:29 +0100 | [diff] [blame] | 2374 | if (tick_nohz_full_cpu(smp_processor_id())) |
| 2375 | __this_cpu_write(timer_bases[BASE_GLOBAL].is_idle, false); |
Anna-Maria Behnsen | e2e1d72 | 2024-02-21 10:05:31 +0100 | [diff] [blame] | 2376 | trace_timer_base_idle(false, smp_processor_id()); |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2377 | |
| 2378 | /* Activate without holding the timer_base->lock */ |
| 2379 | tmigr_cpu_activate(); |
Thomas Gleixner | a683f39 | 2016-07-04 09:50:36 +0000 | [diff] [blame] | 2380 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | #endif |
| 2382 | |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2383 | /** |
| 2384 | * __run_timers - run all expired timers (if any) on this CPU. |
| 2385 | * @base: the timer vector to be processed. |
| 2386 | */ |
| 2387 | static inline void __run_timers(struct timer_base *base) |
| 2388 | { |
| 2389 | struct hlist_head heads[LVL_DEPTH]; |
| 2390 | int levels; |
| 2391 | |
Richard Cochran (linutronix GmbH) | 90f5df6 | 2024-02-21 10:05:42 +0100 | [diff] [blame] | 2392 | lockdep_assert_held(&base->lock); |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2393 | |
Anna-Maria Behnsen | 89f01e1 | 2024-02-21 10:05:43 +0100 | [diff] [blame] | 2394 | if (base->running_timer) |
| 2395 | return; |
| 2396 | |
Frederic Weisbecker | d4f7dae | 2020-07-17 16:05:49 +0200 | [diff] [blame] | 2397 | while (time_after_eq(jiffies, base->clk) && |
| 2398 | time_after_eq(jiffies, base->next_expiry)) { |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2399 | levels = collect_expired_timers(base, heads); |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 2400 | /* |
Anna-Maria Behnsen | c54bc0f | 2022-04-05 21:17:32 +0200 | [diff] [blame] | 2401 | * The two possible reasons for not finding any expired |
| 2402 | * timer at this clk are that all matching timers have been |
| 2403 | * dequeued or no timer has been queued since |
| 2404 | * base::next_expiry was set to base::clk + |
| 2405 | * NEXT_TIMER_MAX_DELTA. |
Frederic Weisbecker | 31cd0e1 | 2020-07-23 17:16:41 +0200 | [diff] [blame] | 2406 | */ |
Anna-Maria Behnsen | c54bc0f | 2022-04-05 21:17:32 +0200 | [diff] [blame] | 2407 | WARN_ON_ONCE(!levels && !base->next_expiry_recalc |
| 2408 | && base->timers_pending); |
Anna-Maria Behnsen | 8a2c9c7e | 2023-12-01 10:26:30 +0100 | [diff] [blame] | 2409 | /* |
| 2410 | * While executing timers, base->clk is set 1 offset ahead of |
| 2411 | * jiffies to avoid endless requeuing to current jiffies. |
| 2412 | */ |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2413 | base->clk++; |
Anna-Maria Behnsen | b5e6f59 | 2023-12-01 10:26:29 +0100 | [diff] [blame] | 2414 | next_expiry_recalc(base); |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2415 | |
| 2416 | while (levels--) |
| 2417 | expire_timers(base, heads + levels); |
| 2418 | } |
Richard Cochran (linutronix GmbH) | 90f5df6 | 2024-02-21 10:05:42 +0100 | [diff] [blame] | 2419 | } |
| 2420 | |
| 2421 | static void __run_timer_base(struct timer_base *base) |
| 2422 | { |
| 2423 | if (time_before(jiffies, base->next_expiry)) |
| 2424 | return; |
| 2425 | |
| 2426 | timer_base_lock_expiry(base); |
| 2427 | raw_spin_lock_irq(&base->lock); |
| 2428 | __run_timers(base); |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 2429 | raw_spin_unlock_irq(&base->lock); |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 2430 | timer_base_unlock_expiry(base); |
Anna-Maria Gleixner | 73420fe | 2016-07-04 09:50:33 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
Richard Cochran (linutronix GmbH) | 90f5df6 | 2024-02-21 10:05:42 +0100 | [diff] [blame] | 2433 | static void run_timer_base(int index) |
| 2434 | { |
| 2435 | struct timer_base *base = this_cpu_ptr(&timer_bases[index]); |
| 2436 | |
| 2437 | __run_timer_base(base); |
| 2438 | } |
| 2439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | * This function runs timers and the timer-tq in bottom half context. |
| 2442 | */ |
Emese Revfy | 0766f78 | 2016-06-20 20:42:34 +0200 | [diff] [blame] | 2443 | static __latent_entropy void run_timer_softirq(struct softirq_action *h) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | { |
Richard Cochran (linutronix GmbH) | 90f5df6 | 2024-02-21 10:05:42 +0100 | [diff] [blame] | 2445 | run_timer_base(BASE_LOCAL); |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2446 | if (IS_ENABLED(CONFIG_NO_HZ_COMMON)) { |
Richard Cochran (linutronix GmbH) | 90f5df6 | 2024-02-21 10:05:42 +0100 | [diff] [blame] | 2447 | run_timer_base(BASE_GLOBAL); |
| 2448 | run_timer_base(BASE_DEF); |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2449 | |
| 2450 | if (is_timers_nohz_active()) |
| 2451 | tmigr_handle_remote(); |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2452 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | } |
| 2454 | |
| 2455 | /* |
| 2456 | * Called by the local, per-CPU timer interrupt on SMP. |
| 2457 | */ |
Thomas Gleixner | cc947f2 | 2020-11-16 10:53:38 +0100 | [diff] [blame] | 2458 | static void run_local_timers(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | { |
Anna-Maria Behnsen | 83a665d | 2024-02-21 10:05:38 +0100 | [diff] [blame] | 2460 | struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_LOCAL]); |
Thomas Gleixner | 4e85876 | 2016-07-04 09:50:37 +0000 | [diff] [blame] | 2461 | |
Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 2462 | hrtimer_run_queues(); |
Anna-Maria Behnsen | af68cb3 | 2024-02-21 10:05:36 +0100 | [diff] [blame] | 2463 | |
| 2464 | for (int i = 0; i < NR_BASES; i++, base++) { |
| 2465 | /* Raise the softirq only if required. */ |
Anna-Maria Behnsen | 7ee9887 | 2024-02-22 11:37:10 +0100 | [diff] [blame] | 2466 | if (time_after_eq(jiffies, base->next_expiry) || |
| 2467 | (i == BASE_DEF && tmigr_requires_handle_remote())) { |
Anna-Maria Behnsen | af68cb3 | 2024-02-21 10:05:36 +0100 | [diff] [blame] | 2468 | raise_softirq(TIMER_SOFTIRQ); |
Thomas Gleixner | 4e85876 | 2016-07-04 09:50:37 +0000 | [diff] [blame] | 2469 | return; |
Anna-Maria Behnsen | af68cb3 | 2024-02-21 10:05:36 +0100 | [diff] [blame] | 2470 | } |
Thomas Gleixner | 4e85876 | 2016-07-04 09:50:37 +0000 | [diff] [blame] | 2471 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } |
| 2473 | |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2474 | /* |
Thomas Gleixner | cc947f2 | 2020-11-16 10:53:38 +0100 | [diff] [blame] | 2475 | * Called from the timer interrupt handler to charge one tick to the current |
| 2476 | * process. user_tick is 1 if the tick is user time, 0 for system. |
| 2477 | */ |
| 2478 | void update_process_times(int user_tick) |
| 2479 | { |
| 2480 | struct task_struct *p = current; |
| 2481 | |
Thomas Gleixner | cc947f2 | 2020-11-16 10:53:38 +0100 | [diff] [blame] | 2482 | /* Note: this timer irq context must be accounted for as well. */ |
| 2483 | account_process_tick(p, user_tick); |
| 2484 | run_local_timers(); |
| 2485 | rcu_sched_clock_irq(user_tick); |
| 2486 | #ifdef CONFIG_IRQ_WORK |
| 2487 | if (in_irq()) |
| 2488 | irq_work_tick(); |
| 2489 | #endif |
Ingo Molnar | 86dd6c0 | 2024-03-08 12:18:08 +0100 | [diff] [blame] | 2490 | sched_tick(); |
Thomas Gleixner | cc947f2 | 2020-11-16 10:53:38 +0100 | [diff] [blame] | 2491 | if (IS_ENABLED(CONFIG_POSIX_TIMERS)) |
| 2492 | run_posix_cpu_timers(); |
| 2493 | } |
| 2494 | |
| 2495 | /* |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2496 | * Since schedule_timeout()'s timer is defined on the stack, it must store |
| 2497 | * the target task on the stack as well. |
| 2498 | */ |
| 2499 | struct process_timer { |
| 2500 | struct timer_list timer; |
| 2501 | struct task_struct *task; |
| 2502 | }; |
| 2503 | |
| 2504 | static void process_timeout(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | { |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2506 | struct process_timer *timeout = from_timer(timeout, t, timer); |
| 2507 | |
| 2508 | wake_up_process(timeout->task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2509 | } |
| 2510 | |
| 2511 | /** |
| 2512 | * schedule_timeout - sleep until timeout |
| 2513 | * @timeout: timeout value in jiffies |
| 2514 | * |
Alexander Popov | 6e317c3 | 2020-01-18 01:59:00 +0300 | [diff] [blame] | 2515 | * Make the current task sleep until @timeout jiffies have elapsed. |
| 2516 | * The function behavior depends on the current task state |
| 2517 | * (see also set_current_state() description): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | * |
Alexander Popov | 6e317c3 | 2020-01-18 01:59:00 +0300 | [diff] [blame] | 2519 | * %TASK_RUNNING - the scheduler is called, but the task does not sleep |
| 2520 | * at all. That happens because sched_submit_work() does nothing for |
| 2521 | * tasks in %TASK_RUNNING state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | * |
| 2523 | * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to |
Douglas Anderson | 4b7e9cf | 2016-10-21 08:58:51 -0700 | [diff] [blame] | 2524 | * pass before the routine returns unless the current task is explicitly |
Alexander Popov | 6e317c3 | 2020-01-18 01:59:00 +0300 | [diff] [blame] | 2525 | * woken up, (e.g. by wake_up_process()). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | * |
| 2527 | * %TASK_INTERRUPTIBLE - the routine may return early if a signal is |
Douglas Anderson | 4b7e9cf | 2016-10-21 08:58:51 -0700 | [diff] [blame] | 2528 | * delivered to the current task or the current task is explicitly woken |
| 2529 | * up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | * |
Alexander Popov | 6e317c3 | 2020-01-18 01:59:00 +0300 | [diff] [blame] | 2531 | * The current task state is guaranteed to be %TASK_RUNNING when this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | * routine returns. |
| 2533 | * |
| 2534 | * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule |
| 2535 | * the CPU away without a bound on the timeout. In this case the return |
| 2536 | * value will be %MAX_SCHEDULE_TIMEOUT. |
| 2537 | * |
Douglas Anderson | 4b7e9cf | 2016-10-21 08:58:51 -0700 | [diff] [blame] | 2538 | * Returns 0 when the timer has expired otherwise the remaining time in |
Alexander Popov | 6e317c3 | 2020-01-18 01:59:00 +0300 | [diff] [blame] | 2539 | * jiffies will be returned. In all cases the return value is guaranteed |
Douglas Anderson | 4b7e9cf | 2016-10-21 08:58:51 -0700 | [diff] [blame] | 2540 | * to be non-negative. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2542 | signed long __sched schedule_timeout(signed long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | { |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2544 | struct process_timer timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | unsigned long expire; |
| 2546 | |
| 2547 | switch (timeout) |
| 2548 | { |
| 2549 | case MAX_SCHEDULE_TIMEOUT: |
| 2550 | /* |
| 2551 | * These two special cases are useful to be comfortable |
| 2552 | * in the caller. Nothing more. We could take |
| 2553 | * MAX_SCHEDULE_TIMEOUT from one of the negative value |
| 2554 | * but I' d like to return a valid offset (>=0) to allow |
| 2555 | * the caller to do everything it want with the retval. |
| 2556 | */ |
| 2557 | schedule(); |
| 2558 | goto out; |
| 2559 | default: |
| 2560 | /* |
| 2561 | * Another bit of PARANOID. Note that the retval will be |
| 2562 | * 0 since no piece of kernel is supposed to do a check |
| 2563 | * for a negative retval of schedule_timeout() (since it |
| 2564 | * should never happens anyway). You just have the printk() |
| 2565 | * that will tell you if something is gone wrong and where. |
| 2566 | */ |
Andrew Morton | 5b149bc | 2006-12-22 01:10:14 -0800 | [diff] [blame] | 2567 | if (timeout < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | printk(KERN_ERR "schedule_timeout: wrong timeout " |
Andrew Morton | 5b149bc | 2006-12-22 01:10:14 -0800 | [diff] [blame] | 2569 | "value %lx\n", timeout); |
| 2570 | dump_stack(); |
Peter Zijlstra | 600642a | 2021-06-11 10:28:15 +0200 | [diff] [blame] | 2571 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | goto out; |
| 2573 | } |
| 2574 | } |
| 2575 | |
| 2576 | expire = timeout + jiffies; |
| 2577 | |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2578 | timer.task = current; |
| 2579 | timer_setup_on_stack(&timer.timer, process_timeout, 0); |
Eric Dumazet | 90c0189 | 2019-11-07 11:37:38 -0800 | [diff] [blame] | 2580 | __mod_timer(&timer.timer, expire, MOD_TIMER_NOTPENDING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | schedule(); |
Thomas Gleixner | 9a5a305 | 2022-11-23 21:18:37 +0100 | [diff] [blame] | 2582 | del_timer_sync(&timer.timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 2584 | /* Remove the timer from the object tracker */ |
Kees Cook | 58e1177 | 2017-10-04 16:26:55 -0700 | [diff] [blame] | 2585 | destroy_timer_on_stack(&timer.timer); |
Thomas Gleixner | c6f3a97 | 2008-04-30 00:55:03 -0700 | [diff] [blame] | 2586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2587 | timeout = expire - jiffies; |
| 2588 | |
| 2589 | out: |
| 2590 | return timeout < 0 ? 0 : timeout; |
| 2591 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | EXPORT_SYMBOL(schedule_timeout); |
| 2593 | |
Andrew Morton | 8a1c175 | 2005-09-13 01:25:15 -0700 | [diff] [blame] | 2594 | /* |
| 2595 | * We can use __set_current_state() here because schedule_timeout() calls |
| 2596 | * schedule() unconditionally. |
| 2597 | */ |
Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 2598 | signed long __sched schedule_timeout_interruptible(signed long timeout) |
| 2599 | { |
Andrew Morton | a5a0d52 | 2005-10-30 15:01:42 -0800 | [diff] [blame] | 2600 | __set_current_state(TASK_INTERRUPTIBLE); |
| 2601 | return schedule_timeout(timeout); |
Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 2602 | } |
| 2603 | EXPORT_SYMBOL(schedule_timeout_interruptible); |
| 2604 | |
Matthew Wilcox | 294d5cc | 2007-12-06 11:59:46 -0500 | [diff] [blame] | 2605 | signed long __sched schedule_timeout_killable(signed long timeout) |
| 2606 | { |
| 2607 | __set_current_state(TASK_KILLABLE); |
| 2608 | return schedule_timeout(timeout); |
| 2609 | } |
| 2610 | EXPORT_SYMBOL(schedule_timeout_killable); |
| 2611 | |
Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 2612 | signed long __sched schedule_timeout_uninterruptible(signed long timeout) |
| 2613 | { |
Andrew Morton | a5a0d52 | 2005-10-30 15:01:42 -0800 | [diff] [blame] | 2614 | __set_current_state(TASK_UNINTERRUPTIBLE); |
| 2615 | return schedule_timeout(timeout); |
Nishanth Aravamudan | 64ed93a | 2005-09-10 00:27:21 -0700 | [diff] [blame] | 2616 | } |
| 2617 | EXPORT_SYMBOL(schedule_timeout_uninterruptible); |
| 2618 | |
Andrew Morton | 69b27ba | 2016-03-25 14:20:21 -0700 | [diff] [blame] | 2619 | /* |
| 2620 | * Like schedule_timeout_uninterruptible(), except this task will not contribute |
| 2621 | * to load average. |
| 2622 | */ |
| 2623 | signed long __sched schedule_timeout_idle(signed long timeout) |
| 2624 | { |
| 2625 | __set_current_state(TASK_IDLE); |
| 2626 | return schedule_timeout(timeout); |
| 2627 | } |
| 2628 | EXPORT_SYMBOL(schedule_timeout_idle); |
| 2629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | #ifdef CONFIG_HOTPLUG_CPU |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 2631 | static void migrate_timer_list(struct timer_base *new_base, struct hlist_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | { |
| 2633 | struct timer_list *timer; |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 2634 | int cpu = new_base->cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | |
Thomas Gleixner | 1dabbce | 2015-05-26 22:50:28 +0000 | [diff] [blame] | 2636 | while (!hlist_empty(head)) { |
| 2637 | timer = hlist_entry(head->first, struct timer_list, entry); |
Thomas Gleixner | ec44bc7 | 2012-05-25 22:08:57 +0000 | [diff] [blame] | 2638 | detach_timer(timer, false); |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 2639 | timer->flags = (timer->flags & ~TIMER_BASEMASK) | cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | internal_add_timer(new_base, timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | } |
| 2643 | |
Thomas Gleixner | 26456f8 | 2017-12-27 21:37:25 +0100 | [diff] [blame] | 2644 | int timers_prepare_cpu(unsigned int cpu) |
| 2645 | { |
| 2646 | struct timer_base *base; |
| 2647 | int b; |
| 2648 | |
| 2649 | for (b = 0; b < NR_BASES; b++) { |
| 2650 | base = per_cpu_ptr(&timer_bases[b], cpu); |
| 2651 | base->clk = jiffies; |
| 2652 | base->next_expiry = base->clk + NEXT_TIMER_MAX_DELTA; |
Anna-Maria Behnsen | 2731aa7 | 2022-04-05 21:17:31 +0200 | [diff] [blame] | 2653 | base->next_expiry_recalc = false; |
Nicolas Saenz Julienne | aebacb7 | 2021-07-09 16:13:25 +0200 | [diff] [blame] | 2654 | base->timers_pending = false; |
Thomas Gleixner | 26456f8 | 2017-12-27 21:37:25 +0100 | [diff] [blame] | 2655 | base->is_idle = false; |
Thomas Gleixner | 26456f8 | 2017-12-27 21:37:25 +0100 | [diff] [blame] | 2656 | } |
| 2657 | return 0; |
| 2658 | } |
| 2659 | |
Richard Cochran | 24f73b9 | 2016-07-13 17:16:59 +0000 | [diff] [blame] | 2660 | int timers_dead_cpu(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2661 | { |
Thomas Gleixner | 494af3e | 2016-07-04 09:50:28 +0000 | [diff] [blame] | 2662 | struct timer_base *old_base; |
| 2663 | struct timer_base *new_base; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2664 | int b, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2666 | for (b = 0; b < NR_BASES; b++) { |
| 2667 | old_base = per_cpu_ptr(&timer_bases[b], cpu); |
| 2668 | new_base = get_cpu_ptr(&timer_bases[b]); |
| 2669 | /* |
| 2670 | * The caller is globally serialized and nobody else |
| 2671 | * takes two locks at once, deadlock is not possible. |
| 2672 | */ |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 2673 | raw_spin_lock_irq(&new_base->lock); |
| 2674 | raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING); |
Oleg Nesterov | 3691c51 | 2006-03-31 02:30:30 -0800 | [diff] [blame] | 2675 | |
Lingutla Chandrasekhar | c52232a | 2018-01-18 17:20:22 +0530 | [diff] [blame] | 2676 | /* |
| 2677 | * The current CPUs base clock might be stale. Update it |
| 2678 | * before moving the timers over. |
| 2679 | */ |
| 2680 | forward_timer_base(new_base); |
| 2681 | |
Thomas Gleixner | 82ed6f7 | 2022-11-23 21:18:39 +0100 | [diff] [blame] | 2682 | WARN_ON_ONCE(old_base->running_timer); |
| 2683 | old_base->running_timer = NULL; |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2684 | |
| 2685 | for (i = 0; i < WHEEL_SIZE; i++) |
| 2686 | migrate_timer_list(new_base, old_base->vectors + i); |
| 2687 | |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 2688 | raw_spin_unlock(&old_base->lock); |
| 2689 | raw_spin_unlock_irq(&new_base->lock); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2690 | put_cpu_ptr(&timer_bases); |
Oleg Nesterov | 55c888d | 2005-06-23 00:08:56 -0700 | [diff] [blame] | 2691 | } |
Richard Cochran | 24f73b9 | 2016-07-13 17:16:59 +0000 | [diff] [blame] | 2692 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | |
Peter Zijlstra | 3650b57 | 2015-03-31 20:49:02 +0530 | [diff] [blame] | 2695 | #endif /* CONFIG_HOTPLUG_CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 2697 | static void __init init_timer_cpu(int cpu) |
Viresh Kumar | 8def906 | 2015-03-31 20:49:01 +0530 | [diff] [blame] | 2698 | { |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2699 | struct timer_base *base; |
| 2700 | int i; |
Peter Zijlstra | 3650b57 | 2015-03-31 20:49:02 +0530 | [diff] [blame] | 2701 | |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2702 | for (i = 0; i < NR_BASES; i++) { |
| 2703 | base = per_cpu_ptr(&timer_bases[i], cpu); |
| 2704 | base->cpu = cpu; |
Sebastian Andrzej Siewior | 2287d86 | 2017-06-27 18:15:38 +0200 | [diff] [blame] | 2705 | raw_spin_lock_init(&base->lock); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2706 | base->clk = jiffies; |
Frederic Weisbecker | dc2a0f1 | 2020-07-17 16:05:46 +0200 | [diff] [blame] | 2707 | base->next_expiry = base->clk + NEXT_TIMER_MAX_DELTA; |
Anna-Maria Gleixner | 030dcdd | 2019-07-26 20:31:00 +0200 | [diff] [blame] | 2708 | timer_base_init_expiry_lock(base); |
Thomas Gleixner | 500462a | 2016-07-04 09:50:30 +0000 | [diff] [blame] | 2709 | } |
Viresh Kumar | 8def906 | 2015-03-31 20:49:01 +0530 | [diff] [blame] | 2710 | } |
| 2711 | |
| 2712 | static void __init init_timer_cpus(void) |
| 2713 | { |
Viresh Kumar | 8def906 | 2015-03-31 20:49:01 +0530 | [diff] [blame] | 2714 | int cpu; |
| 2715 | |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 2716 | for_each_possible_cpu(cpu) |
| 2717 | init_timer_cpu(cpu); |
Viresh Kumar | 8def906 | 2015-03-31 20:49:01 +0530 | [diff] [blame] | 2718 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | |
| 2720 | void __init init_timers(void) |
| 2721 | { |
Viresh Kumar | 8def906 | 2015-03-31 20:49:01 +0530 | [diff] [blame] | 2722 | init_timer_cpus(); |
Thomas Gleixner | 1fb497d | 2020-07-30 12:14:06 +0200 | [diff] [blame] | 2723 | posix_cputimers_init_work(); |
Carlos R. Mafra | 962cf36 | 2008-05-15 11:15:37 -0300 | [diff] [blame] | 2724 | open_softirq(TIMER_SOFTIRQ, run_timer_softirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | } |
| 2726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | /** |
| 2728 | * msleep - sleep safely even with waitqueue interruptions |
| 2729 | * @msecs: Time in milliseconds to sleep for |
| 2730 | */ |
| 2731 | void msleep(unsigned int msecs) |
| 2732 | { |
| 2733 | unsigned long timeout = msecs_to_jiffies(msecs) + 1; |
| 2734 | |
Nishanth Aravamudan | 75bcc8c | 2005-09-10 00:27:24 -0700 | [diff] [blame] | 2735 | while (timeout) |
| 2736 | timeout = schedule_timeout_uninterruptible(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | } |
| 2738 | |
| 2739 | EXPORT_SYMBOL(msleep); |
| 2740 | |
| 2741 | /** |
Domen Puncer | 96ec3ef | 2005-06-25 14:58:43 -0700 | [diff] [blame] | 2742 | * msleep_interruptible - sleep waiting for signals |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | * @msecs: Time in milliseconds to sleep for |
| 2744 | */ |
| 2745 | unsigned long msleep_interruptible(unsigned int msecs) |
| 2746 | { |
| 2747 | unsigned long timeout = msecs_to_jiffies(msecs) + 1; |
| 2748 | |
Nishanth Aravamudan | 75bcc8c | 2005-09-10 00:27:24 -0700 | [diff] [blame] | 2749 | while (timeout && !signal_pending(current)) |
| 2750 | timeout = schedule_timeout_interruptible(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | return jiffies_to_msecs(timeout); |
| 2752 | } |
| 2753 | |
| 2754 | EXPORT_SYMBOL(msleep_interruptible); |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 2755 | |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 2756 | /** |
SeongJae Park | e477901 | 2021-12-10 14:46:22 -0800 | [diff] [blame] | 2757 | * usleep_range_state - Sleep for an approximate time in a given state |
| 2758 | * @min: Minimum time in usecs to sleep |
| 2759 | * @max: Maximum time in usecs to sleep |
| 2760 | * @state: State of the current task that will be while sleeping |
Bjorn Helgaas | b5227d0 | 2016-05-31 16:23:02 -0500 | [diff] [blame] | 2761 | * |
| 2762 | * In non-atomic context where the exact wakeup time is flexible, use |
SeongJae Park | e477901 | 2021-12-10 14:46:22 -0800 | [diff] [blame] | 2763 | * usleep_range_state() instead of udelay(). The sleep improves responsiveness |
Bjorn Helgaas | b5227d0 | 2016-05-31 16:23:02 -0500 | [diff] [blame] | 2764 | * by avoiding the CPU-hogging busy-wait of udelay(), and the range reduces |
| 2765 | * power usage by allowing hrtimers to take advantage of an already- |
| 2766 | * scheduled interrupt instead of scheduling a new one just for this sleep. |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 2767 | */ |
SeongJae Park | e477901 | 2021-12-10 14:46:22 -0800 | [diff] [blame] | 2768 | void __sched usleep_range_state(unsigned long min, unsigned long max, |
| 2769 | unsigned int state) |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 2770 | { |
Douglas Anderson | 6c5e905 | 2016-10-21 08:58:50 -0700 | [diff] [blame] | 2771 | ktime_t exp = ktime_add_us(ktime_get(), min); |
| 2772 | u64 delta = (u64)(max - min) * NSEC_PER_USEC; |
| 2773 | |
| 2774 | for (;;) { |
SeongJae Park | e477901 | 2021-12-10 14:46:22 -0800 | [diff] [blame] | 2775 | __set_current_state(state); |
Douglas Anderson | 6c5e905 | 2016-10-21 08:58:50 -0700 | [diff] [blame] | 2776 | /* Do not return before the requested sleep time has elapsed */ |
| 2777 | if (!schedule_hrtimeout_range(&exp, delta, HRTIMER_MODE_ABS)) |
| 2778 | break; |
| 2779 | } |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 2780 | } |
SeongJae Park | e477901 | 2021-12-10 14:46:22 -0800 | [diff] [blame] | 2781 | EXPORT_SYMBOL(usleep_range_state); |