blob: cf0e886314f2e5ffa8f06a8edf5824d9dd867590 [file] [log] [blame]
Paul E. McKenneye7ee1502019-01-17 10:18:16 -08001// SPDX-License-Identifier: GPL-2.0+
Paul E. McKenneydad81a22017-03-25 17:23:44 -07002/*
3 * Sleepable Read-Copy Update mechanism for mutual exclusion.
4 *
Paul E. McKenneydad81a22017-03-25 17:23:44 -07005 * Copyright (C) IBM Corporation, 2006
6 * Copyright (C) Fujitsu, 2012
7 *
Paul E. McKenneye7ee1502019-01-17 10:18:16 -08008 * Author: Paul McKenney <paulmck@linux.ibm.com>
Paul E. McKenneydad81a22017-03-25 17:23:44 -07009 * Lai Jiangshan <laijs@cn.fujitsu.com>
10 *
11 * For detailed explanation of Read-Copy Update mechanism see -
12 * Documentation/RCU/ *.txt
13 *
14 */
15
Joe Perchesa7538352018-05-14 13:27:33 -070016#define pr_fmt(fmt) "rcu: " fmt
17
Paul E. McKenneydad81a22017-03-25 17:23:44 -070018#include <linux/export.h>
19#include <linux/mutex.h>
20#include <linux/percpu.h>
21#include <linux/preempt.h>
22#include <linux/rcupdate_wait.h>
23#include <linux/sched.h>
24#include <linux/smp.h>
25#include <linux/delay.h>
Paul E. McKenney22607d62017-04-25 14:03:11 -070026#include <linux/module.h>
Paul E. McKenneydad81a22017-03-25 17:23:44 -070027#include <linux/srcu.h>
28
Paul E. McKenneydad81a22017-03-25 17:23:44 -070029#include "rcu.h"
Ingo Molnar45753c52017-05-02 10:31:18 +020030#include "rcu_segcblist.h"
Paul E. McKenneydad81a22017-03-25 17:23:44 -070031
Paul E. McKenney0c8e0e32017-04-28 11:24:22 -070032/* Holdoff in nanoseconds for auto-expediting. */
33#define DEFAULT_SRCU_EXP_HOLDOFF (25 * 1000)
34static ulong exp_holdoff = DEFAULT_SRCU_EXP_HOLDOFF;
Paul E. McKenney22607d62017-04-25 14:03:11 -070035module_param(exp_holdoff, ulong, 0444);
36
Paul E. McKenneyc350c002017-05-03 15:35:32 -070037/* Overflow-check frequency. N bits roughly says every 2**N grace periods. */
38static ulong counter_wrap_check = (ULONG_MAX >> 2);
39module_param(counter_wrap_check, ulong, 0444);
40
Paul E. McKenneye0fcba92018-08-14 08:45:54 -070041/* Early-boot callback-management, so early that no lock is required! */
42static LIST_HEAD(srcu_boot_list);
43static bool __read_mostly srcu_init_done;
44
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070045static void srcu_invoke_callbacks(struct work_struct *work);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070046static void srcu_reschedule(struct srcu_struct *ssp, unsigned long delay);
Paul E. McKenney0d8a1e82017-06-15 17:06:38 -070047static void process_srcu(struct work_struct *work);
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +010048static void srcu_delay_timer(struct timer_list *t);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070049
Paul E. McKenneyd6331982017-10-10 13:52:30 -070050/* Wrappers for lock acquisition and release, see raw_spin_lock_rcu_node(). */
51#define spin_lock_rcu_node(p) \
52do { \
53 spin_lock(&ACCESS_PRIVATE(p, lock)); \
54 smp_mb__after_unlock_lock(); \
55} while (0)
56
57#define spin_unlock_rcu_node(p) spin_unlock(&ACCESS_PRIVATE(p, lock))
58
59#define spin_lock_irq_rcu_node(p) \
60do { \
61 spin_lock_irq(&ACCESS_PRIVATE(p, lock)); \
62 smp_mb__after_unlock_lock(); \
63} while (0)
64
65#define spin_unlock_irq_rcu_node(p) \
66 spin_unlock_irq(&ACCESS_PRIVATE(p, lock))
67
68#define spin_lock_irqsave_rcu_node(p, flags) \
69do { \
70 spin_lock_irqsave(&ACCESS_PRIVATE(p, lock), flags); \
71 smp_mb__after_unlock_lock(); \
72} while (0)
73
74#define spin_unlock_irqrestore_rcu_node(p, flags) \
75 spin_unlock_irqrestore(&ACCESS_PRIVATE(p, lock), flags) \
76
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070077/*
78 * Initialize SRCU combining tree. Note that statically allocated
79 * srcu_struct structures might already have srcu_read_lock() and
80 * srcu_read_unlock() running against them. So if the is_static parameter
81 * is set, don't initialize ->srcu_lock_count[] and ->srcu_unlock_count[].
82 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070083static void init_srcu_struct_nodes(struct srcu_struct *ssp, bool is_static)
Paul E. McKenneydad81a22017-03-25 17:23:44 -070084{
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070085 int cpu;
86 int i;
87 int level = 0;
88 int levelspread[RCU_NUM_LVLS];
89 struct srcu_data *sdp;
90 struct srcu_node *snp;
91 struct srcu_node *snp_first;
92
93 /* Work out the overall tree geometry. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070094 ssp->level[0] = &ssp->node[0];
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070095 for (i = 1; i < rcu_num_lvls; i++)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070096 ssp->level[i] = ssp->level[i - 1] + num_rcu_lvl[i - 1];
Paul E. McKenneyda915ad2017-04-05 09:01:53 -070097 rcu_init_levelspread(levelspread, num_rcu_lvl);
98
99 /* Each pass through this loop initializes one srcu_node structure. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700100 srcu_for_each_node_breadth_first(ssp, snp) {
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700101 spin_lock_init(&ACCESS_PRIVATE(snp, lock));
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700102 WARN_ON_ONCE(ARRAY_SIZE(snp->srcu_have_cbs) !=
103 ARRAY_SIZE(snp->srcu_data_have_cbs));
104 for (i = 0; i < ARRAY_SIZE(snp->srcu_have_cbs); i++) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700105 snp->srcu_have_cbs[i] = 0;
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700106 snp->srcu_data_have_cbs[i] = 0;
107 }
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700108 snp->srcu_gp_seq_needed_exp = 0;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700109 snp->grplo = -1;
110 snp->grphi = -1;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700111 if (snp == &ssp->node[0]) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700112 /* Root node, special case. */
113 snp->srcu_parent = NULL;
114 continue;
115 }
116
117 /* Non-root node. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700118 if (snp == ssp->level[level + 1])
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700119 level++;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700120 snp->srcu_parent = ssp->level[level - 1] +
121 (snp - ssp->level[level]) /
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700122 levelspread[level - 1];
123 }
124
125 /*
126 * Initialize the per-CPU srcu_data array, which feeds into the
127 * leaves of the srcu_node tree.
128 */
129 WARN_ON_ONCE(ARRAY_SIZE(sdp->srcu_lock_count) !=
130 ARRAY_SIZE(sdp->srcu_unlock_count));
131 level = rcu_num_lvls - 1;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700132 snp_first = ssp->level[level];
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700133 for_each_possible_cpu(cpu) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700134 sdp = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700135 spin_lock_init(&ACCESS_PRIVATE(sdp, lock));
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700136 rcu_segcblist_init(&sdp->srcu_cblist);
137 sdp->srcu_cblist_invoking = false;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700138 sdp->srcu_gp_seq_needed = ssp->srcu_gp_seq;
139 sdp->srcu_gp_seq_needed_exp = ssp->srcu_gp_seq;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700140 sdp->mynode = &snp_first[cpu / levelspread[level]];
141 for (snp = sdp->mynode; snp != NULL; snp = snp->srcu_parent) {
142 if (snp->grplo < 0)
143 snp->grplo = cpu;
144 snp->grphi = cpu;
145 }
146 sdp->cpu = cpu;
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100147 INIT_WORK(&sdp->work, srcu_invoke_callbacks);
148 timer_setup(&sdp->delay_work, srcu_delay_timer, 0);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700149 sdp->ssp = ssp;
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700150 sdp->grpmask = 1 << (cpu - sdp->mynode->grplo);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700151 if (is_static)
152 continue;
153
154 /* Dynamically allocated, better be no srcu_read_locks()! */
155 for (i = 0; i < ARRAY_SIZE(sdp->srcu_lock_count); i++) {
156 sdp->srcu_lock_count[i] = 0;
157 sdp->srcu_unlock_count[i] = 0;
158 }
159 }
160}
161
162/*
163 * Initialize non-compile-time initialized fields, including the
164 * associated srcu_node and srcu_data structures. The is_static
165 * parameter is passed through to init_srcu_struct_nodes(), and
166 * also tells us that ->sda has already been wired up to srcu_data.
167 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700168static int init_srcu_struct_fields(struct srcu_struct *ssp, bool is_static)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700169{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700170 mutex_init(&ssp->srcu_cb_mutex);
171 mutex_init(&ssp->srcu_gp_mutex);
172 ssp->srcu_idx = 0;
173 ssp->srcu_gp_seq = 0;
174 ssp->srcu_barrier_seq = 0;
175 mutex_init(&ssp->srcu_barrier_mutex);
176 atomic_set(&ssp->srcu_barrier_cpu_cnt, 0);
177 INIT_DELAYED_WORK(&ssp->work, process_srcu);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700178 if (!is_static)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700179 ssp->sda = alloc_percpu(struct srcu_data);
180 init_srcu_struct_nodes(ssp, is_static);
181 ssp->srcu_gp_seq_needed_exp = 0;
182 ssp->srcu_last_gp_end = ktime_get_mono_fast_ns();
183 smp_store_release(&ssp->srcu_gp_seq_needed, 0); /* Init done. */
184 return ssp->sda ? 0 : -ENOMEM;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700185}
186
187#ifdef CONFIG_DEBUG_LOCK_ALLOC
188
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700189int __init_srcu_struct(struct srcu_struct *ssp, const char *name,
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700190 struct lock_class_key *key)
191{
192 /* Don't re-initialize a lock while it is held. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700193 debug_check_no_locks_freed((void *)ssp, sizeof(*ssp));
194 lockdep_init_map(&ssp->dep_map, name, key, 0);
195 spin_lock_init(&ACCESS_PRIVATE(ssp, lock));
196 return init_srcu_struct_fields(ssp, false);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700197}
198EXPORT_SYMBOL_GPL(__init_srcu_struct);
199
200#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
201
202/**
203 * init_srcu_struct - initialize a sleep-RCU structure
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700204 * @ssp: structure to initialize.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700205 *
206 * Must invoke this on a given srcu_struct before passing that srcu_struct
207 * to any other function. Each srcu_struct represents a separate domain
208 * of SRCU protection.
209 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700210int init_srcu_struct(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700211{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700212 spin_lock_init(&ACCESS_PRIVATE(ssp, lock));
213 return init_srcu_struct_fields(ssp, false);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700214}
215EXPORT_SYMBOL_GPL(init_srcu_struct);
216
217#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
218
219/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700220 * First-use initialization of statically allocated srcu_struct
221 * structure. Wiring up the combining tree is more than can be
222 * done with compile-time initialization, so this check is added
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700223 * to each update-side SRCU primitive. Use ssp->lock, which -is-
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700224 * compile-time initialized, to resolve races involving multiple
225 * CPUs trying to garner first-use privileges.
226 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700227static void check_init_srcu_struct(struct srcu_struct *ssp)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700228{
229 unsigned long flags;
230
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700231 /* The smp_load_acquire() pairs with the smp_store_release(). */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700232 if (!rcu_seq_state(smp_load_acquire(&ssp->srcu_gp_seq_needed))) /*^^^*/
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700233 return; /* Already initialized. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700234 spin_lock_irqsave_rcu_node(ssp, flags);
235 if (!rcu_seq_state(ssp->srcu_gp_seq_needed)) {
236 spin_unlock_irqrestore_rcu_node(ssp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700237 return;
238 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700239 init_srcu_struct_fields(ssp, true);
240 spin_unlock_irqrestore_rcu_node(ssp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700241}
242
243/*
244 * Returns approximate total of the readers' ->srcu_lock_count[] values
245 * for the rank of per-CPU counters specified by idx.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700246 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700247static unsigned long srcu_readers_lock_idx(struct srcu_struct *ssp, int idx)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700248{
249 int cpu;
250 unsigned long sum = 0;
251
252 for_each_possible_cpu(cpu) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700253 struct srcu_data *cpuc = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700254
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700255 sum += READ_ONCE(cpuc->srcu_lock_count[idx]);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700256 }
257 return sum;
258}
259
260/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700261 * Returns approximate total of the readers' ->srcu_unlock_count[] values
262 * for the rank of per-CPU counters specified by idx.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700263 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700264static unsigned long srcu_readers_unlock_idx(struct srcu_struct *ssp, int idx)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700265{
266 int cpu;
267 unsigned long sum = 0;
268
269 for_each_possible_cpu(cpu) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700270 struct srcu_data *cpuc = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700271
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700272 sum += READ_ONCE(cpuc->srcu_unlock_count[idx]);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700273 }
274 return sum;
275}
276
277/*
278 * Return true if the number of pre-existing readers is determined to
279 * be zero.
280 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700281static bool srcu_readers_active_idx_check(struct srcu_struct *ssp, int idx)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700282{
283 unsigned long unlocks;
284
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700285 unlocks = srcu_readers_unlock_idx(ssp, idx);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700286
287 /*
288 * Make sure that a lock is always counted if the corresponding
289 * unlock is counted. Needs to be a smp_mb() as the read side may
290 * contain a read from a variable that is written to before the
291 * synchronize_srcu() in the write side. In this case smp_mb()s
292 * A and B act like the store buffering pattern.
293 *
294 * This smp_mb() also pairs with smp_mb() C to prevent accesses
295 * after the synchronize_srcu() from being executed before the
296 * grace period ends.
297 */
298 smp_mb(); /* A */
299
300 /*
301 * If the locks are the same as the unlocks, then there must have
302 * been no readers on this index at some time in between. This does
303 * not mean that there are no more readers, as one could have read
304 * the current index but not have incremented the lock counter yet.
305 *
Paul E. McKenney881ec9d2017-04-12 15:16:50 -0700306 * So suppose that the updater is preempted here for so long
307 * that more than ULONG_MAX non-nested readers come and go in
308 * the meantime. It turns out that this cannot result in overflow
309 * because if a reader modifies its unlock count after we read it
310 * above, then that reader's next load of ->srcu_idx is guaranteed
311 * to get the new value, which will cause it to operate on the
312 * other bank of counters, where it cannot contribute to the
313 * overflow of these counters. This means that there is a maximum
314 * of 2*NR_CPUS increments, which cannot overflow given current
315 * systems, especially not on 64-bit systems.
316 *
317 * OK, how about nesting? This does impose a limit on nesting
318 * of floor(ULONG_MAX/NR_CPUS/2), which should be sufficient,
319 * especially on 64-bit systems.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700320 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700321 return srcu_readers_lock_idx(ssp, idx) == unlocks;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700322}
323
324/**
325 * srcu_readers_active - returns true if there are readers. and false
326 * otherwise
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700327 * @ssp: which srcu_struct to count active readers (holding srcu_read_lock).
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700328 *
329 * Note that this is not an atomic primitive, and can therefore suffer
330 * severe errors when invoked on an active srcu_struct. That said, it
331 * can be useful as an error check at cleanup time.
332 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700333static bool srcu_readers_active(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700334{
335 int cpu;
336 unsigned long sum = 0;
337
338 for_each_possible_cpu(cpu) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700339 struct srcu_data *cpuc = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700340
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700341 sum += READ_ONCE(cpuc->srcu_lock_count[0]);
342 sum += READ_ONCE(cpuc->srcu_lock_count[1]);
343 sum -= READ_ONCE(cpuc->srcu_unlock_count[0]);
344 sum -= READ_ONCE(cpuc->srcu_unlock_count[1]);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700345 }
346 return sum;
347}
348
349#define SRCU_INTERVAL 1
350
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700351/*
352 * Return grace-period delay, zero if there are expedited grace
353 * periods pending, SRCU_INTERVAL otherwise.
354 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700355static unsigned long srcu_get_delay(struct srcu_struct *ssp)
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700356{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700357 if (ULONG_CMP_LT(READ_ONCE(ssp->srcu_gp_seq),
358 READ_ONCE(ssp->srcu_gp_seq_needed_exp)))
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700359 return 0;
360 return SRCU_INTERVAL;
361}
362
Paul E. McKenneyf5ad3992019-02-13 13:54:37 -0800363/**
364 * cleanup_srcu_struct - deconstruct a sleep-RCU structure
365 * @ssp: structure to clean up.
366 *
367 * Must invoke this after you are finished using a given srcu_struct that
368 * was initialized via init_srcu_struct(), else you leak memory.
369 */
370void cleanup_srcu_struct(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700371{
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700372 int cpu;
373
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700374 if (WARN_ON(!srcu_get_delay(ssp)))
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -0700375 return; /* Just leak it! */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700376 if (WARN_ON(srcu_readers_active(ssp)))
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -0700377 return; /* Just leak it! */
Paul E. McKenneyf5ad3992019-02-13 13:54:37 -0800378 flush_delayed_work(&ssp->work);
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100379 for_each_possible_cpu(cpu) {
380 struct srcu_data *sdp = per_cpu_ptr(ssp->sda, cpu);
381
Paul E. McKenneyf5ad3992019-02-13 13:54:37 -0800382 del_timer_sync(&sdp->delay_work);
383 flush_work(&sdp->work);
Paul E. McKenney5cdfd172019-02-12 10:44:33 -0800384 if (WARN_ON(rcu_segcblist_n_cbs(&sdp->srcu_cblist)))
385 return; /* Forgot srcu_barrier(), so just leak it! */
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100386 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700387 if (WARN_ON(rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq)) != SRCU_STATE_IDLE) ||
388 WARN_ON(srcu_readers_active(ssp))) {
Joe Perchesa7538352018-05-14 13:27:33 -0700389 pr_info("%s: Active srcu_struct %p state: %d\n",
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700390 __func__, ssp, rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq)));
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700391 return; /* Caller forgot to stop doing call_srcu()? */
392 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700393 free_percpu(ssp->sda);
394 ssp->sda = NULL;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700395}
Paul E. McKenneyf5ad3992019-02-13 13:54:37 -0800396EXPORT_SYMBOL_GPL(cleanup_srcu_struct);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700397
398/*
399 * Counts the new reader in the appropriate per-CPU element of the
Paolo Bonzinicdf7abc2017-05-31 14:03:10 +0200400 * srcu_struct.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700401 * Returns an index that must be passed to the matching srcu_read_unlock().
402 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700403int __srcu_read_lock(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700404{
405 int idx;
406
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700407 idx = READ_ONCE(ssp->srcu_idx) & 0x1;
408 this_cpu_inc(ssp->sda->srcu_lock_count[idx]);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700409 smp_mb(); /* B */ /* Avoid leaking the critical section. */
410 return idx;
411}
412EXPORT_SYMBOL_GPL(__srcu_read_lock);
413
414/*
415 * Removes the count for the old reader from the appropriate per-CPU
416 * element of the srcu_struct. Note that this may well be a different
417 * CPU than that which was incremented by the corresponding srcu_read_lock().
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700418 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700419void __srcu_read_unlock(struct srcu_struct *ssp, int idx)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700420{
421 smp_mb(); /* C */ /* Avoid leaking the critical section. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700422 this_cpu_inc(ssp->sda->srcu_unlock_count[idx]);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700423}
424EXPORT_SYMBOL_GPL(__srcu_read_unlock);
425
426/*
427 * We use an adaptive strategy for synchronize_srcu() and especially for
428 * synchronize_srcu_expedited(). We spin for a fixed time period
429 * (defined below) to allow SRCU readers to exit their read-side critical
430 * sections. If there are still some readers after a few microseconds,
431 * we repeatedly block for 1-millisecond time periods.
432 */
433#define SRCU_RETRY_CHECK_DELAY 5
434
435/*
436 * Start an SRCU grace period.
437 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700438static void srcu_gp_start(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700439{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700440 struct srcu_data *sdp = this_cpu_ptr(ssp->sda);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700441 int state;
442
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700443 lockdep_assert_held(&ACCESS_PRIVATE(ssp, lock));
444 WARN_ON_ONCE(ULONG_CMP_GE(ssp->srcu_gp_seq, ssp->srcu_gp_seq_needed));
Dennis Kreineb4c2382018-10-26 07:38:24 -0700445 spin_lock_rcu_node(sdp); /* Interrupts already disabled. */
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700446 rcu_segcblist_advance(&sdp->srcu_cblist,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700447 rcu_seq_current(&ssp->srcu_gp_seq));
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700448 (void)rcu_segcblist_accelerate(&sdp->srcu_cblist,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700449 rcu_seq_snap(&ssp->srcu_gp_seq));
Dennis Kreineb4c2382018-10-26 07:38:24 -0700450 spin_unlock_rcu_node(sdp); /* Interrupts remain disabled. */
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700451 smp_mb(); /* Order prior store to ->srcu_gp_seq_needed vs. GP start. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700452 rcu_seq_start(&ssp->srcu_gp_seq);
453 state = rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq));
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700454 WARN_ON_ONCE(state != SRCU_STATE_SCAN1);
455}
456
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700457
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100458static void srcu_delay_timer(struct timer_list *t)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700459{
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100460 struct srcu_data *sdp = container_of(t, struct srcu_data, delay_work);
461
462 queue_work_on(sdp->cpu, rcu_gp_wq, &sdp->work);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700463}
464
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100465static void srcu_queue_delayed_work_on(struct srcu_data *sdp,
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700466 unsigned long delay)
467{
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100468 if (!delay) {
469 queue_work_on(sdp->cpu, rcu_gp_wq, &sdp->work);
470 return;
471 }
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700472
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100473 timer_reduce(&sdp->delay_work, jiffies + delay);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700474}
475
476/*
477 * Schedule callback invocation for the specified srcu_data structure,
478 * if possible, on the corresponding CPU.
479 */
480static void srcu_schedule_cbs_sdp(struct srcu_data *sdp, unsigned long delay)
481{
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +0100482 srcu_queue_delayed_work_on(sdp, delay);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700483}
484
485/*
486 * Schedule callback invocation for all srcu_data structures associated
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700487 * with the specified srcu_node structure that have callbacks for the
488 * just-completed grace period, the one corresponding to idx. If possible,
489 * schedule this invocation on the corresponding CPUs.
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700490 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700491static void srcu_schedule_cbs_snp(struct srcu_struct *ssp, struct srcu_node *snp,
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700492 unsigned long mask, unsigned long delay)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700493{
494 int cpu;
495
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700496 for (cpu = snp->grplo; cpu <= snp->grphi; cpu++) {
497 if (!(mask & (1 << (cpu - snp->grplo))))
498 continue;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700499 srcu_schedule_cbs_sdp(per_cpu_ptr(ssp->sda, cpu), delay);
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700500 }
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700501}
502
503/*
504 * Note the end of an SRCU grace period. Initiates callback invocation
505 * and starts a new grace period if needed.
506 *
507 * The ->srcu_cb_mutex acquisition does not protect any data, but
508 * instead prevents more than one grace period from starting while we
509 * are initiating callback invocation. This allows the ->srcu_have_cbs[]
510 * array to have a finite number of elements.
511 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700512static void srcu_gp_end(struct srcu_struct *ssp)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700513{
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700514 unsigned long cbdelay;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700515 bool cbs;
Ildar Ismagilov8ddbd882018-01-31 22:42:21 +0300516 bool last_lvl;
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700517 int cpu;
518 unsigned long flags;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700519 unsigned long gpseq;
520 int idx;
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700521 unsigned long mask;
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700522 struct srcu_data *sdp;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700523 struct srcu_node *snp;
524
525 /* Prevent more than one additional grace period. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700526 mutex_lock(&ssp->srcu_cb_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700527
528 /* End the current grace period. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700529 spin_lock_irq_rcu_node(ssp);
530 idx = rcu_seq_state(ssp->srcu_gp_seq);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700531 WARN_ON_ONCE(idx != SRCU_STATE_SCAN2);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700532 cbdelay = srcu_get_delay(ssp);
533 ssp->srcu_last_gp_end = ktime_get_mono_fast_ns();
534 rcu_seq_end(&ssp->srcu_gp_seq);
535 gpseq = rcu_seq_current(&ssp->srcu_gp_seq);
536 if (ULONG_CMP_LT(ssp->srcu_gp_seq_needed_exp, gpseq))
537 ssp->srcu_gp_seq_needed_exp = gpseq;
538 spin_unlock_irq_rcu_node(ssp);
539 mutex_unlock(&ssp->srcu_gp_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700540 /* A new grace period can start at this point. But only one. */
541
542 /* Initiate callback invocation as needed. */
543 idx = rcu_seq_ctr(gpseq) % ARRAY_SIZE(snp->srcu_have_cbs);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700544 srcu_for_each_node_breadth_first(ssp, snp) {
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700545 spin_lock_irq_rcu_node(snp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700546 cbs = false;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700547 last_lvl = snp >= ssp->level[rcu_num_lvls - 1];
Ildar Ismagilov8ddbd882018-01-31 22:42:21 +0300548 if (last_lvl)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700549 cbs = snp->srcu_have_cbs[idx] == gpseq;
550 snp->srcu_have_cbs[idx] = gpseq;
551 rcu_seq_set_state(&snp->srcu_have_cbs[idx], 1);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700552 if (ULONG_CMP_LT(snp->srcu_gp_seq_needed_exp, gpseq))
553 snp->srcu_gp_seq_needed_exp = gpseq;
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700554 mask = snp->srcu_data_have_cbs[idx];
555 snp->srcu_data_have_cbs[idx] = 0;
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700556 spin_unlock_irq_rcu_node(snp);
Paul E. McKenneya3883df2017-05-09 15:00:14 -0700557 if (cbs)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700558 srcu_schedule_cbs_snp(ssp, snp, mask, cbdelay);
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700559
560 /* Occasionally prevent srcu_data counter wrap. */
Ildar Ismagilov8ddbd882018-01-31 22:42:21 +0300561 if (!(gpseq & counter_wrap_check) && last_lvl)
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700562 for (cpu = snp->grplo; cpu <= snp->grphi; cpu++) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700563 sdp = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700564 spin_lock_irqsave_rcu_node(sdp, flags);
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700565 if (ULONG_CMP_GE(gpseq,
566 sdp->srcu_gp_seq_needed + 100))
567 sdp->srcu_gp_seq_needed = gpseq;
Ildar Ismagilova35d13e2018-01-31 22:39:53 +0300568 if (ULONG_CMP_GE(gpseq,
569 sdp->srcu_gp_seq_needed_exp + 100))
570 sdp->srcu_gp_seq_needed_exp = gpseq;
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700571 spin_unlock_irqrestore_rcu_node(sdp, flags);
Paul E. McKenneyc350c002017-05-03 15:35:32 -0700572 }
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700573 }
574
575 /* Callback initiation done, allow grace periods after next. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700576 mutex_unlock(&ssp->srcu_cb_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700577
578 /* Start a new grace period if needed. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700579 spin_lock_irq_rcu_node(ssp);
580 gpseq = rcu_seq_current(&ssp->srcu_gp_seq);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700581 if (!rcu_seq_state(gpseq) &&
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700582 ULONG_CMP_LT(gpseq, ssp->srcu_gp_seq_needed)) {
583 srcu_gp_start(ssp);
584 spin_unlock_irq_rcu_node(ssp);
585 srcu_reschedule(ssp, 0);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700586 } else {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700587 spin_unlock_irq_rcu_node(ssp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700588 }
589}
590
591/*
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700592 * Funnel-locking scheme to scalably mediate many concurrent expedited
593 * grace-period requests. This function is invoked for the first known
594 * expedited request for a grace period that has already been requested,
595 * but without expediting. To start a completely new grace period,
596 * whether expedited or not, use srcu_funnel_gp_start() instead.
597 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700598static void srcu_funnel_exp_start(struct srcu_struct *ssp, struct srcu_node *snp,
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700599 unsigned long s)
600{
601 unsigned long flags;
602
603 for (; snp != NULL; snp = snp->srcu_parent) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700604 if (rcu_seq_done(&ssp->srcu_gp_seq, s) ||
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700605 ULONG_CMP_GE(READ_ONCE(snp->srcu_gp_seq_needed_exp), s))
606 return;
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700607 spin_lock_irqsave_rcu_node(snp, flags);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700608 if (ULONG_CMP_GE(snp->srcu_gp_seq_needed_exp, s)) {
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700609 spin_unlock_irqrestore_rcu_node(snp, flags);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700610 return;
611 }
612 WRITE_ONCE(snp->srcu_gp_seq_needed_exp, s);
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700613 spin_unlock_irqrestore_rcu_node(snp, flags);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700614 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700615 spin_lock_irqsave_rcu_node(ssp, flags);
616 if (ULONG_CMP_LT(ssp->srcu_gp_seq_needed_exp, s))
617 ssp->srcu_gp_seq_needed_exp = s;
618 spin_unlock_irqrestore_rcu_node(ssp, flags);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700619}
620
621/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700622 * Funnel-locking scheme to scalably mediate many concurrent grace-period
623 * requests. The winner has to do the work of actually starting grace
624 * period s. Losers must either ensure that their desired grace-period
625 * number is recorded on at least their leaf srcu_node structure, or they
626 * must take steps to invoke their own callbacks.
Paul E. McKenney17294ce2018-04-25 12:03:36 -0700627 *
628 * Note that this function also does the work of srcu_funnel_exp_start(),
629 * in some cases by directly invoking it.
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700630 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700631static void srcu_funnel_gp_start(struct srcu_struct *ssp, struct srcu_data *sdp,
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700632 unsigned long s, bool do_norm)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700633{
634 unsigned long flags;
635 int idx = rcu_seq_ctr(s) % ARRAY_SIZE(sdp->mynode->srcu_have_cbs);
636 struct srcu_node *snp = sdp->mynode;
637 unsigned long snp_seq;
638
639 /* Each pass through the loop does one level of the srcu_node tree. */
640 for (; snp != NULL; snp = snp->srcu_parent) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700641 if (rcu_seq_done(&ssp->srcu_gp_seq, s) && snp != sdp->mynode)
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700642 return; /* GP already done and CBs recorded. */
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700643 spin_lock_irqsave_rcu_node(snp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700644 if (ULONG_CMP_GE(snp->srcu_have_cbs[idx], s)) {
645 snp_seq = snp->srcu_have_cbs[idx];
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700646 if (snp == sdp->mynode && snp_seq == s)
647 snp->srcu_data_have_cbs[idx] |= sdp->grpmask;
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700648 spin_unlock_irqrestore_rcu_node(snp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700649 if (snp == sdp->mynode && snp_seq != s) {
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700650 srcu_schedule_cbs_sdp(sdp, do_norm
651 ? SRCU_INTERVAL
652 : 0);
653 return;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700654 }
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700655 if (!do_norm)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700656 srcu_funnel_exp_start(ssp, snp, s);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700657 return;
658 }
659 snp->srcu_have_cbs[idx] = s;
Paul E. McKenneyc7e88062017-04-18 16:01:46 -0700660 if (snp == sdp->mynode)
661 snp->srcu_data_have_cbs[idx] |= sdp->grpmask;
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700662 if (!do_norm && ULONG_CMP_LT(snp->srcu_gp_seq_needed_exp, s))
663 snp->srcu_gp_seq_needed_exp = s;
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700664 spin_unlock_irqrestore_rcu_node(snp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700665 }
666
667 /* Top of tree, must ensure the grace period will be started. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700668 spin_lock_irqsave_rcu_node(ssp, flags);
669 if (ULONG_CMP_LT(ssp->srcu_gp_seq_needed, s)) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700670 /*
671 * Record need for grace period s. Pair with load
672 * acquire setting up for initialization.
673 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700674 smp_store_release(&ssp->srcu_gp_seq_needed, s); /*^^^*/
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700675 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700676 if (!do_norm && ULONG_CMP_LT(ssp->srcu_gp_seq_needed_exp, s))
677 ssp->srcu_gp_seq_needed_exp = s;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700678
679 /* If grace period not already done and none in progress, start it. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700680 if (!rcu_seq_done(&ssp->srcu_gp_seq, s) &&
681 rcu_seq_state(ssp->srcu_gp_seq) == SRCU_STATE_IDLE) {
682 WARN_ON_ONCE(ULONG_CMP_GE(ssp->srcu_gp_seq, ssp->srcu_gp_seq_needed));
683 srcu_gp_start(ssp);
Paul E. McKenneye0fcba92018-08-14 08:45:54 -0700684 if (likely(srcu_init_done))
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700685 queue_delayed_work(rcu_gp_wq, &ssp->work,
686 srcu_get_delay(ssp));
687 else if (list_empty(&ssp->work.work.entry))
688 list_add(&ssp->work.work.entry, &srcu_boot_list);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700689 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700690 spin_unlock_irqrestore_rcu_node(ssp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700691}
692
693/*
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700694 * Wait until all readers counted by array index idx complete, but
695 * loop an additional time if there is an expedited grace period pending.
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700696 * The caller must ensure that ->srcu_idx is not changed while checking.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700697 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700698static bool try_check_zero(struct srcu_struct *ssp, int idx, int trycount)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700699{
700 for (;;) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700701 if (srcu_readers_active_idx_check(ssp, idx))
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700702 return true;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700703 if (--trycount + !srcu_get_delay(ssp) <= 0)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700704 return false;
705 udelay(SRCU_RETRY_CHECK_DELAY);
706 }
707}
708
709/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700710 * Increment the ->srcu_idx counter so that future SRCU readers will
711 * use the other rank of the ->srcu_(un)lock_count[] arrays. This allows
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700712 * us to wait for pre-existing readers in a starvation-free manner.
713 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700714static void srcu_flip(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700715{
Paul E. McKenney881ec9d2017-04-12 15:16:50 -0700716 /*
717 * Ensure that if this updater saw a given reader's increment
718 * from __srcu_read_lock(), that reader was using an old value
719 * of ->srcu_idx. Also ensure that if a given reader sees the
720 * new value of ->srcu_idx, this updater's earlier scans cannot
721 * have seen that reader's increments (which is OK, because this
722 * grace period need not wait on that reader).
723 */
724 smp_mb(); /* E */ /* Pairs with B and C. */
725
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700726 WRITE_ONCE(ssp->srcu_idx, ssp->srcu_idx + 1);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700727
728 /*
729 * Ensure that if the updater misses an __srcu_read_unlock()
730 * increment, that task's next __srcu_read_lock() will see the
731 * above counter update. Note that both this memory barrier
732 * and the one in srcu_readers_active_idx_check() provide the
733 * guarantee for __srcu_read_lock().
734 */
735 smp_mb(); /* D */ /* Pairs with C. */
736}
737
738/*
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700739 * If SRCU is likely idle, return true, otherwise return false.
740 *
741 * Note that it is OK for several current from-idle requests for a new
742 * grace period from idle to specify expediting because they will all end
743 * up requesting the same grace period anyhow. So no loss.
744 *
745 * Note also that if any CPU (including the current one) is still invoking
746 * callbacks, this function will nevertheless say "idle". This is not
747 * ideal, but the overhead of checking all CPUs' callback lists is even
748 * less ideal, especially on large systems. Furthermore, the wakeup
749 * can happen before the callback is fully removed, so we have no choice
750 * but to accept this type of error.
751 *
752 * This function is also subject to counter-wrap errors, but let's face
753 * it, if this function was preempted for enough time for the counters
754 * to wrap, it really doesn't matter whether or not we expedite the grace
755 * period. The extra overhead of a needlessly expedited grace period is
756 * negligible when amoritized over that time period, and the extra latency
757 * of a needlessly non-expedited grace period is similarly negligible.
758 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700759static bool srcu_might_be_idle(struct srcu_struct *ssp)
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700760{
Paul E. McKenney22607d62017-04-25 14:03:11 -0700761 unsigned long curseq;
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700762 unsigned long flags;
763 struct srcu_data *sdp;
Paul E. McKenney22607d62017-04-25 14:03:11 -0700764 unsigned long t;
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700765
766 /* If the local srcu_data structure has callbacks, not idle. */
767 local_irq_save(flags);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700768 sdp = this_cpu_ptr(ssp->sda);
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700769 if (rcu_segcblist_pend_cbs(&sdp->srcu_cblist)) {
770 local_irq_restore(flags);
771 return false; /* Callbacks already present, so not idle. */
772 }
773 local_irq_restore(flags);
774
775 /*
776 * No local callbacks, so probabalistically probe global state.
777 * Exact information would require acquiring locks, which would
778 * kill scalability, hence the probabalistic nature of the probe.
779 */
Paul E. McKenney22607d62017-04-25 14:03:11 -0700780
781 /* First, see if enough time has passed since the last GP. */
782 t = ktime_get_mono_fast_ns();
783 if (exp_holdoff == 0 ||
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700784 time_in_range_open(t, ssp->srcu_last_gp_end,
785 ssp->srcu_last_gp_end + exp_holdoff))
Paul E. McKenney22607d62017-04-25 14:03:11 -0700786 return false; /* Too soon after last GP. */
787
788 /* Next, check for probable idleness. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700789 curseq = rcu_seq_current(&ssp->srcu_gp_seq);
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700790 smp_mb(); /* Order ->srcu_gp_seq with ->srcu_gp_seq_needed. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700791 if (ULONG_CMP_LT(curseq, READ_ONCE(ssp->srcu_gp_seq_needed)))
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700792 return false; /* Grace period in progress, so not idle. */
793 smp_mb(); /* Order ->srcu_gp_seq with prior access. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700794 if (curseq != rcu_seq_current(&ssp->srcu_gp_seq))
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700795 return false; /* GP # changed, so not idle. */
796 return true; /* With reasonable probability, idle! */
797}
798
799/*
Paul E. McKenneya6025382017-04-28 15:39:34 -0700800 * SRCU callback function to leak a callback.
801 */
802static void srcu_leak_callback(struct rcu_head *rhp)
803{
804}
805
806/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700807 * Enqueue an SRCU callback on the srcu_data structure associated with
808 * the current CPU and the specified srcu_struct structure, initiating
809 * grace-period processing if it is not already running.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700810 *
811 * Note that all CPUs must agree that the grace period extended beyond
812 * all pre-existing SRCU read-side critical section. On systems with
813 * more than one CPU, this means that when "func()" is invoked, each CPU
814 * is guaranteed to have executed a full memory barrier since the end of
815 * its last corresponding SRCU read-side critical section whose beginning
Paul E. McKenney5ef98a62018-04-24 21:30:13 -0700816 * preceded the call to call_srcu(). It also means that each CPU executing
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700817 * an SRCU read-side critical section that continues beyond the start of
Paul E. McKenney5ef98a62018-04-24 21:30:13 -0700818 * "func()" must have executed a memory barrier after the call_srcu()
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700819 * but before the beginning of that SRCU read-side critical section.
820 * Note that these guarantees include CPUs that are offline, idle, or
821 * executing in user mode, as well as CPUs that are executing in the kernel.
822 *
Paul E. McKenney5ef98a62018-04-24 21:30:13 -0700823 * Furthermore, if CPU A invoked call_srcu() and CPU B invoked the
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700824 * resulting SRCU callback function "func()", then both CPU A and CPU
825 * B are guaranteed to execute a full memory barrier during the time
Paul E. McKenney5ef98a62018-04-24 21:30:13 -0700826 * interval between the call to call_srcu() and the invocation of "func()".
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700827 * This guarantee applies even if CPU A and CPU B are the same CPU (but
828 * again only if the system has more than one CPU).
829 *
830 * Of course, these guarantees apply only for invocations of call_srcu(),
831 * srcu_read_lock(), and srcu_read_unlock() that are all passed the same
832 * srcu_struct structure.
833 */
Jiang Biao11b00042019-04-23 09:22:56 +0800834static void __call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp,
835 rcu_callback_t func, bool do_norm)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700836{
837 unsigned long flags;
Paul E. McKenney0607ba82018-04-25 13:01:25 -0700838 int idx;
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700839 bool needexp = false;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700840 bool needgp = false;
841 unsigned long s;
842 struct srcu_data *sdp;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700843
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700844 check_init_srcu_struct(ssp);
Paul E. McKenneya6025382017-04-28 15:39:34 -0700845 if (debug_rcu_head_queue(rhp)) {
846 /* Probable double call_srcu(), so leak the callback. */
847 WRITE_ONCE(rhp->func, srcu_leak_callback);
848 WARN_ONCE(1, "call_srcu(): Leaked duplicate callback\n");
849 return;
850 }
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700851 rhp->func = func;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700852 idx = srcu_read_lock(ssp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700853 local_irq_save(flags);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700854 sdp = this_cpu_ptr(ssp->sda);
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700855 spin_lock_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700856 rcu_segcblist_enqueue(&sdp->srcu_cblist, rhp, false);
857 rcu_segcblist_advance(&sdp->srcu_cblist,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700858 rcu_seq_current(&ssp->srcu_gp_seq));
859 s = rcu_seq_snap(&ssp->srcu_gp_seq);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700860 (void)rcu_segcblist_accelerate(&sdp->srcu_cblist, s);
861 if (ULONG_CMP_LT(sdp->srcu_gp_seq_needed, s)) {
862 sdp->srcu_gp_seq_needed = s;
863 needgp = true;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700864 }
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700865 if (!do_norm && ULONG_CMP_LT(sdp->srcu_gp_seq_needed_exp, s)) {
866 sdp->srcu_gp_seq_needed_exp = s;
867 needexp = true;
868 }
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700869 spin_unlock_irqrestore_rcu_node(sdp, flags);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700870 if (needgp)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700871 srcu_funnel_gp_start(ssp, sdp, s, do_norm);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700872 else if (needexp)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700873 srcu_funnel_exp_start(ssp, sdp->mynode, s);
874 srcu_read_unlock(ssp, idx);
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700875}
876
Paul E. McKenney5a0465e2017-05-04 11:31:04 -0700877/**
878 * call_srcu() - Queue a callback for invocation after an SRCU grace period
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700879 * @ssp: srcu_struct in queue the callback
Paul E. McKenney27fdb352017-10-19 14:26:21 -0700880 * @rhp: structure to be used for queueing the SRCU callback.
Paul E. McKenney5a0465e2017-05-04 11:31:04 -0700881 * @func: function to be invoked after the SRCU grace period
882 *
883 * The callback function will be invoked some time after a full SRCU
884 * grace period elapses, in other words after all pre-existing SRCU
885 * read-side critical sections have completed. However, the callback
886 * function might well execute concurrently with other SRCU read-side
887 * critical sections that started after call_srcu() was invoked. SRCU
888 * read-side critical sections are delimited by srcu_read_lock() and
889 * srcu_read_unlock(), and may be nested.
890 *
891 * The callback will be invoked from process context, but must nevertheless
892 * be fast and must not block.
893 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700894void call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp,
Paul E. McKenney1e9a0382017-04-24 16:02:09 -0700895 rcu_callback_t func)
896{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700897 __call_srcu(ssp, rhp, func, true);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700898}
899EXPORT_SYMBOL_GPL(call_srcu);
900
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700901/*
902 * Helper function for synchronize_srcu() and synchronize_srcu_expedited().
903 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700904static void __synchronize_srcu(struct srcu_struct *ssp, bool do_norm)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700905{
906 struct rcu_synchronize rcu;
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700907
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700908 RCU_LOCKDEP_WARN(lock_is_held(&ssp->dep_map) ||
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700909 lock_is_held(&rcu_bh_lock_map) ||
910 lock_is_held(&rcu_lock_map) ||
911 lock_is_held(&rcu_sched_lock_map),
912 "Illegal synchronize_srcu() in same-type SRCU (or in RCU) read-side critical section");
913
914 if (rcu_scheduler_active == RCU_SCHEDULER_INACTIVE)
915 return;
916 might_sleep();
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700917 check_init_srcu_struct(ssp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700918 init_completion(&rcu.completion);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700919 init_rcu_head_on_stack(&rcu.head);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700920 __call_srcu(ssp, &rcu.head, wakeme_after_rcu, do_norm);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700921 wait_for_completion(&rcu.completion);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700922 destroy_rcu_head_on_stack(&rcu.head);
Paul E. McKenney35732cf2017-07-05 13:30:21 -0700923
924 /*
925 * Make sure that later code is ordered after the SRCU grace
Paul E. McKenneyd6331982017-10-10 13:52:30 -0700926 * period. This pairs with the spin_lock_irq_rcu_node()
Paul E. McKenney35732cf2017-07-05 13:30:21 -0700927 * in srcu_invoke_callbacks(). Unlike Tree RCU, this is needed
928 * because the current CPU might have been totally uninvolved with
929 * (and thus unordered against) that grace period.
930 */
931 smp_mb();
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700932}
933
934/**
935 * synchronize_srcu_expedited - Brute-force SRCU grace period
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700936 * @ssp: srcu_struct with which to synchronize.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700937 *
938 * Wait for an SRCU grace period to elapse, but be more aggressive about
939 * spinning rather than blocking when waiting.
940 *
941 * Note that synchronize_srcu_expedited() has the same deadlock and
942 * memory-ordering properties as does synchronize_srcu().
943 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700944void synchronize_srcu_expedited(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700945{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700946 __synchronize_srcu(ssp, rcu_gp_is_normal());
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700947}
948EXPORT_SYMBOL_GPL(synchronize_srcu_expedited);
949
950/**
951 * synchronize_srcu - wait for prior SRCU read-side critical-section completion
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700952 * @ssp: srcu_struct with which to synchronize.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700953 *
954 * Wait for the count to drain to zero of both indexes. To avoid the
955 * possible starvation of synchronize_srcu(), it waits for the count of
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700956 * the index=((->srcu_idx & 1) ^ 1) to drain to zero at first,
957 * and then flip the srcu_idx and wait for the count of the other index.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700958 *
959 * Can block; must be called from process context.
960 *
961 * Note that it is illegal to call synchronize_srcu() from the corresponding
962 * SRCU read-side critical section; doing so will result in deadlock.
963 * However, it is perfectly legal to call synchronize_srcu() on one
964 * srcu_struct from some other srcu_struct's read-side critical section,
965 * as long as the resulting graph of srcu_structs is acyclic.
966 *
967 * There are memory-ordering constraints implied by synchronize_srcu().
968 * On systems with more than one CPU, when synchronize_srcu() returns,
969 * each CPU is guaranteed to have executed a full memory barrier since
Paul E. McKenney6eb95cc2018-07-07 18:12:26 -0700970 * the end of its last corresponding SRCU read-side critical section
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700971 * whose beginning preceded the call to synchronize_srcu(). In addition,
972 * each CPU having an SRCU read-side critical section that extends beyond
973 * the return from synchronize_srcu() is guaranteed to have executed a
974 * full memory barrier after the beginning of synchronize_srcu() and before
975 * the beginning of that SRCU read-side critical section. Note that these
976 * guarantees include CPUs that are offline, idle, or executing in user mode,
977 * as well as CPUs that are executing in the kernel.
978 *
979 * Furthermore, if CPU A invoked synchronize_srcu(), which returned
980 * to its caller on CPU B, then both CPU A and CPU B are guaranteed
981 * to have executed a full memory barrier during the execution of
982 * synchronize_srcu(). This guarantee applies even if CPU A and CPU B
983 * are the same CPU, but again only if the system has more than one CPU.
984 *
985 * Of course, these memory-ordering guarantees apply only when
986 * synchronize_srcu(), srcu_read_lock(), and srcu_read_unlock() are
987 * passed the same srcu_struct structure.
Paul E. McKenney2da4b2a2017-04-25 11:34:40 -0700988 *
989 * If SRCU is likely idle, expedite the first request. This semantic
990 * was provided by Classic SRCU, and is relied upon by its users, so TREE
991 * SRCU must also provide it. Note that detecting idleness is heuristic
992 * and subject to both false positives and negatives.
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700993 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700994void synchronize_srcu(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700995{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700996 if (srcu_might_be_idle(ssp) || rcu_gp_is_expedited())
997 synchronize_srcu_expedited(ssp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700998 else
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700999 __synchronize_srcu(ssp, true);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001000}
1001EXPORT_SYMBOL_GPL(synchronize_srcu);
1002
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001003/*
1004 * Callback function for srcu_barrier() use.
1005 */
1006static void srcu_barrier_cb(struct rcu_head *rhp)
1007{
1008 struct srcu_data *sdp;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001009 struct srcu_struct *ssp;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001010
1011 sdp = container_of(rhp, struct srcu_data, srcu_barrier_head);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001012 ssp = sdp->ssp;
1013 if (atomic_dec_and_test(&ssp->srcu_barrier_cpu_cnt))
1014 complete(&ssp->srcu_barrier_completion);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001015}
1016
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001017/**
1018 * srcu_barrier - Wait until all in-flight call_srcu() callbacks complete.
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001019 * @ssp: srcu_struct on which to wait for in-flight callbacks.
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001020 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001021void srcu_barrier(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001022{
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001023 int cpu;
1024 struct srcu_data *sdp;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001025 unsigned long s = rcu_seq_snap(&ssp->srcu_barrier_seq);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001026
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001027 check_init_srcu_struct(ssp);
1028 mutex_lock(&ssp->srcu_barrier_mutex);
1029 if (rcu_seq_done(&ssp->srcu_barrier_seq, s)) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001030 smp_mb(); /* Force ordering following return. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001031 mutex_unlock(&ssp->srcu_barrier_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001032 return; /* Someone else did our work for us. */
1033 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001034 rcu_seq_start(&ssp->srcu_barrier_seq);
1035 init_completion(&ssp->srcu_barrier_completion);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001036
1037 /* Initial count prevents reaching zero until all CBs are posted. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001038 atomic_set(&ssp->srcu_barrier_cpu_cnt, 1);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001039
1040 /*
1041 * Each pass through this loop enqueues a callback, but only
1042 * on CPUs already having callbacks enqueued. Note that if
1043 * a CPU already has callbacks enqueue, it must have already
1044 * registered the need for a future grace period, so all we
1045 * need do is enqueue a callback that will use the same
1046 * grace period as the last callback already in the queue.
1047 */
1048 for_each_possible_cpu(cpu) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001049 sdp = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001050 spin_lock_irq_rcu_node(sdp);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001051 atomic_inc(&ssp->srcu_barrier_cpu_cnt);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001052 sdp->srcu_barrier_head.func = srcu_barrier_cb;
Paul E. McKenneya6025382017-04-28 15:39:34 -07001053 debug_rcu_head_queue(&sdp->srcu_barrier_head);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001054 if (!rcu_segcblist_entrain(&sdp->srcu_cblist,
Paul E. McKenneya6025382017-04-28 15:39:34 -07001055 &sdp->srcu_barrier_head, 0)) {
1056 debug_rcu_head_unqueue(&sdp->srcu_barrier_head);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001057 atomic_dec(&ssp->srcu_barrier_cpu_cnt);
Paul E. McKenneya6025382017-04-28 15:39:34 -07001058 }
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001059 spin_unlock_irq_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001060 }
1061
1062 /* Remove the initial count, at which point reaching zero can happen. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001063 if (atomic_dec_and_test(&ssp->srcu_barrier_cpu_cnt))
1064 complete(&ssp->srcu_barrier_completion);
1065 wait_for_completion(&ssp->srcu_barrier_completion);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001066
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001067 rcu_seq_end(&ssp->srcu_barrier_seq);
1068 mutex_unlock(&ssp->srcu_barrier_mutex);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001069}
1070EXPORT_SYMBOL_GPL(srcu_barrier);
1071
1072/**
1073 * srcu_batches_completed - return batches completed.
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001074 * @ssp: srcu_struct on which to report batch completion.
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001075 *
1076 * Report the number of batches, correlated with, but not necessarily
1077 * precisely the same as, the number of grace periods that have elapsed.
1078 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001079unsigned long srcu_batches_completed(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001080{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001081 return ssp->srcu_idx;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001082}
1083EXPORT_SYMBOL_GPL(srcu_batches_completed);
1084
1085/*
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001086 * Core SRCU state machine. Push state bits of ->srcu_gp_seq
1087 * to SRCU_STATE_SCAN2, and invoke srcu_gp_end() when scan has
1088 * completed in that state.
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001089 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001090static void srcu_advance_state(struct srcu_struct *ssp)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001091{
1092 int idx;
1093
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001094 mutex_lock(&ssp->srcu_gp_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001095
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001096 /*
1097 * Because readers might be delayed for an extended period after
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001098 * fetching ->srcu_idx for their index, at any point in time there
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001099 * might well be readers using both idx=0 and idx=1. We therefore
1100 * need to wait for readers to clear from both index values before
1101 * invoking a callback.
1102 *
1103 * The load-acquire ensures that we see the accesses performed
1104 * by the prior grace period.
1105 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001106 idx = rcu_seq_state(smp_load_acquire(&ssp->srcu_gp_seq)); /* ^^^ */
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001107 if (idx == SRCU_STATE_IDLE) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001108 spin_lock_irq_rcu_node(ssp);
1109 if (ULONG_CMP_GE(ssp->srcu_gp_seq, ssp->srcu_gp_seq_needed)) {
1110 WARN_ON_ONCE(rcu_seq_state(ssp->srcu_gp_seq));
1111 spin_unlock_irq_rcu_node(ssp);
1112 mutex_unlock(&ssp->srcu_gp_mutex);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001113 return;
1114 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001115 idx = rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq));
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001116 if (idx == SRCU_STATE_IDLE)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001117 srcu_gp_start(ssp);
1118 spin_unlock_irq_rcu_node(ssp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001119 if (idx != SRCU_STATE_IDLE) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001120 mutex_unlock(&ssp->srcu_gp_mutex);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001121 return; /* Someone else started the grace period. */
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001122 }
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001123 }
1124
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001125 if (rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq)) == SRCU_STATE_SCAN1) {
1126 idx = 1 ^ (ssp->srcu_idx & 1);
1127 if (!try_check_zero(ssp, idx, 1)) {
1128 mutex_unlock(&ssp->srcu_gp_mutex);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001129 return; /* readers present, retry later. */
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001130 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001131 srcu_flip(ssp);
1132 rcu_seq_set_state(&ssp->srcu_gp_seq, SRCU_STATE_SCAN2);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001133 }
1134
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001135 if (rcu_seq_state(READ_ONCE(ssp->srcu_gp_seq)) == SRCU_STATE_SCAN2) {
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001136
1137 /*
1138 * SRCU read-side critical sections are normally short,
1139 * so check at least twice in quick succession after a flip.
1140 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001141 idx = 1 ^ (ssp->srcu_idx & 1);
1142 if (!try_check_zero(ssp, idx, 2)) {
1143 mutex_unlock(&ssp->srcu_gp_mutex);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001144 return; /* readers present, retry later. */
1145 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001146 srcu_gp_end(ssp); /* Releases ->srcu_gp_mutex. */
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001147 }
1148}
1149
1150/*
1151 * Invoke a limited number of SRCU callbacks that have passed through
1152 * their grace period. If there are more to do, SRCU will reschedule
1153 * the workqueue. Note that needed memory barriers have been executed
1154 * in this task's context by srcu_readers_active_idx_check().
1155 */
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001156static void srcu_invoke_callbacks(struct work_struct *work)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001157{
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001158 bool more;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001159 struct rcu_cblist ready_cbs;
1160 struct rcu_head *rhp;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001161 struct srcu_data *sdp;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001162 struct srcu_struct *ssp;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001163
Sebastian Andrzej Siewiore81baf42018-12-11 12:12:38 +01001164 sdp = container_of(work, struct srcu_data, work);
1165
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001166 ssp = sdp->ssp;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001167 rcu_cblist_init(&ready_cbs);
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001168 spin_lock_irq_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001169 rcu_segcblist_advance(&sdp->srcu_cblist,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001170 rcu_seq_current(&ssp->srcu_gp_seq));
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001171 if (sdp->srcu_cblist_invoking ||
1172 !rcu_segcblist_ready_cbs(&sdp->srcu_cblist)) {
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001173 spin_unlock_irq_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001174 return; /* Someone else on the job or nothing to do. */
1175 }
1176
1177 /* We are on the job! Extract and invoke ready callbacks. */
1178 sdp->srcu_cblist_invoking = true;
1179 rcu_segcblist_extract_done_cbs(&sdp->srcu_cblist, &ready_cbs);
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001180 spin_unlock_irq_rcu_node(sdp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001181 rhp = rcu_cblist_dequeue(&ready_cbs);
1182 for (; rhp != NULL; rhp = rcu_cblist_dequeue(&ready_cbs)) {
Paul E. McKenneya6025382017-04-28 15:39:34 -07001183 debug_rcu_head_unqueue(rhp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001184 local_bh_disable();
1185 rhp->func(rhp);
1186 local_bh_enable();
1187 }
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001188
1189 /*
1190 * Update counts, accelerate new callbacks, and if needed,
1191 * schedule another round of callback invocation.
1192 */
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001193 spin_lock_irq_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001194 rcu_segcblist_insert_count(&sdp->srcu_cblist, &ready_cbs);
1195 (void)rcu_segcblist_accelerate(&sdp->srcu_cblist,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001196 rcu_seq_snap(&ssp->srcu_gp_seq));
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001197 sdp->srcu_cblist_invoking = false;
1198 more = rcu_segcblist_ready_cbs(&sdp->srcu_cblist);
Paul E. McKenneyd6331982017-10-10 13:52:30 -07001199 spin_unlock_irq_rcu_node(sdp);
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001200 if (more)
1201 srcu_schedule_cbs_sdp(sdp, 0);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001202}
1203
1204/*
1205 * Finished one round of SRCU grace period. Start another if there are
1206 * more SRCU callbacks queued, otherwise put SRCU into not-running state.
1207 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001208static void srcu_reschedule(struct srcu_struct *ssp, unsigned long delay)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001209{
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001210 bool pushgp = true;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001211
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001212 spin_lock_irq_rcu_node(ssp);
1213 if (ULONG_CMP_GE(ssp->srcu_gp_seq, ssp->srcu_gp_seq_needed)) {
1214 if (!WARN_ON_ONCE(rcu_seq_state(ssp->srcu_gp_seq))) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001215 /* All requests fulfilled, time to go idle. */
1216 pushgp = false;
1217 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001218 } else if (!rcu_seq_state(ssp->srcu_gp_seq)) {
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001219 /* Outstanding request and no GP. Start one. */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001220 srcu_gp_start(ssp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001221 }
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001222 spin_unlock_irq_rcu_node(ssp);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001223
Paul E. McKenneyda915ad2017-04-05 09:01:53 -07001224 if (pushgp)
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001225 queue_delayed_work(rcu_gp_wq, &ssp->work, delay);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001226}
1227
1228/*
1229 * This is the work-queue function that handles SRCU grace periods.
1230 */
Paul E. McKenney0d8a1e82017-06-15 17:06:38 -07001231static void process_srcu(struct work_struct *work)
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001232{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001233 struct srcu_struct *ssp;
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001234
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001235 ssp = container_of(work, struct srcu_struct, work.work);
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001236
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001237 srcu_advance_state(ssp);
1238 srcu_reschedule(ssp, srcu_get_delay(ssp));
Paul E. McKenneydad81a22017-03-25 17:23:44 -07001239}
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001240
1241void srcutorture_get_gp_data(enum rcutorture_type test_type,
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001242 struct srcu_struct *ssp, int *flags,
Paul E. McKenneyaebc8262018-05-01 06:42:51 -07001243 unsigned long *gp_seq)
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001244{
1245 if (test_type != SRCU_FLAVOR)
1246 return;
1247 *flags = 0;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001248 *gp_seq = rcu_seq_current(&ssp->srcu_gp_seq);
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001249}
1250EXPORT_SYMBOL_GPL(srcutorture_get_gp_data);
Paul E. McKenney1f4f6da2017-04-21 11:16:32 -07001251
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001252void srcu_torture_stats_print(struct srcu_struct *ssp, char *tt, char *tf)
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001253{
1254 int cpu;
1255 int idx;
Paul E. McKenneyac3748c2017-05-22 13:59:52 -07001256 unsigned long s0 = 0, s1 = 0;
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001257
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001258 idx = ssp->srcu_idx & 0x1;
Paul E. McKenney52e17ba2018-06-19 08:54:37 -07001259 pr_alert("%s%s Tree SRCU g%ld per-CPU(idx=%d):",
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001260 tt, tf, rcu_seq_current(&ssp->srcu_gp_seq), idx);
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001261 for_each_possible_cpu(cpu) {
1262 unsigned long l0, l1;
1263 unsigned long u0, u1;
1264 long c0, c1;
Paul E. McKenney5ab07a82018-05-22 12:28:04 -07001265 struct srcu_data *sdp;
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001266
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001267 sdp = per_cpu_ptr(ssp->sda, cpu);
Paul E. McKenney5ab07a82018-05-22 12:28:04 -07001268 u0 = sdp->srcu_unlock_count[!idx];
1269 u1 = sdp->srcu_unlock_count[idx];
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001270
1271 /*
1272 * Make sure that a lock is always counted if the corresponding
1273 * unlock is counted.
1274 */
1275 smp_rmb();
1276
Paul E. McKenney5ab07a82018-05-22 12:28:04 -07001277 l0 = sdp->srcu_lock_count[!idx];
1278 l1 = sdp->srcu_lock_count[idx];
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001279
1280 c0 = l0 - u0;
1281 c1 = l1 - u1;
Paul E. McKenney5ab07a82018-05-22 12:28:04 -07001282 pr_cont(" %d(%ld,%ld %1p)",
1283 cpu, c0, c1, rcu_segcblist_head(&sdp->srcu_cblist));
Paul E. McKenneyac3748c2017-05-22 13:59:52 -07001284 s0 += c0;
1285 s1 += c1;
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001286 }
Paul E. McKenneyac3748c2017-05-22 13:59:52 -07001287 pr_cont(" T(%ld,%ld)\n", s0, s1);
Paul E. McKenney115a1a52017-05-22 13:31:03 -07001288}
1289EXPORT_SYMBOL_GPL(srcu_torture_stats_print);
1290
Paul E. McKenney1f4f6da2017-04-21 11:16:32 -07001291static int __init srcu_bootup_announce(void)
1292{
1293 pr_info("Hierarchical SRCU implementation.\n");
Paul E. McKenney0c8e0e32017-04-28 11:24:22 -07001294 if (exp_holdoff != DEFAULT_SRCU_EXP_HOLDOFF)
1295 pr_info("\tNon-default auto-expedite holdoff of %lu ns.\n", exp_holdoff);
Paul E. McKenney1f4f6da2017-04-21 11:16:32 -07001296 return 0;
1297}
1298early_initcall(srcu_bootup_announce);
Paul E. McKenneye0fcba92018-08-14 08:45:54 -07001299
1300void __init srcu_init(void)
1301{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001302 struct srcu_struct *ssp;
Paul E. McKenneye0fcba92018-08-14 08:45:54 -07001303
1304 srcu_init_done = true;
1305 while (!list_empty(&srcu_boot_list)) {
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001306 ssp = list_first_entry(&srcu_boot_list, struct srcu_struct,
Paul E. McKenney4e6ea4e2018-08-14 14:41:49 -07001307 work.work.entry);
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -07001308 check_init_srcu_struct(ssp);
1309 list_del_init(&ssp->work.work.entry);
1310 queue_work(rcu_gp_wq, &ssp->work.work);
Paul E. McKenneye0fcba92018-08-14 08:45:54 -07001311 }
1312}
Paul E. McKenneyfe15b502019-04-05 16:15:00 -07001313
1314#ifdef CONFIG_MODULES
1315
1316/* Initialize any global-scope srcu_struct structures used by this module. */
1317static int srcu_module_coming(struct module *mod)
1318{
1319 int i;
1320 struct srcu_struct **sspp = mod->srcu_struct_ptrs;
1321 int ret;
1322
1323 for (i = 0; i < mod->num_srcu_structs; i++) {
1324 ret = init_srcu_struct(*(sspp++));
1325 if (WARN_ON_ONCE(ret))
1326 return ret;
1327 }
1328 return 0;
1329}
1330
1331/* Clean up any global-scope srcu_struct structures used by this module. */
1332static void srcu_module_going(struct module *mod)
1333{
1334 int i;
1335 struct srcu_struct **sspp = mod->srcu_struct_ptrs;
1336
1337 for (i = 0; i < mod->num_srcu_structs; i++)
1338 cleanup_srcu_struct(*(sspp++));
1339}
1340
1341/* Handle one module, either coming or going. */
1342static int srcu_module_notify(struct notifier_block *self,
1343 unsigned long val, void *data)
1344{
1345 struct module *mod = data;
1346 int ret = 0;
1347
1348 switch (val) {
1349 case MODULE_STATE_COMING:
1350 ret = srcu_module_coming(mod);
1351 break;
1352 case MODULE_STATE_GOING:
1353 srcu_module_going(mod);
1354 break;
1355 default:
1356 break;
1357 }
1358 return ret;
1359}
1360
1361static struct notifier_block srcu_module_nb = {
1362 .notifier_call = srcu_module_notify,
1363 .priority = 0,
1364};
1365
1366static __init int init_srcu_module_notifier(void)
1367{
1368 int ret;
1369
1370 ret = register_module_notifier(&srcu_module_nb);
1371 if (ret)
1372 pr_warn("Failed to register srcu module notifier\n");
1373 return ret;
1374}
1375late_initcall(init_srcu_module_notifier);
1376
1377#endif /* #ifdef CONFIG_MODULES */