]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/rcu/tree.c
Merge branch 'core-smp-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / kernel / rcu / tree.c
CommitLineData
64db4cff
PM
1/*
2 * Read-Copy Update mechanism for mutual exclusion
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
87de1cfd
PM
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
64db4cff
PM
17 *
18 * Copyright IBM Corporation, 2008
19 *
20 * Authors: Dipankar Sarma <dipankar@in.ibm.com>
21 * Manfred Spraul <manfred@colorfullife.com>
22 * Paul E. McKenney <paulmck@linux.vnet.ibm.com> Hierarchical version
23 *
24 * Based on the original work by Paul McKenney <paulmck@us.ibm.com>
25 * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen.
26 *
27 * For detailed explanation of Read-Copy Update mechanism see -
a71fca58 28 * Documentation/RCU
64db4cff
PM
29 */
30#include <linux/types.h>
31#include <linux/kernel.h>
32#include <linux/init.h>
33#include <linux/spinlock.h>
34#include <linux/smp.h>
35#include <linux/rcupdate.h>
36#include <linux/interrupt.h>
37#include <linux/sched.h>
c1dc0b9c 38#include <linux/nmi.h>
8826f3b0 39#include <linux/atomic.h>
64db4cff 40#include <linux/bitops.h>
9984de1a 41#include <linux/export.h>
64db4cff
PM
42#include <linux/completion.h>
43#include <linux/moduleparam.h>
44#include <linux/percpu.h>
45#include <linux/notifier.h>
46#include <linux/cpu.h>
47#include <linux/mutex.h>
48#include <linux/time.h>
bbad9379 49#include <linux/kernel_stat.h>
a26ac245
PM
50#include <linux/wait.h>
51#include <linux/kthread.h>
268bb0ce 52#include <linux/prefetch.h>
3d3b7db0
PM
53#include <linux/delay.h>
54#include <linux/stop_machine.h>
661a85dc 55#include <linux/random.h>
af658dca 56#include <linux/trace_events.h>
d1d74d14 57#include <linux/suspend.h>
64db4cff 58
4102adab 59#include "tree.h"
29c00b4a 60#include "rcu.h"
9f77da9f 61
4102adab
PM
62#ifdef MODULE_PARAM_PREFIX
63#undef MODULE_PARAM_PREFIX
64#endif
65#define MODULE_PARAM_PREFIX "rcutree."
66
64db4cff
PM
67/* Data structures. */
68
f7f7bac9
SRRH
69/*
70 * In order to export the rcu_state name to the tracing tools, it
71 * needs to be added in the __tracepoint_string section.
72 * This requires defining a separate variable tp_<sname>_varname
73 * that points to the string being used, and this will allow
74 * the tracing userspace tools to be able to decipher the string
75 * address to the matching string.
76 */
a8a29b3b
AB
77#ifdef CONFIG_TRACING
78# define DEFINE_RCU_TPS(sname) \
f7f7bac9 79static char sname##_varname[] = #sname; \
a8a29b3b
AB
80static const char *tp_##sname##_varname __used __tracepoint_string = sname##_varname;
81# define RCU_STATE_NAME(sname) sname##_varname
82#else
83# define DEFINE_RCU_TPS(sname)
84# define RCU_STATE_NAME(sname) __stringify(sname)
85#endif
86
87#define RCU_STATE_INITIALIZER(sname, sabbr, cr) \
88DEFINE_RCU_TPS(sname) \
c92fb057 89static DEFINE_PER_CPU_SHARED_ALIGNED(struct rcu_data, sname##_data); \
a41bfeb2 90struct rcu_state sname##_state = { \
6c90cc7b 91 .level = { &sname##_state.node[0] }, \
2723249a 92 .rda = &sname##_data, \
037b64ed 93 .call = cr, \
77f81fe0 94 .gp_state = RCU_GP_IDLE, \
42c3533e
PM
95 .gpnum = 0UL - 300UL, \
96 .completed = 0UL - 300UL, \
7b2e6011 97 .orphan_lock = __RAW_SPIN_LOCK_UNLOCKED(&sname##_state.orphan_lock), \
6c90cc7b
PM
98 .orphan_nxttail = &sname##_state.orphan_nxtlist, \
99 .orphan_donetail = &sname##_state.orphan_donelist, \
7be7f0be 100 .barrier_mutex = __MUTEX_INITIALIZER(sname##_state.barrier_mutex), \
a8a29b3b 101 .name = RCU_STATE_NAME(sname), \
a4889858 102 .abbr = sabbr, \
f6a12f34 103 .exp_mutex = __MUTEX_INITIALIZER(sname##_state.exp_mutex), \
3b5f668e 104 .exp_wake_mutex = __MUTEX_INITIALIZER(sname##_state.exp_wake_mutex), \
2723249a 105}
64db4cff 106
a41bfeb2
SRRH
107RCU_STATE_INITIALIZER(rcu_sched, 's', call_rcu_sched);
108RCU_STATE_INITIALIZER(rcu_bh, 'b', call_rcu_bh);
b1f77b05 109
b28a7c01 110static struct rcu_state *const rcu_state_p;
6ce75a23 111LIST_HEAD(rcu_struct_flavors);
27f4d280 112
a3dc2948
PM
113/* Dump rcu_node combining tree at boot to verify correct setup. */
114static bool dump_tree;
115module_param(dump_tree, bool, 0444);
7fa27001
PM
116/* Control rcu_node-tree auto-balancing at boot time. */
117static bool rcu_fanout_exact;
118module_param(rcu_fanout_exact, bool, 0444);
47d631af
PM
119/* Increase (but not decrease) the RCU_FANOUT_LEAF at boot time. */
120static int rcu_fanout_leaf = RCU_FANOUT_LEAF;
7e5c2dfb 121module_param(rcu_fanout_leaf, int, 0444);
f885b7f2 122int rcu_num_lvls __read_mostly = RCU_NUM_LVLS;
cb007102
AG
123/* Number of rcu_nodes at specified level. */
124static int num_rcu_lvl[] = NUM_RCU_LVL_INIT;
f885b7f2 125int rcu_num_nodes __read_mostly = NUM_RCU_NODES; /* Total # rcu_nodes in use. */
088e9d25
DBO
126/* panic() on RCU Stall sysctl. */
127int sysctl_panic_on_rcu_stall __read_mostly;
f885b7f2 128
b0d30417
PM
129/*
130 * The rcu_scheduler_active variable transitions from zero to one just
131 * before the first task is spawned. So when this variable is zero, RCU
132 * can assume that there is but one task, allowing RCU to (for example)
0d95092c 133 * optimize synchronize_rcu() to a simple barrier(). When this variable
b0d30417
PM
134 * is one, RCU must actually do all the hard work required to detect real
135 * grace periods. This variable is also used to suppress boot-time false
136 * positives from lockdep-RCU error checking.
137 */
bbad9379
PM
138int rcu_scheduler_active __read_mostly;
139EXPORT_SYMBOL_GPL(rcu_scheduler_active);
140
b0d30417
PM
141/*
142 * The rcu_scheduler_fully_active variable transitions from zero to one
143 * during the early_initcall() processing, which is after the scheduler
144 * is capable of creating new tasks. So RCU processing (for example,
145 * creating tasks for RCU priority boosting) must be delayed until after
146 * rcu_scheduler_fully_active transitions from zero to one. We also
147 * currently delay invocation of any RCU callbacks until after this point.
148 *
149 * It might later prove better for people registering RCU callbacks during
150 * early boot to take responsibility for these callbacks, but one step at
151 * a time.
152 */
153static int rcu_scheduler_fully_active __read_mostly;
154
0aa04b05
PM
155static void rcu_init_new_rnp(struct rcu_node *rnp_leaf);
156static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf);
5d01bbd1 157static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu);
a46e0899
PM
158static void invoke_rcu_core(void);
159static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp);
6587a23b
PM
160static void rcu_report_exp_rdp(struct rcu_state *rsp,
161 struct rcu_data *rdp, bool wake);
3549c2bc 162static void sync_sched_exp_online_cleanup(int cpu);
a26ac245 163
a94844b2 164/* rcuc/rcub kthread realtime priority */
26730f55 165#ifdef CONFIG_RCU_KTHREAD_PRIO
a94844b2 166static int kthread_prio = CONFIG_RCU_KTHREAD_PRIO;
26730f55
PM
167#else /* #ifdef CONFIG_RCU_KTHREAD_PRIO */
168static int kthread_prio = IS_ENABLED(CONFIG_RCU_BOOST) ? 1 : 0;
169#endif /* #else #ifdef CONFIG_RCU_KTHREAD_PRIO */
a94844b2
PM
170module_param(kthread_prio, int, 0644);
171
8d7dc928 172/* Delay in jiffies for grace-period initialization delays, debug only. */
0f41c0dd
PM
173
174#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT
175static int gp_preinit_delay = CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT_DELAY;
176module_param(gp_preinit_delay, int, 0644);
177#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
178static const int gp_preinit_delay;
179#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
180
8d7dc928
PM
181#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT
182static int gp_init_delay = CONFIG_RCU_TORTURE_TEST_SLOW_INIT_DELAY;
37745d28 183module_param(gp_init_delay, int, 0644);
8d7dc928
PM
184#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
185static const int gp_init_delay;
186#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
eab128e8 187
0f41c0dd
PM
188#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP
189static int gp_cleanup_delay = CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP_DELAY;
190module_param(gp_cleanup_delay, int, 0644);
191#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
192static const int gp_cleanup_delay;
193#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
194
eab128e8
PM
195/*
196 * Number of grace periods between delays, normalized by the duration of
197 * the delay. The longer the the delay, the more the grace periods between
198 * each delay. The reason for this normalization is that it means that,
199 * for non-zero delays, the overall slowdown of grace periods is constant
200 * regardless of the duration of the delay. This arrangement balances
201 * the need for long delays to increase some race probabilities with the
202 * need for fast grace periods to increase other race probabilities.
203 */
204#define PER_RCU_NODE_PERIOD 3 /* Number of grace periods between delays. */
37745d28 205
4a298656
PM
206/*
207 * Track the rcutorture test sequence number and the update version
208 * number within a given test. The rcutorture_testseq is incremented
209 * on every rcutorture module load and unload, so has an odd value
210 * when a test is running. The rcutorture_vernum is set to zero
211 * when rcutorture starts and is incremented on each rcutorture update.
212 * These variables enable correlating rcutorture output with the
213 * RCU tracing information.
214 */
215unsigned long rcutorture_testseq;
216unsigned long rcutorture_vernum;
217
0aa04b05
PM
218/*
219 * Compute the mask of online CPUs for the specified rcu_node structure.
220 * This will not be stable unless the rcu_node structure's ->lock is
221 * held, but the bit corresponding to the current CPU will be stable
222 * in most contexts.
223 */
224unsigned long rcu_rnp_online_cpus(struct rcu_node *rnp)
225{
7d0ae808 226 return READ_ONCE(rnp->qsmaskinitnext);
0aa04b05
PM
227}
228
fc2219d4 229/*
7d0ae808 230 * Return true if an RCU grace period is in progress. The READ_ONCE()s
fc2219d4
PM
231 * permit this function to be invoked without holding the root rcu_node
232 * structure's ->lock, but of course results can be subject to change.
233 */
234static int rcu_gp_in_progress(struct rcu_state *rsp)
235{
7d0ae808 236 return READ_ONCE(rsp->completed) != READ_ONCE(rsp->gpnum);
fc2219d4
PM
237}
238
b1f77b05 239/*
d6714c22 240 * Note a quiescent state. Because we do not need to know
b1f77b05 241 * how many quiescent states passed, just if there was at least
d6714c22 242 * one since the start of the grace period, this just sets a flag.
e4cc1f22 243 * The caller must have disabled preemption.
b1f77b05 244 */
284a8c93 245void rcu_sched_qs(void)
b1f77b05 246{
fecbf6f0
PM
247 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.s))
248 return;
249 trace_rcu_grace_period(TPS("rcu_sched"),
250 __this_cpu_read(rcu_sched_data.gpnum),
251 TPS("cpuqs"));
252 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.norm, false);
253 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))
254 return;
46a5d164
PM
255 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.exp, false);
256 rcu_report_exp_rdp(&rcu_sched_state,
257 this_cpu_ptr(&rcu_sched_data), true);
b1f77b05
IM
258}
259
284a8c93 260void rcu_bh_qs(void)
b1f77b05 261{
5b74c458 262 if (__this_cpu_read(rcu_bh_data.cpu_no_qs.s)) {
284a8c93
PM
263 trace_rcu_grace_period(TPS("rcu_bh"),
264 __this_cpu_read(rcu_bh_data.gpnum),
265 TPS("cpuqs"));
5b74c458 266 __this_cpu_write(rcu_bh_data.cpu_no_qs.b.norm, false);
284a8c93 267 }
b1f77b05 268}
64db4cff 269
4a81e832
PM
270static DEFINE_PER_CPU(int, rcu_sched_qs_mask);
271
272static DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks) = {
273 .dynticks_nesting = DYNTICK_TASK_EXIT_IDLE,
274 .dynticks = ATOMIC_INIT(1),
275#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
276 .dynticks_idle_nesting = DYNTICK_TASK_NEST_VALUE,
277 .dynticks_idle = ATOMIC_INIT(1),
278#endif /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
279};
280
5cd37193
PM
281DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, rcu_qs_ctr);
282EXPORT_PER_CPU_SYMBOL_GPL(rcu_qs_ctr);
283
4a81e832
PM
284/*
285 * Let the RCU core know that this CPU has gone through the scheduler,
286 * which is a quiescent state. This is called when the need for a
287 * quiescent state is urgent, so we burn an atomic operation and full
288 * memory barriers to let the RCU core know about it, regardless of what
289 * this CPU might (or might not) do in the near future.
290 *
291 * We inform the RCU core by emulating a zero-duration dyntick-idle
292 * period, which we in turn do by incrementing the ->dynticks counter
293 * by two.
46a5d164
PM
294 *
295 * The caller must have disabled interrupts.
4a81e832
PM
296 */
297static void rcu_momentary_dyntick_idle(void)
298{
4a81e832
PM
299 struct rcu_data *rdp;
300 struct rcu_dynticks *rdtp;
301 int resched_mask;
302 struct rcu_state *rsp;
303
4a81e832
PM
304 /*
305 * Yes, we can lose flag-setting operations. This is OK, because
306 * the flag will be set again after some delay.
307 */
308 resched_mask = raw_cpu_read(rcu_sched_qs_mask);
309 raw_cpu_write(rcu_sched_qs_mask, 0);
310
311 /* Find the flavor that needs a quiescent state. */
312 for_each_rcu_flavor(rsp) {
313 rdp = raw_cpu_ptr(rsp->rda);
314 if (!(resched_mask & rsp->flavor_mask))
315 continue;
316 smp_mb(); /* rcu_sched_qs_mask before cond_resched_completed. */
7d0ae808
PM
317 if (READ_ONCE(rdp->mynode->completed) !=
318 READ_ONCE(rdp->cond_resched_completed))
4a81e832
PM
319 continue;
320
321 /*
322 * Pretend to be momentarily idle for the quiescent state.
323 * This allows the grace-period kthread to record the
324 * quiescent state, with no need for this CPU to do anything
325 * further.
326 */
327 rdtp = this_cpu_ptr(&rcu_dynticks);
328 smp_mb__before_atomic(); /* Earlier stuff before QS. */
329 atomic_add(2, &rdtp->dynticks); /* QS. */
330 smp_mb__after_atomic(); /* Later stuff after QS. */
331 break;
332 }
4a81e832
PM
333}
334
25502a6c
PM
335/*
336 * Note a context switch. This is a quiescent state for RCU-sched,
337 * and requires special handling for preemptible RCU.
46a5d164 338 * The caller must have disabled interrupts.
25502a6c 339 */
38200cf2 340void rcu_note_context_switch(void)
25502a6c 341{
bb73c52b 342 barrier(); /* Avoid RCU read-side critical sections leaking down. */
f7f7bac9 343 trace_rcu_utilization(TPS("Start context switch"));
284a8c93 344 rcu_sched_qs();
38200cf2 345 rcu_preempt_note_context_switch();
4a81e832
PM
346 if (unlikely(raw_cpu_read(rcu_sched_qs_mask)))
347 rcu_momentary_dyntick_idle();
f7f7bac9 348 trace_rcu_utilization(TPS("End context switch"));
bb73c52b 349 barrier(); /* Avoid RCU read-side critical sections leaking up. */
25502a6c 350}
29ce8310 351EXPORT_SYMBOL_GPL(rcu_note_context_switch);
25502a6c 352
5cd37193 353/*
1925d196 354 * Register a quiescent state for all RCU flavors. If there is an
5cd37193
PM
355 * emergency, invoke rcu_momentary_dyntick_idle() to do a heavy-weight
356 * dyntick-idle quiescent state visible to other CPUs (but only for those
1925d196 357 * RCU flavors in desperate need of a quiescent state, which will normally
5cd37193
PM
358 * be none of them). Either way, do a lightweight quiescent state for
359 * all RCU flavors.
bb73c52b
BF
360 *
361 * The barrier() calls are redundant in the common case when this is
362 * called externally, but just in case this is called from within this
363 * file.
364 *
5cd37193
PM
365 */
366void rcu_all_qs(void)
367{
46a5d164
PM
368 unsigned long flags;
369
bb73c52b 370 barrier(); /* Avoid RCU read-side critical sections leaking down. */
46a5d164
PM
371 if (unlikely(raw_cpu_read(rcu_sched_qs_mask))) {
372 local_irq_save(flags);
5cd37193 373 rcu_momentary_dyntick_idle();
46a5d164
PM
374 local_irq_restore(flags);
375 }
a1e12248
PM
376 if (unlikely(raw_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))) {
377 /*
378 * Yes, we just checked a per-CPU variable with preemption
379 * enabled, so we might be migrated to some other CPU at
380 * this point. That is OK because in that case, the
381 * migration will supply the needed quiescent state.
382 * We might end up needlessly disabling preemption and
383 * invoking rcu_sched_qs() on the destination CPU, but
384 * the probability and cost are both quite low, so this
385 * should not be a problem in practice.
386 */
387 preempt_disable();
388 rcu_sched_qs();
389 preempt_enable();
390 }
5cd37193 391 this_cpu_inc(rcu_qs_ctr);
bb73c52b 392 barrier(); /* Avoid RCU read-side critical sections leaking up. */
5cd37193
PM
393}
394EXPORT_SYMBOL_GPL(rcu_all_qs);
395
878d7439
ED
396static long blimit = 10; /* Maximum callbacks per rcu_do_batch. */
397static long qhimark = 10000; /* If this many pending, ignore blimit. */
398static long qlowmark = 100; /* Once only this many pending, use blimit. */
64db4cff 399
878d7439
ED
400module_param(blimit, long, 0444);
401module_param(qhimark, long, 0444);
402module_param(qlowmark, long, 0444);
3d76c082 403
026ad283
PM
404static ulong jiffies_till_first_fqs = ULONG_MAX;
405static ulong jiffies_till_next_fqs = ULONG_MAX;
8c7c4829 406static bool rcu_kick_kthreads;
d40011f6
PM
407
408module_param(jiffies_till_first_fqs, ulong, 0644);
409module_param(jiffies_till_next_fqs, ulong, 0644);
8c7c4829 410module_param(rcu_kick_kthreads, bool, 0644);
d40011f6 411
4a81e832
PM
412/*
413 * How long the grace period must be before we start recruiting
414 * quiescent-state help from rcu_note_context_switch().
415 */
416static ulong jiffies_till_sched_qs = HZ / 20;
417module_param(jiffies_till_sched_qs, ulong, 0644);
418
48a7639c 419static bool rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
910ee45d 420 struct rcu_data *rdp);
217af2a2
PM
421static void force_qs_rnp(struct rcu_state *rsp,
422 int (*f)(struct rcu_data *rsp, bool *isidle,
423 unsigned long *maxj),
424 bool *isidle, unsigned long *maxj);
4cdfc175 425static void force_quiescent_state(struct rcu_state *rsp);
e3950ecd 426static int rcu_pending(void);
64db4cff
PM
427
428/*
917963d0 429 * Return the number of RCU batches started thus far for debug & stats.
64db4cff 430 */
917963d0
PM
431unsigned long rcu_batches_started(void)
432{
433 return rcu_state_p->gpnum;
434}
435EXPORT_SYMBOL_GPL(rcu_batches_started);
436
437/*
438 * Return the number of RCU-sched batches started thus far for debug & stats.
64db4cff 439 */
917963d0
PM
440unsigned long rcu_batches_started_sched(void)
441{
442 return rcu_sched_state.gpnum;
443}
444EXPORT_SYMBOL_GPL(rcu_batches_started_sched);
445
446/*
447 * Return the number of RCU BH batches started thus far for debug & stats.
448 */
449unsigned long rcu_batches_started_bh(void)
450{
451 return rcu_bh_state.gpnum;
452}
453EXPORT_SYMBOL_GPL(rcu_batches_started_bh);
454
455/*
456 * Return the number of RCU batches completed thus far for debug & stats.
457 */
458unsigned long rcu_batches_completed(void)
459{
460 return rcu_state_p->completed;
461}
462EXPORT_SYMBOL_GPL(rcu_batches_completed);
463
464/*
465 * Return the number of RCU-sched batches completed thus far for debug & stats.
64db4cff 466 */
9733e4f0 467unsigned long rcu_batches_completed_sched(void)
64db4cff 468{
d6714c22 469 return rcu_sched_state.completed;
64db4cff 470}
d6714c22 471EXPORT_SYMBOL_GPL(rcu_batches_completed_sched);
64db4cff
PM
472
473/*
917963d0 474 * Return the number of RCU BH batches completed thus far for debug & stats.
64db4cff 475 */
9733e4f0 476unsigned long rcu_batches_completed_bh(void)
64db4cff
PM
477{
478 return rcu_bh_state.completed;
479}
480EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
481
291783b8
PM
482/*
483 * Return the number of RCU expedited batches completed thus far for
484 * debug & stats. Odd numbers mean that a batch is in progress, even
485 * numbers mean idle. The value returned will thus be roughly double
486 * the cumulative batches since boot.
487 */
488unsigned long rcu_exp_batches_completed(void)
489{
490 return rcu_state_p->expedited_sequence;
491}
492EXPORT_SYMBOL_GPL(rcu_exp_batches_completed);
493
494/*
495 * Return the number of RCU-sched expedited batches completed thus far
496 * for debug & stats. Similar to rcu_exp_batches_completed().
497 */
498unsigned long rcu_exp_batches_completed_sched(void)
499{
500 return rcu_sched_state.expedited_sequence;
501}
502EXPORT_SYMBOL_GPL(rcu_exp_batches_completed_sched);
503
a381d757
ACB
504/*
505 * Force a quiescent state.
506 */
507void rcu_force_quiescent_state(void)
508{
e534165b 509 force_quiescent_state(rcu_state_p);
a381d757
ACB
510}
511EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
512
bf66f18e
PM
513/*
514 * Force a quiescent state for RCU BH.
515 */
516void rcu_bh_force_quiescent_state(void)
517{
4cdfc175 518 force_quiescent_state(&rcu_bh_state);
bf66f18e
PM
519}
520EXPORT_SYMBOL_GPL(rcu_bh_force_quiescent_state);
521
e7580f33
PM
522/*
523 * Force a quiescent state for RCU-sched.
524 */
525void rcu_sched_force_quiescent_state(void)
526{
527 force_quiescent_state(&rcu_sched_state);
528}
529EXPORT_SYMBOL_GPL(rcu_sched_force_quiescent_state);
530
afea227f
PM
531/*
532 * Show the state of the grace-period kthreads.
533 */
534void show_rcu_gp_kthreads(void)
535{
536 struct rcu_state *rsp;
537
538 for_each_rcu_flavor(rsp) {
539 pr_info("%s: wait state: %d ->state: %#lx\n",
540 rsp->name, rsp->gp_state, rsp->gp_kthread->state);
541 /* sched_show_task(rsp->gp_kthread); */
542 }
543}
544EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
545
4a298656
PM
546/*
547 * Record the number of times rcutorture tests have been initiated and
548 * terminated. This information allows the debugfs tracing stats to be
549 * correlated to the rcutorture messages, even when the rcutorture module
550 * is being repeatedly loaded and unloaded. In other words, we cannot
551 * store this state in rcutorture itself.
552 */
553void rcutorture_record_test_transition(void)
554{
555 rcutorture_testseq++;
556 rcutorture_vernum = 0;
557}
558EXPORT_SYMBOL_GPL(rcutorture_record_test_transition);
559
ad0dc7f9
PM
560/*
561 * Send along grace-period-related data for rcutorture diagnostics.
562 */
563void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
564 unsigned long *gpnum, unsigned long *completed)
565{
566 struct rcu_state *rsp = NULL;
567
568 switch (test_type) {
569 case RCU_FLAVOR:
e534165b 570 rsp = rcu_state_p;
ad0dc7f9
PM
571 break;
572 case RCU_BH_FLAVOR:
573 rsp = &rcu_bh_state;
574 break;
575 case RCU_SCHED_FLAVOR:
576 rsp = &rcu_sched_state;
577 break;
578 default:
579 break;
580 }
581 if (rsp != NULL) {
7d0ae808
PM
582 *flags = READ_ONCE(rsp->gp_flags);
583 *gpnum = READ_ONCE(rsp->gpnum);
584 *completed = READ_ONCE(rsp->completed);
ad0dc7f9
PM
585 return;
586 }
587 *flags = 0;
588 *gpnum = 0;
589 *completed = 0;
590}
591EXPORT_SYMBOL_GPL(rcutorture_get_gp_data);
592
4a298656
PM
593/*
594 * Record the number of writer passes through the current rcutorture test.
595 * This is also used to correlate debugfs tracing stats with the rcutorture
596 * messages.
597 */
598void rcutorture_record_progress(unsigned long vernum)
599{
600 rcutorture_vernum++;
601}
602EXPORT_SYMBOL_GPL(rcutorture_record_progress);
603
64db4cff
PM
604/*
605 * Does the CPU have callbacks ready to be invoked?
606 */
607static int
608cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
609{
3fbfbf7a
PM
610 return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL] &&
611 rdp->nxttail[RCU_DONE_TAIL] != NULL;
64db4cff
PM
612}
613
365187fb
PM
614/*
615 * Return the root node of the specified rcu_state structure.
616 */
617static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
618{
619 return &rsp->node[0];
620}
621
622/*
623 * Is there any need for future grace periods?
624 * Interrupts must be disabled. If the caller does not hold the root
625 * rnp_node structure's ->lock, the results are advisory only.
626 */
627static int rcu_future_needs_gp(struct rcu_state *rsp)
628{
629 struct rcu_node *rnp = rcu_get_root(rsp);
7d0ae808 630 int idx = (READ_ONCE(rnp->completed) + 1) & 0x1;
365187fb
PM
631 int *fp = &rnp->need_future_gp[idx];
632
7d0ae808 633 return READ_ONCE(*fp);
365187fb
PM
634}
635
64db4cff 636/*
dc35c893
PM
637 * Does the current CPU require a not-yet-started grace period?
638 * The caller must have disabled interrupts to prevent races with
639 * normal callback registry.
64db4cff 640 */
d117c8aa 641static bool
64db4cff
PM
642cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
643{
dc35c893 644 int i;
3fbfbf7a 645
dc35c893 646 if (rcu_gp_in_progress(rsp))
d117c8aa 647 return false; /* No, a grace period is already in progress. */
365187fb 648 if (rcu_future_needs_gp(rsp))
d117c8aa 649 return true; /* Yes, a no-CBs CPU needs one. */
dc35c893 650 if (!rdp->nxttail[RCU_NEXT_TAIL])
d117c8aa 651 return false; /* No, this is a no-CBs (or offline) CPU. */
dc35c893 652 if (*rdp->nxttail[RCU_NEXT_READY_TAIL])
d117c8aa 653 return true; /* Yes, CPU has newly registered callbacks. */
dc35c893
PM
654 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++)
655 if (rdp->nxttail[i - 1] != rdp->nxttail[i] &&
7d0ae808 656 ULONG_CMP_LT(READ_ONCE(rsp->completed),
dc35c893 657 rdp->nxtcompleted[i]))
d117c8aa
PM
658 return true; /* Yes, CBs for future grace period. */
659 return false; /* No grace period needed. */
64db4cff
PM
660}
661
9b2e4f18 662/*
adf5091e 663 * rcu_eqs_enter_common - current CPU is moving towards extended quiescent state
9b2e4f18
PM
664 *
665 * If the new value of the ->dynticks_nesting counter now is zero,
666 * we really have entered idle, and must do the appropriate accounting.
667 * The caller must have disabled interrupts.
668 */
28ced795 669static void rcu_eqs_enter_common(long long oldval, bool user)
9b2e4f18 670{
96d3fd0d
PM
671 struct rcu_state *rsp;
672 struct rcu_data *rdp;
28ced795 673 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
96d3fd0d 674
f7f7bac9 675 trace_rcu_dyntick(TPS("Start"), oldval, rdtp->dynticks_nesting);
1ce46ee5
PM
676 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
677 !user && !is_idle_task(current)) {
289828e6
PM
678 struct task_struct *idle __maybe_unused =
679 idle_task(smp_processor_id());
0989cb46 680
f7f7bac9 681 trace_rcu_dyntick(TPS("Error on entry: not idle task"), oldval, 0);
274529ba 682 rcu_ftrace_dump(DUMP_ORIG);
0989cb46
PM
683 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
684 current->pid, current->comm,
685 idle->pid, idle->comm); /* must be idle task! */
9b2e4f18 686 }
96d3fd0d
PM
687 for_each_rcu_flavor(rsp) {
688 rdp = this_cpu_ptr(rsp->rda);
689 do_nocb_deferred_wakeup(rdp);
690 }
198bbf81 691 rcu_prepare_for_idle();
9b2e4f18 692 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
4e857c58 693 smp_mb__before_atomic(); /* See above. */
9b2e4f18 694 atomic_inc(&rdtp->dynticks);
4e857c58 695 smp_mb__after_atomic(); /* Force ordering with next sojourn. */
1ce46ee5
PM
696 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
697 atomic_read(&rdtp->dynticks) & 0x1);
176f8f7a 698 rcu_dynticks_task_enter();
c44e2cdd
PM
699
700 /*
adf5091e 701 * It is illegal to enter an extended quiescent state while
c44e2cdd
PM
702 * in an RCU read-side critical section.
703 */
f78f5b90
PM
704 RCU_LOCKDEP_WARN(lock_is_held(&rcu_lock_map),
705 "Illegal idle entry in RCU read-side critical section.");
706 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map),
707 "Illegal idle entry in RCU-bh read-side critical section.");
708 RCU_LOCKDEP_WARN(lock_is_held(&rcu_sched_lock_map),
709 "Illegal idle entry in RCU-sched read-side critical section.");
9b2e4f18 710}
64db4cff 711
adf5091e
FW
712/*
713 * Enter an RCU extended quiescent state, which can be either the
714 * idle loop or adaptive-tickless usermode execution.
64db4cff 715 */
adf5091e 716static void rcu_eqs_enter(bool user)
64db4cff 717{
4145fa7f 718 long long oldval;
64db4cff
PM
719 struct rcu_dynticks *rdtp;
720
c9d4b0af 721 rdtp = this_cpu_ptr(&rcu_dynticks);
4145fa7f 722 oldval = rdtp->dynticks_nesting;
1ce46ee5
PM
723 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
724 (oldval & DYNTICK_TASK_NEST_MASK) == 0);
3a592405 725 if ((oldval & DYNTICK_TASK_NEST_MASK) == DYNTICK_TASK_NEST_VALUE) {
29e37d81 726 rdtp->dynticks_nesting = 0;
28ced795 727 rcu_eqs_enter_common(oldval, user);
3a592405 728 } else {
29e37d81 729 rdtp->dynticks_nesting -= DYNTICK_TASK_NEST_VALUE;
3a592405 730 }
64db4cff 731}
adf5091e
FW
732
733/**
734 * rcu_idle_enter - inform RCU that current CPU is entering idle
735 *
736 * Enter idle mode, in other words, -leave- the mode in which RCU
737 * read-side critical sections can occur. (Though RCU read-side
738 * critical sections can occur in irq handlers in idle, a possibility
739 * handled by irq_enter() and irq_exit().)
740 *
741 * We crowbar the ->dynticks_nesting field to zero to allow for
742 * the possibility of usermode upcalls having messed up our count
743 * of interrupt nesting level during the prior busy period.
744 */
745void rcu_idle_enter(void)
746{
c5d900bf
FW
747 unsigned long flags;
748
749 local_irq_save(flags);
cb349ca9 750 rcu_eqs_enter(false);
28ced795 751 rcu_sysidle_enter(0);
c5d900bf 752 local_irq_restore(flags);
adf5091e 753}
8a2ecf47 754EXPORT_SYMBOL_GPL(rcu_idle_enter);
64db4cff 755
d1ec4c34 756#ifdef CONFIG_NO_HZ_FULL
adf5091e
FW
757/**
758 * rcu_user_enter - inform RCU that we are resuming userspace.
759 *
760 * Enter RCU idle mode right before resuming userspace. No use of RCU
761 * is permitted between this call and rcu_user_exit(). This way the
762 * CPU doesn't need to maintain the tick for RCU maintenance purposes
763 * when the CPU runs in userspace.
764 */
765void rcu_user_enter(void)
766{
91d1aa43 767 rcu_eqs_enter(1);
adf5091e 768}
d1ec4c34 769#endif /* CONFIG_NO_HZ_FULL */
19dd1591 770
9b2e4f18
PM
771/**
772 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
773 *
774 * Exit from an interrupt handler, which might possibly result in entering
775 * idle mode, in other words, leaving the mode in which read-side critical
7c9906ca 776 * sections can occur. The caller must have disabled interrupts.
64db4cff 777 *
9b2e4f18
PM
778 * This code assumes that the idle loop never does anything that might
779 * result in unbalanced calls to irq_enter() and irq_exit(). If your
780 * architecture violates this assumption, RCU will give you what you
781 * deserve, good and hard. But very infrequently and irreproducibly.
782 *
783 * Use things like work queues to work around this limitation.
784 *
785 * You have been warned.
64db4cff 786 */
9b2e4f18 787void rcu_irq_exit(void)
64db4cff 788{
4145fa7f 789 long long oldval;
64db4cff
PM
790 struct rcu_dynticks *rdtp;
791
7c9906ca 792 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!");
c9d4b0af 793 rdtp = this_cpu_ptr(&rcu_dynticks);
4145fa7f 794 oldval = rdtp->dynticks_nesting;
9b2e4f18 795 rdtp->dynticks_nesting--;
1ce46ee5
PM
796 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
797 rdtp->dynticks_nesting < 0);
b6fc6020 798 if (rdtp->dynticks_nesting)
f7f7bac9 799 trace_rcu_dyntick(TPS("--="), oldval, rdtp->dynticks_nesting);
b6fc6020 800 else
28ced795
CL
801 rcu_eqs_enter_common(oldval, true);
802 rcu_sysidle_enter(1);
7c9906ca
PM
803}
804
805/*
806 * Wrapper for rcu_irq_exit() where interrupts are enabled.
807 */
808void rcu_irq_exit_irqson(void)
809{
810 unsigned long flags;
811
812 local_irq_save(flags);
813 rcu_irq_exit();
9b2e4f18
PM
814 local_irq_restore(flags);
815}
816
817/*
adf5091e 818 * rcu_eqs_exit_common - current CPU moving away from extended quiescent state
9b2e4f18
PM
819 *
820 * If the new value of the ->dynticks_nesting counter was previously zero,
821 * we really have exited idle, and must do the appropriate accounting.
822 * The caller must have disabled interrupts.
823 */
28ced795 824static void rcu_eqs_exit_common(long long oldval, int user)
9b2e4f18 825{
28ced795
CL
826 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
827
176f8f7a 828 rcu_dynticks_task_exit();
4e857c58 829 smp_mb__before_atomic(); /* Force ordering w/previous sojourn. */
23b5c8fa
PM
830 atomic_inc(&rdtp->dynticks);
831 /* CPUs seeing atomic_inc() must see later RCU read-side crit sects */
4e857c58 832 smp_mb__after_atomic(); /* See above. */
1ce46ee5
PM
833 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
834 !(atomic_read(&rdtp->dynticks) & 0x1));
8fa7845d 835 rcu_cleanup_after_idle();
f7f7bac9 836 trace_rcu_dyntick(TPS("End"), oldval, rdtp->dynticks_nesting);
1ce46ee5
PM
837 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
838 !user && !is_idle_task(current)) {
289828e6
PM
839 struct task_struct *idle __maybe_unused =
840 idle_task(smp_processor_id());
0989cb46 841
f7f7bac9 842 trace_rcu_dyntick(TPS("Error on exit: not idle task"),
4145fa7f 843 oldval, rdtp->dynticks_nesting);
274529ba 844 rcu_ftrace_dump(DUMP_ORIG);
0989cb46
PM
845 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
846 current->pid, current->comm,
847 idle->pid, idle->comm); /* must be idle task! */
9b2e4f18
PM
848 }
849}
850
adf5091e
FW
851/*
852 * Exit an RCU extended quiescent state, which can be either the
853 * idle loop or adaptive-tickless usermode execution.
9b2e4f18 854 */
adf5091e 855static void rcu_eqs_exit(bool user)
9b2e4f18 856{
9b2e4f18
PM
857 struct rcu_dynticks *rdtp;
858 long long oldval;
859
c9d4b0af 860 rdtp = this_cpu_ptr(&rcu_dynticks);
9b2e4f18 861 oldval = rdtp->dynticks_nesting;
1ce46ee5 862 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && oldval < 0);
3a592405 863 if (oldval & DYNTICK_TASK_NEST_MASK) {
29e37d81 864 rdtp->dynticks_nesting += DYNTICK_TASK_NEST_VALUE;
3a592405 865 } else {
29e37d81 866 rdtp->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
28ced795 867 rcu_eqs_exit_common(oldval, user);
3a592405 868 }
9b2e4f18 869}
adf5091e
FW
870
871/**
872 * rcu_idle_exit - inform RCU that current CPU is leaving idle
873 *
874 * Exit idle mode, in other words, -enter- the mode in which RCU
875 * read-side critical sections can occur.
876 *
877 * We crowbar the ->dynticks_nesting field to DYNTICK_TASK_NEST to
878 * allow for the possibility of usermode upcalls messing up our count
879 * of interrupt nesting level during the busy period that is just
880 * now starting.
881 */
882void rcu_idle_exit(void)
883{
c5d900bf
FW
884 unsigned long flags;
885
886 local_irq_save(flags);
cb349ca9 887 rcu_eqs_exit(false);
28ced795 888 rcu_sysidle_exit(0);
c5d900bf 889 local_irq_restore(flags);
adf5091e 890}
8a2ecf47 891EXPORT_SYMBOL_GPL(rcu_idle_exit);
9b2e4f18 892
d1ec4c34 893#ifdef CONFIG_NO_HZ_FULL
adf5091e
FW
894/**
895 * rcu_user_exit - inform RCU that we are exiting userspace.
896 *
897 * Exit RCU idle mode while entering the kernel because it can
898 * run a RCU read side critical section anytime.
899 */
900void rcu_user_exit(void)
901{
91d1aa43 902 rcu_eqs_exit(1);
adf5091e 903}
d1ec4c34 904#endif /* CONFIG_NO_HZ_FULL */
19dd1591 905
9b2e4f18
PM
906/**
907 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle
908 *
909 * Enter an interrupt handler, which might possibly result in exiting
910 * idle mode, in other words, entering the mode in which read-side critical
7c9906ca 911 * sections can occur. The caller must have disabled interrupts.
9b2e4f18
PM
912 *
913 * Note that the Linux kernel is fully capable of entering an interrupt
914 * handler that it never exits, for example when doing upcalls to
915 * user mode! This code assumes that the idle loop never does upcalls to
916 * user mode. If your architecture does do upcalls from the idle loop (or
917 * does anything else that results in unbalanced calls to the irq_enter()
918 * and irq_exit() functions), RCU will give you what you deserve, good
919 * and hard. But very infrequently and irreproducibly.
920 *
921 * Use things like work queues to work around this limitation.
922 *
923 * You have been warned.
924 */
925void rcu_irq_enter(void)
926{
9b2e4f18
PM
927 struct rcu_dynticks *rdtp;
928 long long oldval;
929
7c9906ca 930 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!");
c9d4b0af 931 rdtp = this_cpu_ptr(&rcu_dynticks);
9b2e4f18
PM
932 oldval = rdtp->dynticks_nesting;
933 rdtp->dynticks_nesting++;
1ce46ee5
PM
934 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
935 rdtp->dynticks_nesting == 0);
b6fc6020 936 if (oldval)
f7f7bac9 937 trace_rcu_dyntick(TPS("++="), oldval, rdtp->dynticks_nesting);
b6fc6020 938 else
28ced795
CL
939 rcu_eqs_exit_common(oldval, true);
940 rcu_sysidle_exit(1);
7c9906ca
PM
941}
942
943/*
944 * Wrapper for rcu_irq_enter() where interrupts are enabled.
945 */
946void rcu_irq_enter_irqson(void)
947{
948 unsigned long flags;
949
950 local_irq_save(flags);
951 rcu_irq_enter();
64db4cff 952 local_irq_restore(flags);
64db4cff
PM
953}
954
955/**
956 * rcu_nmi_enter - inform RCU of entry to NMI context
957 *
734d1680
PM
958 * If the CPU was idle from RCU's viewpoint, update rdtp->dynticks and
959 * rdtp->dynticks_nmi_nesting to let the RCU grace-period handling know
960 * that the CPU is active. This implementation permits nested NMIs, as
961 * long as the nesting level does not overflow an int. (You will probably
962 * run out of stack space first.)
64db4cff
PM
963 */
964void rcu_nmi_enter(void)
965{
c9d4b0af 966 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
734d1680 967 int incby = 2;
64db4cff 968
734d1680
PM
969 /* Complain about underflow. */
970 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting < 0);
971
972 /*
973 * If idle from RCU viewpoint, atomically increment ->dynticks
974 * to mark non-idle and increment ->dynticks_nmi_nesting by one.
975 * Otherwise, increment ->dynticks_nmi_nesting by two. This means
976 * if ->dynticks_nmi_nesting is equal to one, we are guaranteed
977 * to be in the outermost NMI handler that interrupted an RCU-idle
978 * period (observation due to Andy Lutomirski).
979 */
980 if (!(atomic_read(&rdtp->dynticks) & 0x1)) {
981 smp_mb__before_atomic(); /* Force delay from prior write. */
982 atomic_inc(&rdtp->dynticks);
983 /* atomic_inc() before later RCU read-side crit sects */
984 smp_mb__after_atomic(); /* See above. */
985 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
986 incby = 1;
987 }
988 rdtp->dynticks_nmi_nesting += incby;
989 barrier();
64db4cff
PM
990}
991
992/**
993 * rcu_nmi_exit - inform RCU of exit from NMI context
994 *
734d1680
PM
995 * If we are returning from the outermost NMI handler that interrupted an
996 * RCU-idle period, update rdtp->dynticks and rdtp->dynticks_nmi_nesting
997 * to let the RCU grace-period handling know that the CPU is back to
998 * being RCU-idle.
64db4cff
PM
999 */
1000void rcu_nmi_exit(void)
1001{
c9d4b0af 1002 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
64db4cff 1003
734d1680
PM
1004 /*
1005 * Check for ->dynticks_nmi_nesting underflow and bad ->dynticks.
1006 * (We are exiting an NMI handler, so RCU better be paying attention
1007 * to us!)
1008 */
1009 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting <= 0);
1010 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1011
1012 /*
1013 * If the nesting level is not 1, the CPU wasn't RCU-idle, so
1014 * leave it in non-RCU-idle state.
1015 */
1016 if (rdtp->dynticks_nmi_nesting != 1) {
1017 rdtp->dynticks_nmi_nesting -= 2;
64db4cff 1018 return;
734d1680
PM
1019 }
1020
1021 /* This NMI interrupted an RCU-idle CPU, restore RCU-idleness. */
1022 rdtp->dynticks_nmi_nesting = 0;
23b5c8fa 1023 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
4e857c58 1024 smp_mb__before_atomic(); /* See above. */
23b5c8fa 1025 atomic_inc(&rdtp->dynticks);
4e857c58 1026 smp_mb__after_atomic(); /* Force delay to next write. */
23b5c8fa 1027 WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
64db4cff
PM
1028}
1029
1030/**
5c173eb8
PM
1031 * __rcu_is_watching - are RCU read-side critical sections safe?
1032 *
1033 * Return true if RCU is watching the running CPU, which means that
1034 * this CPU can safely enter RCU read-side critical sections. Unlike
1035 * rcu_is_watching(), the caller of __rcu_is_watching() must have at
1036 * least disabled preemption.
1037 */
9418fb20 1038bool notrace __rcu_is_watching(void)
5c173eb8
PM
1039{
1040 return atomic_read(this_cpu_ptr(&rcu_dynticks.dynticks)) & 0x1;
1041}
1042
1043/**
1044 * rcu_is_watching - see if RCU thinks that the current CPU is idle
64db4cff 1045 *
9b2e4f18 1046 * If the current CPU is in its idle loop and is neither in an interrupt
34240697 1047 * or NMI handler, return true.
64db4cff 1048 */
9418fb20 1049bool notrace rcu_is_watching(void)
64db4cff 1050{
f534ed1f 1051 bool ret;
34240697 1052
46f00d18 1053 preempt_disable_notrace();
5c173eb8 1054 ret = __rcu_is_watching();
46f00d18 1055 preempt_enable_notrace();
34240697 1056 return ret;
64db4cff 1057}
5c173eb8 1058EXPORT_SYMBOL_GPL(rcu_is_watching);
64db4cff 1059
62fde6ed 1060#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU)
c0d6d01b
PM
1061
1062/*
1063 * Is the current CPU online? Disable preemption to avoid false positives
1064 * that could otherwise happen due to the current CPU number being sampled,
1065 * this task being preempted, its old CPU being taken offline, resuming
1066 * on some other CPU, then determining that its old CPU is now offline.
1067 * It is OK to use RCU on an offline processor during initial boot, hence
2036d94a
PM
1068 * the check for rcu_scheduler_fully_active. Note also that it is OK
1069 * for a CPU coming online to use RCU for one jiffy prior to marking itself
1070 * online in the cpu_online_mask. Similarly, it is OK for a CPU going
1071 * offline to continue to use RCU for one jiffy after marking itself
1072 * offline in the cpu_online_mask. This leniency is necessary given the
1073 * non-atomic nature of the online and offline processing, for example,
4df83742
TG
1074 * the fact that a CPU enters the scheduler after completing the teardown
1075 * of the CPU.
2036d94a 1076 *
4df83742
TG
1077 * This is also why RCU internally marks CPUs online during in the
1078 * preparation phase and offline after the CPU has been taken down.
c0d6d01b
PM
1079 *
1080 * Disable checking if in an NMI handler because we cannot safely report
1081 * errors from NMI handlers anyway.
1082 */
1083bool rcu_lockdep_current_cpu_online(void)
1084{
2036d94a
PM
1085 struct rcu_data *rdp;
1086 struct rcu_node *rnp;
c0d6d01b
PM
1087 bool ret;
1088
1089 if (in_nmi())
f6f7ee9a 1090 return true;
c0d6d01b 1091 preempt_disable();
c9d4b0af 1092 rdp = this_cpu_ptr(&rcu_sched_data);
2036d94a 1093 rnp = rdp->mynode;
0aa04b05 1094 ret = (rdp->grpmask & rcu_rnp_online_cpus(rnp)) ||
c0d6d01b
PM
1095 !rcu_scheduler_fully_active;
1096 preempt_enable();
1097 return ret;
1098}
1099EXPORT_SYMBOL_GPL(rcu_lockdep_current_cpu_online);
1100
62fde6ed 1101#endif /* #if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU) */
9b2e4f18 1102
64db4cff 1103/**
9b2e4f18 1104 * rcu_is_cpu_rrupt_from_idle - see if idle or immediately interrupted from idle
64db4cff 1105 *
9b2e4f18
PM
1106 * If the current CPU is idle or running at a first-level (not nested)
1107 * interrupt from idle, return true. The caller must have at least
1108 * disabled preemption.
64db4cff 1109 */
62e3cb14 1110static int rcu_is_cpu_rrupt_from_idle(void)
64db4cff 1111{
c9d4b0af 1112 return __this_cpu_read(rcu_dynticks.dynticks_nesting) <= 1;
64db4cff
PM
1113}
1114
64db4cff
PM
1115/*
1116 * Snapshot the specified CPU's dynticks counter so that we can later
1117 * credit them with an implicit quiescent state. Return 1 if this CPU
1eba8f84 1118 * is in dynticks idle mode, which is an extended quiescent state.
64db4cff 1119 */
217af2a2
PM
1120static int dyntick_save_progress_counter(struct rcu_data *rdp,
1121 bool *isidle, unsigned long *maxj)
64db4cff 1122{
23b5c8fa 1123 rdp->dynticks_snap = atomic_add_return(0, &rdp->dynticks->dynticks);
0edd1b17 1124 rcu_sysidle_check_cpu(rdp, isidle, maxj);
7941dbde
ACB
1125 if ((rdp->dynticks_snap & 0x1) == 0) {
1126 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
7d0ae808 1127 if (ULONG_CMP_LT(READ_ONCE(rdp->gpnum) + ULONG_MAX / 4,
e3663b10 1128 rdp->mynode->gpnum))
7d0ae808 1129 WRITE_ONCE(rdp->gpwrap, true);
23a9bacd 1130 return 1;
7941dbde 1131 }
23a9bacd 1132 return 0;
64db4cff
PM
1133}
1134
1135/*
1136 * Return true if the specified CPU has passed through a quiescent
1137 * state by virtue of being in or having passed through an dynticks
1138 * idle state since the last call to dyntick_save_progress_counter()
a82dcc76 1139 * for this same CPU, or by virtue of having been offline.
64db4cff 1140 */
217af2a2
PM
1141static int rcu_implicit_dynticks_qs(struct rcu_data *rdp,
1142 bool *isidle, unsigned long *maxj)
64db4cff 1143{
7eb4f455 1144 unsigned int curr;
4a81e832 1145 int *rcrmp;
7eb4f455 1146 unsigned int snap;
64db4cff 1147
7eb4f455
PM
1148 curr = (unsigned int)atomic_add_return(0, &rdp->dynticks->dynticks);
1149 snap = (unsigned int)rdp->dynticks_snap;
64db4cff
PM
1150
1151 /*
1152 * If the CPU passed through or entered a dynticks idle phase with
1153 * no active irq/NMI handlers, then we can safely pretend that the CPU
1154 * already acknowledged the request to pass through a quiescent
1155 * state. Either way, that CPU cannot possibly be in an RCU
1156 * read-side critical section that started before the beginning
1157 * of the current RCU grace period.
1158 */
7eb4f455 1159 if ((curr & 0x1) == 0 || UINT_CMP_GE(curr, snap + 2)) {
f7f7bac9 1160 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
64db4cff
PM
1161 rdp->dynticks_fqs++;
1162 return 1;
1163 }
1164
a82dcc76
PM
1165 /*
1166 * Check for the CPU being offline, but only if the grace period
1167 * is old enough. We don't need to worry about the CPU changing
1168 * state: If we see it offline even once, it has been through a
1169 * quiescent state.
1170 *
1171 * The reason for insisting that the grace period be at least
1172 * one jiffy old is that CPUs that are not quite online and that
1173 * have just gone offline can still execute RCU read-side critical
1174 * sections.
1175 */
1176 if (ULONG_CMP_GE(rdp->rsp->gp_start + 2, jiffies))
1177 return 0; /* Grace period is not old enough. */
1178 barrier();
1179 if (cpu_is_offline(rdp->cpu)) {
f7f7bac9 1180 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("ofl"));
a82dcc76
PM
1181 rdp->offline_fqs++;
1182 return 1;
1183 }
65d798f0
PM
1184
1185 /*
4a81e832
PM
1186 * A CPU running for an extended time within the kernel can
1187 * delay RCU grace periods. When the CPU is in NO_HZ_FULL mode,
1188 * even context-switching back and forth between a pair of
1189 * in-kernel CPU-bound tasks cannot advance grace periods.
1190 * So if the grace period is old enough, make the CPU pay attention.
1191 * Note that the unsynchronized assignments to the per-CPU
1192 * rcu_sched_qs_mask variable are safe. Yes, setting of
1193 * bits can be lost, but they will be set again on the next
1194 * force-quiescent-state pass. So lost bit sets do not result
1195 * in incorrect behavior, merely in a grace period lasting
1196 * a few jiffies longer than it might otherwise. Because
1197 * there are at most four threads involved, and because the
1198 * updates are only once every few jiffies, the probability of
1199 * lossage (and thus of slight grace-period extension) is
1200 * quite low.
1201 *
1202 * Note that if the jiffies_till_sched_qs boot/sysfs parameter
1203 * is set too high, we override with half of the RCU CPU stall
1204 * warning delay.
6193c76a 1205 */
4a81e832
PM
1206 rcrmp = &per_cpu(rcu_sched_qs_mask, rdp->cpu);
1207 if (ULONG_CMP_GE(jiffies,
1208 rdp->rsp->gp_start + jiffies_till_sched_qs) ||
cb1e78cf 1209 ULONG_CMP_GE(jiffies, rdp->rsp->jiffies_resched)) {
7d0ae808
PM
1210 if (!(READ_ONCE(*rcrmp) & rdp->rsp->flavor_mask)) {
1211 WRITE_ONCE(rdp->cond_resched_completed,
1212 READ_ONCE(rdp->mynode->completed));
4a81e832 1213 smp_mb(); /* ->cond_resched_completed before *rcrmp. */
7d0ae808
PM
1214 WRITE_ONCE(*rcrmp,
1215 READ_ONCE(*rcrmp) + rdp->rsp->flavor_mask);
4a81e832 1216 }
4914950a 1217 rdp->rsp->jiffies_resched += 5; /* Re-enable beating. */
6193c76a
PM
1218 }
1219
4914950a
PM
1220 /* And if it has been a really long time, kick the CPU as well. */
1221 if (ULONG_CMP_GE(jiffies,
1222 rdp->rsp->gp_start + 2 * jiffies_till_sched_qs) ||
1223 ULONG_CMP_GE(jiffies, rdp->rsp->gp_start + jiffies_till_sched_qs))
1224 resched_cpu(rdp->cpu); /* Force CPU into scheduler. */
1225
a82dcc76 1226 return 0;
64db4cff
PM
1227}
1228
64db4cff
PM
1229static void record_gp_stall_check_time(struct rcu_state *rsp)
1230{
cb1e78cf 1231 unsigned long j = jiffies;
6193c76a 1232 unsigned long j1;
26cdfedf
PM
1233
1234 rsp->gp_start = j;
1235 smp_wmb(); /* Record start time before stall time. */
6193c76a 1236 j1 = rcu_jiffies_till_stall_check();
7d0ae808 1237 WRITE_ONCE(rsp->jiffies_stall, j + j1);
6193c76a 1238 rsp->jiffies_resched = j + j1 / 2;
7d0ae808 1239 rsp->n_force_qs_gpstart = READ_ONCE(rsp->n_force_qs);
64db4cff
PM
1240}
1241
6b50e119
PM
1242/*
1243 * Convert a ->gp_state value to a character string.
1244 */
1245static const char *gp_state_getname(short gs)
1246{
1247 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
1248 return "???";
1249 return gp_state_names[gs];
1250}
1251
fb81a44b
PM
1252/*
1253 * Complain about starvation of grace-period kthread.
1254 */
1255static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp)
1256{
1257 unsigned long gpa;
1258 unsigned long j;
1259
1260 j = jiffies;
7d0ae808 1261 gpa = READ_ONCE(rsp->gp_activity);
b1adb3e2 1262 if (j - gpa > 2 * HZ) {
6b50e119 1263 pr_err("%s kthread starved for %ld jiffies! g%lu c%lu f%#x %s(%d) ->state=%#lx\n",
81e701e4 1264 rsp->name, j - gpa,
319362c9 1265 rsp->gpnum, rsp->completed,
6b50e119
PM
1266 rsp->gp_flags,
1267 gp_state_getname(rsp->gp_state), rsp->gp_state,
a0e3a3aa 1268 rsp->gp_kthread ? rsp->gp_kthread->state : ~0);
86057b80 1269 if (rsp->gp_kthread) {
b1adb3e2 1270 sched_show_task(rsp->gp_kthread);
86057b80
PM
1271 wake_up_process(rsp->gp_kthread);
1272 }
b1adb3e2 1273 }
64db4cff
PM
1274}
1275
b637a328 1276/*
bc1dce51 1277 * Dump stacks of all tasks running on stalled CPUs.
b637a328
PM
1278 */
1279static void rcu_dump_cpu_stacks(struct rcu_state *rsp)
1280{
1281 int cpu;
1282 unsigned long flags;
1283 struct rcu_node *rnp;
1284
1285 rcu_for_each_leaf_node(rsp, rnp) {
6cf10081 1286 raw_spin_lock_irqsave_rcu_node(rnp, flags);
b637a328 1287 if (rnp->qsmask != 0) {
bc75e999
MR
1288 for_each_leaf_node_possible_cpu(rnp, cpu)
1289 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu))
1290 dump_cpu_task(cpu);
b637a328 1291 }
67c583a7 1292 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
b637a328
PM
1293 }
1294}
1295
8c7c4829
PM
1296/*
1297 * If too much time has passed in the current grace period, and if
1298 * so configured, go kick the relevant kthreads.
1299 */
1300static void rcu_stall_kick_kthreads(struct rcu_state *rsp)
1301{
1302 unsigned long j;
1303
1304 if (!rcu_kick_kthreads)
1305 return;
1306 j = READ_ONCE(rsp->jiffies_kick_kthreads);
aa3e0bf1
PM
1307 if (time_after(jiffies, j) && rsp->gp_kthread &&
1308 (rcu_gp_in_progress(rsp) || READ_ONCE(rsp->gp_flags))) {
8c7c4829 1309 WARN_ONCE(1, "Kicking %s grace-period kthread\n", rsp->name);
5dffed1e 1310 rcu_ftrace_dump(DUMP_ALL);
8c7c4829
PM
1311 wake_up_process(rsp->gp_kthread);
1312 WRITE_ONCE(rsp->jiffies_kick_kthreads, j + HZ);
1313 }
1314}
1315
088e9d25
DBO
1316static inline void panic_on_rcu_stall(void)
1317{
1318 if (sysctl_panic_on_rcu_stall)
1319 panic("RCU Stall\n");
1320}
1321
6ccd2ecd 1322static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gpnum)
64db4cff
PM
1323{
1324 int cpu;
1325 long delta;
1326 unsigned long flags;
6ccd2ecd
PM
1327 unsigned long gpa;
1328 unsigned long j;
285fe294 1329 int ndetected = 0;
64db4cff 1330 struct rcu_node *rnp = rcu_get_root(rsp);
53bb857c 1331 long totqlen = 0;
64db4cff 1332
8c7c4829
PM
1333 /* Kick and suppress, if so configured. */
1334 rcu_stall_kick_kthreads(rsp);
1335 if (rcu_cpu_stall_suppress)
1336 return;
1337
64db4cff
PM
1338 /* Only let one CPU complain about others per time interval. */
1339
6cf10081 1340 raw_spin_lock_irqsave_rcu_node(rnp, flags);
7d0ae808 1341 delta = jiffies - READ_ONCE(rsp->jiffies_stall);
fc2219d4 1342 if (delta < RCU_STALL_RAT_DELAY || !rcu_gp_in_progress(rsp)) {
67c583a7 1343 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff
PM
1344 return;
1345 }
7d0ae808
PM
1346 WRITE_ONCE(rsp->jiffies_stall,
1347 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
67c583a7 1348 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff 1349
8cdd32a9
PM
1350 /*
1351 * OK, time to rat on our buddy...
1352 * See Documentation/RCU/stallwarn.txt for info on how to debug
1353 * RCU CPU stall warnings.
1354 */
d7f3e207 1355 pr_err("INFO: %s detected stalls on CPUs/tasks:",
4300aa64 1356 rsp->name);
a858af28 1357 print_cpu_stall_info_begin();
a0b6c9a7 1358 rcu_for_each_leaf_node(rsp, rnp) {
6cf10081 1359 raw_spin_lock_irqsave_rcu_node(rnp, flags);
9bc8b558 1360 ndetected += rcu_print_task_stall(rnp);
c8020a67 1361 if (rnp->qsmask != 0) {
bc75e999
MR
1362 for_each_leaf_node_possible_cpu(rnp, cpu)
1363 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) {
1364 print_cpu_stall_info(rsp, cpu);
c8020a67
PM
1365 ndetected++;
1366 }
1367 }
67c583a7 1368 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff 1369 }
a858af28 1370
a858af28 1371 print_cpu_stall_info_end();
53bb857c
PM
1372 for_each_possible_cpu(cpu)
1373 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
83ebe63e 1374 pr_cont("(detected by %d, t=%ld jiffies, g=%ld, c=%ld, q=%lu)\n",
eee05882 1375 smp_processor_id(), (long)(jiffies - rsp->gp_start),
83ebe63e 1376 (long)rsp->gpnum, (long)rsp->completed, totqlen);
6ccd2ecd 1377 if (ndetected) {
b637a328 1378 rcu_dump_cpu_stacks(rsp);
6ccd2ecd 1379 } else {
7d0ae808
PM
1380 if (READ_ONCE(rsp->gpnum) != gpnum ||
1381 READ_ONCE(rsp->completed) == gpnum) {
6ccd2ecd
PM
1382 pr_err("INFO: Stall ended before state dump start\n");
1383 } else {
1384 j = jiffies;
7d0ae808 1385 gpa = READ_ONCE(rsp->gp_activity);
237a0f21 1386 pr_err("All QSes seen, last %s kthread activity %ld (%ld-%ld), jiffies_till_next_fqs=%ld, root ->qsmask %#lx\n",
6ccd2ecd 1387 rsp->name, j - gpa, j, gpa,
237a0f21
PM
1388 jiffies_till_next_fqs,
1389 rcu_get_root(rsp)->qsmask);
6ccd2ecd
PM
1390 /* In this case, the current CPU might be at fault. */
1391 sched_show_task(current);
1392 }
1393 }
c1dc0b9c 1394
4cdfc175 1395 /* Complain about tasks blocking the grace period. */
1ed509a2
PM
1396 rcu_print_detail_task_stall(rsp);
1397
fb81a44b
PM
1398 rcu_check_gp_kthread_starvation(rsp);
1399
088e9d25
DBO
1400 panic_on_rcu_stall();
1401
4cdfc175 1402 force_quiescent_state(rsp); /* Kick them all. */
64db4cff
PM
1403}
1404
1405static void print_cpu_stall(struct rcu_state *rsp)
1406{
53bb857c 1407 int cpu;
64db4cff
PM
1408 unsigned long flags;
1409 struct rcu_node *rnp = rcu_get_root(rsp);
53bb857c 1410 long totqlen = 0;
64db4cff 1411
8c7c4829
PM
1412 /* Kick and suppress, if so configured. */
1413 rcu_stall_kick_kthreads(rsp);
1414 if (rcu_cpu_stall_suppress)
1415 return;
1416
8cdd32a9
PM
1417 /*
1418 * OK, time to rat on ourselves...
1419 * See Documentation/RCU/stallwarn.txt for info on how to debug
1420 * RCU CPU stall warnings.
1421 */
d7f3e207 1422 pr_err("INFO: %s self-detected stall on CPU", rsp->name);
a858af28
PM
1423 print_cpu_stall_info_begin();
1424 print_cpu_stall_info(rsp, smp_processor_id());
1425 print_cpu_stall_info_end();
53bb857c
PM
1426 for_each_possible_cpu(cpu)
1427 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
83ebe63e
PM
1428 pr_cont(" (t=%lu jiffies g=%ld c=%ld q=%lu)\n",
1429 jiffies - rsp->gp_start,
1430 (long)rsp->gpnum, (long)rsp->completed, totqlen);
fb81a44b
PM
1431
1432 rcu_check_gp_kthread_starvation(rsp);
1433
bc1dce51 1434 rcu_dump_cpu_stacks(rsp);
c1dc0b9c 1435
6cf10081 1436 raw_spin_lock_irqsave_rcu_node(rnp, flags);
7d0ae808
PM
1437 if (ULONG_CMP_GE(jiffies, READ_ONCE(rsp->jiffies_stall)))
1438 WRITE_ONCE(rsp->jiffies_stall,
1439 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
67c583a7 1440 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
c1dc0b9c 1441
088e9d25
DBO
1442 panic_on_rcu_stall();
1443
b021fe3e
PZ
1444 /*
1445 * Attempt to revive the RCU machinery by forcing a context switch.
1446 *
1447 * A context switch would normally allow the RCU state machine to make
1448 * progress and it could be we're stuck in kernel space without context
1449 * switches for an entirely unreasonable amount of time.
1450 */
1451 resched_cpu(smp_processor_id());
64db4cff
PM
1452}
1453
1454static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
1455{
26cdfedf
PM
1456 unsigned long completed;
1457 unsigned long gpnum;
1458 unsigned long gps;
bad6e139
PM
1459 unsigned long j;
1460 unsigned long js;
64db4cff
PM
1461 struct rcu_node *rnp;
1462
8c7c4829
PM
1463 if ((rcu_cpu_stall_suppress && !rcu_kick_kthreads) ||
1464 !rcu_gp_in_progress(rsp))
c68de209 1465 return;
8c7c4829 1466 rcu_stall_kick_kthreads(rsp);
cb1e78cf 1467 j = jiffies;
26cdfedf
PM
1468
1469 /*
1470 * Lots of memory barriers to reject false positives.
1471 *
1472 * The idea is to pick up rsp->gpnum, then rsp->jiffies_stall,
1473 * then rsp->gp_start, and finally rsp->completed. These values
1474 * are updated in the opposite order with memory barriers (or
1475 * equivalent) during grace-period initialization and cleanup.
1476 * Now, a false positive can occur if we get an new value of
1477 * rsp->gp_start and a old value of rsp->jiffies_stall. But given
1478 * the memory barriers, the only way that this can happen is if one
1479 * grace period ends and another starts between these two fetches.
1480 * Detect this by comparing rsp->completed with the previous fetch
1481 * from rsp->gpnum.
1482 *
1483 * Given this check, comparisons of jiffies, rsp->jiffies_stall,
1484 * and rsp->gp_start suffice to forestall false positives.
1485 */
7d0ae808 1486 gpnum = READ_ONCE(rsp->gpnum);
26cdfedf 1487 smp_rmb(); /* Pick up ->gpnum first... */
7d0ae808 1488 js = READ_ONCE(rsp->jiffies_stall);
26cdfedf 1489 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
7d0ae808 1490 gps = READ_ONCE(rsp->gp_start);
26cdfedf 1491 smp_rmb(); /* ...and finally ->gp_start before ->completed. */
7d0ae808 1492 completed = READ_ONCE(rsp->completed);
26cdfedf
PM
1493 if (ULONG_CMP_GE(completed, gpnum) ||
1494 ULONG_CMP_LT(j, js) ||
1495 ULONG_CMP_GE(gps, js))
1496 return; /* No stall or GP completed since entering function. */
64db4cff 1497 rnp = rdp->mynode;
c96ea7cf 1498 if (rcu_gp_in_progress(rsp) &&
7d0ae808 1499 (READ_ONCE(rnp->qsmask) & rdp->grpmask)) {
64db4cff
PM
1500
1501 /* We haven't checked in, so go dump stack. */
1502 print_cpu_stall(rsp);
1503
bad6e139
PM
1504 } else if (rcu_gp_in_progress(rsp) &&
1505 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) {
64db4cff 1506
bad6e139 1507 /* They had a few time units to dump stack, so complain. */
6ccd2ecd 1508 print_other_cpu_stall(rsp, gpnum);
64db4cff
PM
1509 }
1510}
1511
53d84e00
PM
1512/**
1513 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
1514 *
1515 * Set the stall-warning timeout way off into the future, thus preventing
1516 * any RCU CPU stall-warning messages from appearing in the current set of
1517 * RCU grace periods.
1518 *
1519 * The caller must disable hard irqs.
1520 */
1521void rcu_cpu_stall_reset(void)
1522{
6ce75a23
PM
1523 struct rcu_state *rsp;
1524
1525 for_each_rcu_flavor(rsp)
7d0ae808 1526 WRITE_ONCE(rsp->jiffies_stall, jiffies + ULONG_MAX / 2);
53d84e00
PM
1527}
1528
3f5d3ea6 1529/*
d3f3f3f2
PM
1530 * Initialize the specified rcu_data structure's default callback list
1531 * to empty. The default callback list is the one that is not used by
1532 * no-callbacks CPUs.
3f5d3ea6 1533 */
d3f3f3f2 1534static void init_default_callback_list(struct rcu_data *rdp)
3f5d3ea6
PM
1535{
1536 int i;
1537
1538 rdp->nxtlist = NULL;
1539 for (i = 0; i < RCU_NEXT_SIZE; i++)
1540 rdp->nxttail[i] = &rdp->nxtlist;
1541}
1542
d3f3f3f2
PM
1543/*
1544 * Initialize the specified rcu_data structure's callback list to empty.
1545 */
1546static void init_callback_list(struct rcu_data *rdp)
1547{
1548 if (init_nocb_callback_list(rdp))
1549 return;
1550 init_default_callback_list(rdp);
1551}
1552
dc35c893
PM
1553/*
1554 * Determine the value that ->completed will have at the end of the
1555 * next subsequent grace period. This is used to tag callbacks so that
1556 * a CPU can invoke callbacks in a timely fashion even if that CPU has
1557 * been dyntick-idle for an extended period with callbacks under the
1558 * influence of RCU_FAST_NO_HZ.
1559 *
1560 * The caller must hold rnp->lock with interrupts disabled.
1561 */
1562static unsigned long rcu_cbs_completed(struct rcu_state *rsp,
1563 struct rcu_node *rnp)
1564{
1565 /*
1566 * If RCU is idle, we just wait for the next grace period.
1567 * But we can only be sure that RCU is idle if we are looking
1568 * at the root rcu_node structure -- otherwise, a new grace
1569 * period might have started, but just not yet gotten around
1570 * to initializing the current non-root rcu_node structure.
1571 */
1572 if (rcu_get_root(rsp) == rnp && rnp->gpnum == rnp->completed)
1573 return rnp->completed + 1;
1574
1575 /*
1576 * Otherwise, wait for a possible partial grace period and
1577 * then the subsequent full grace period.
1578 */
1579 return rnp->completed + 2;
1580}
1581
0446be48
PM
1582/*
1583 * Trace-event helper function for rcu_start_future_gp() and
1584 * rcu_nocb_wait_gp().
1585 */
1586static void trace_rcu_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
e66c33d5 1587 unsigned long c, const char *s)
0446be48
PM
1588{
1589 trace_rcu_future_grace_period(rdp->rsp->name, rnp->gpnum,
1590 rnp->completed, c, rnp->level,
1591 rnp->grplo, rnp->grphi, s);
1592}
1593
1594/*
1595 * Start some future grace period, as needed to handle newly arrived
1596 * callbacks. The required future grace periods are recorded in each
48a7639c
PM
1597 * rcu_node structure's ->need_future_gp field. Returns true if there
1598 * is reason to awaken the grace-period kthread.
0446be48
PM
1599 *
1600 * The caller must hold the specified rcu_node structure's ->lock.
1601 */
48a7639c
PM
1602static bool __maybe_unused
1603rcu_start_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
1604 unsigned long *c_out)
0446be48
PM
1605{
1606 unsigned long c;
1607 int i;
48a7639c 1608 bool ret = false;
0446be48
PM
1609 struct rcu_node *rnp_root = rcu_get_root(rdp->rsp);
1610
1611 /*
1612 * Pick up grace-period number for new callbacks. If this
1613 * grace period is already marked as needed, return to the caller.
1614 */
1615 c = rcu_cbs_completed(rdp->rsp, rnp);
f7f7bac9 1616 trace_rcu_future_gp(rnp, rdp, c, TPS("Startleaf"));
0446be48 1617 if (rnp->need_future_gp[c & 0x1]) {
f7f7bac9 1618 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartleaf"));
48a7639c 1619 goto out;
0446be48
PM
1620 }
1621
1622 /*
1623 * If either this rcu_node structure or the root rcu_node structure
1624 * believe that a grace period is in progress, then we must wait
1625 * for the one following, which is in "c". Because our request
1626 * will be noticed at the end of the current grace period, we don't
48bd8e9b
PK
1627 * need to explicitly start one. We only do the lockless check
1628 * of rnp_root's fields if the current rcu_node structure thinks
1629 * there is no grace period in flight, and because we hold rnp->lock,
1630 * the only possible change is when rnp_root's two fields are
1631 * equal, in which case rnp_root->gpnum might be concurrently
1632 * incremented. But that is OK, as it will just result in our
1633 * doing some extra useless work.
0446be48
PM
1634 */
1635 if (rnp->gpnum != rnp->completed ||
7d0ae808 1636 READ_ONCE(rnp_root->gpnum) != READ_ONCE(rnp_root->completed)) {
0446be48 1637 rnp->need_future_gp[c & 0x1]++;
f7f7bac9 1638 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleaf"));
48a7639c 1639 goto out;
0446be48
PM
1640 }
1641
1642 /*
1643 * There might be no grace period in progress. If we don't already
1644 * hold it, acquire the root rcu_node structure's lock in order to
1645 * start one (if needed).
1646 */
2a67e741
PZ
1647 if (rnp != rnp_root)
1648 raw_spin_lock_rcu_node(rnp_root);
0446be48
PM
1649
1650 /*
1651 * Get a new grace-period number. If there really is no grace
1652 * period in progress, it will be smaller than the one we obtained
1653 * earlier. Adjust callbacks as needed. Note that even no-CBs
1654 * CPUs have a ->nxtcompleted[] array, so no no-CBs checks needed.
1655 */
1656 c = rcu_cbs_completed(rdp->rsp, rnp_root);
1657 for (i = RCU_DONE_TAIL; i < RCU_NEXT_TAIL; i++)
1658 if (ULONG_CMP_LT(c, rdp->nxtcompleted[i]))
1659 rdp->nxtcompleted[i] = c;
1660
1661 /*
1662 * If the needed for the required grace period is already
1663 * recorded, trace and leave.
1664 */
1665 if (rnp_root->need_future_gp[c & 0x1]) {
f7f7bac9 1666 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartedroot"));
0446be48
PM
1667 goto unlock_out;
1668 }
1669
1670 /* Record the need for the future grace period. */
1671 rnp_root->need_future_gp[c & 0x1]++;
1672
1673 /* If a grace period is not already in progress, start one. */
1674 if (rnp_root->gpnum != rnp_root->completed) {
f7f7bac9 1675 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleafroot"));
0446be48 1676 } else {
f7f7bac9 1677 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedroot"));
48a7639c 1678 ret = rcu_start_gp_advanced(rdp->rsp, rnp_root, rdp);
0446be48
PM
1679 }
1680unlock_out:
1681 if (rnp != rnp_root)
67c583a7 1682 raw_spin_unlock_rcu_node(rnp_root);
48a7639c
PM
1683out:
1684 if (c_out != NULL)
1685 *c_out = c;
1686 return ret;
0446be48
PM
1687}
1688
1689/*
1690 * Clean up any old requests for the just-ended grace period. Also return
1691 * whether any additional grace periods have been requested. Also invoke
1692 * rcu_nocb_gp_cleanup() in order to wake up any no-callbacks kthreads
1693 * waiting for this grace period to complete.
1694 */
1695static int rcu_future_gp_cleanup(struct rcu_state *rsp, struct rcu_node *rnp)
1696{
1697 int c = rnp->completed;
1698 int needmore;
1699 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
1700
0446be48
PM
1701 rnp->need_future_gp[c & 0x1] = 0;
1702 needmore = rnp->need_future_gp[(c + 1) & 0x1];
f7f7bac9
SRRH
1703 trace_rcu_future_gp(rnp, rdp, c,
1704 needmore ? TPS("CleanupMore") : TPS("Cleanup"));
0446be48
PM
1705 return needmore;
1706}
1707
48a7639c
PM
1708/*
1709 * Awaken the grace-period kthread for the specified flavor of RCU.
1710 * Don't do a self-awaken, and don't bother awakening when there is
1711 * nothing for the grace-period kthread to do (as in several CPUs
1712 * raced to awaken, and we lost), and finally don't try to awaken
1713 * a kthread that has not yet been created.
1714 */
1715static void rcu_gp_kthread_wake(struct rcu_state *rsp)
1716{
1717 if (current == rsp->gp_kthread ||
7d0ae808 1718 !READ_ONCE(rsp->gp_flags) ||
48a7639c
PM
1719 !rsp->gp_kthread)
1720 return;
abedf8e2 1721 swake_up(&rsp->gp_wq);
48a7639c
PM
1722}
1723
dc35c893
PM
1724/*
1725 * If there is room, assign a ->completed number to any callbacks on
1726 * this CPU that have not already been assigned. Also accelerate any
1727 * callbacks that were previously assigned a ->completed number that has
1728 * since proven to be too conservative, which can happen if callbacks get
1729 * assigned a ->completed number while RCU is idle, but with reference to
1730 * a non-root rcu_node structure. This function is idempotent, so it does
48a7639c
PM
1731 * not hurt to call it repeatedly. Returns an flag saying that we should
1732 * awaken the RCU grace-period kthread.
dc35c893
PM
1733 *
1734 * The caller must hold rnp->lock with interrupts disabled.
1735 */
48a7639c 1736static bool rcu_accelerate_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
dc35c893
PM
1737 struct rcu_data *rdp)
1738{
1739 unsigned long c;
1740 int i;
48a7639c 1741 bool ret;
dc35c893
PM
1742
1743 /* If the CPU has no callbacks, nothing to do. */
1744 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
48a7639c 1745 return false;
dc35c893
PM
1746
1747 /*
1748 * Starting from the sublist containing the callbacks most
1749 * recently assigned a ->completed number and working down, find the
1750 * first sublist that is not assignable to an upcoming grace period.
1751 * Such a sublist has something in it (first two tests) and has
1752 * a ->completed number assigned that will complete sooner than
1753 * the ->completed number for newly arrived callbacks (last test).
1754 *
1755 * The key point is that any later sublist can be assigned the
1756 * same ->completed number as the newly arrived callbacks, which
1757 * means that the callbacks in any of these later sublist can be
1758 * grouped into a single sublist, whether or not they have already
1759 * been assigned a ->completed number.
1760 */
1761 c = rcu_cbs_completed(rsp, rnp);
1762 for (i = RCU_NEXT_TAIL - 1; i > RCU_DONE_TAIL; i--)
1763 if (rdp->nxttail[i] != rdp->nxttail[i - 1] &&
1764 !ULONG_CMP_GE(rdp->nxtcompleted[i], c))
1765 break;
1766
1767 /*
1768 * If there are no sublist for unassigned callbacks, leave.
1769 * At the same time, advance "i" one sublist, so that "i" will
1770 * index into the sublist where all the remaining callbacks should
1771 * be grouped into.
1772 */
1773 if (++i >= RCU_NEXT_TAIL)
48a7639c 1774 return false;
dc35c893
PM
1775
1776 /*
1777 * Assign all subsequent callbacks' ->completed number to the next
1778 * full grace period and group them all in the sublist initially
1779 * indexed by "i".
1780 */
1781 for (; i <= RCU_NEXT_TAIL; i++) {
1782 rdp->nxttail[i] = rdp->nxttail[RCU_NEXT_TAIL];
1783 rdp->nxtcompleted[i] = c;
1784 }
910ee45d 1785 /* Record any needed additional grace periods. */
48a7639c 1786 ret = rcu_start_future_gp(rnp, rdp, NULL);
6d4b418c
PM
1787
1788 /* Trace depending on how much we were able to accelerate. */
1789 if (!*rdp->nxttail[RCU_WAIT_TAIL])
f7f7bac9 1790 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccWaitCB"));
6d4b418c 1791 else
f7f7bac9 1792 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccReadyCB"));
48a7639c 1793 return ret;
dc35c893
PM
1794}
1795
1796/*
1797 * Move any callbacks whose grace period has completed to the
1798 * RCU_DONE_TAIL sublist, then compact the remaining sublists and
1799 * assign ->completed numbers to any callbacks in the RCU_NEXT_TAIL
1800 * sublist. This function is idempotent, so it does not hurt to
1801 * invoke it repeatedly. As long as it is not invoked -too- often...
48a7639c 1802 * Returns true if the RCU grace-period kthread needs to be awakened.
dc35c893
PM
1803 *
1804 * The caller must hold rnp->lock with interrupts disabled.
1805 */
48a7639c 1806static bool rcu_advance_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
dc35c893
PM
1807 struct rcu_data *rdp)
1808{
1809 int i, j;
1810
1811 /* If the CPU has no callbacks, nothing to do. */
1812 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
48a7639c 1813 return false;
dc35c893
PM
1814
1815 /*
1816 * Find all callbacks whose ->completed numbers indicate that they
1817 * are ready to invoke, and put them into the RCU_DONE_TAIL sublist.
1818 */
1819 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++) {
1820 if (ULONG_CMP_LT(rnp->completed, rdp->nxtcompleted[i]))
1821 break;
1822 rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[i];
1823 }
1824 /* Clean up any sublist tail pointers that were misordered above. */
1825 for (j = RCU_WAIT_TAIL; j < i; j++)
1826 rdp->nxttail[j] = rdp->nxttail[RCU_DONE_TAIL];
1827
1828 /* Copy down callbacks to fill in empty sublists. */
1829 for (j = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++, j++) {
1830 if (rdp->nxttail[j] == rdp->nxttail[RCU_NEXT_TAIL])
1831 break;
1832 rdp->nxttail[j] = rdp->nxttail[i];
1833 rdp->nxtcompleted[j] = rdp->nxtcompleted[i];
1834 }
1835
1836 /* Classify any remaining callbacks. */
48a7639c 1837 return rcu_accelerate_cbs(rsp, rnp, rdp);
dc35c893
PM
1838}
1839
d09b62df 1840/*
ba9fbe95
PM
1841 * Update CPU-local rcu_data state to record the beginnings and ends of
1842 * grace periods. The caller must hold the ->lock of the leaf rcu_node
1843 * structure corresponding to the current CPU, and must have irqs disabled.
48a7639c 1844 * Returns true if the grace-period kthread needs to be awakened.
d09b62df 1845 */
48a7639c
PM
1846static bool __note_gp_changes(struct rcu_state *rsp, struct rcu_node *rnp,
1847 struct rcu_data *rdp)
d09b62df 1848{
48a7639c 1849 bool ret;
3563a438 1850 bool need_gp;
48a7639c 1851
ba9fbe95 1852 /* Handle the ends of any preceding grace periods first. */
e3663b10 1853 if (rdp->completed == rnp->completed &&
7d0ae808 1854 !unlikely(READ_ONCE(rdp->gpwrap))) {
d09b62df 1855
ba9fbe95 1856 /* No grace period end, so just accelerate recent callbacks. */
48a7639c 1857 ret = rcu_accelerate_cbs(rsp, rnp, rdp);
d09b62df 1858
dc35c893
PM
1859 } else {
1860
1861 /* Advance callbacks. */
48a7639c 1862 ret = rcu_advance_cbs(rsp, rnp, rdp);
d09b62df
PM
1863
1864 /* Remember that we saw this grace-period completion. */
1865 rdp->completed = rnp->completed;
f7f7bac9 1866 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuend"));
d09b62df 1867 }
398ebe60 1868
7d0ae808 1869 if (rdp->gpnum != rnp->gpnum || unlikely(READ_ONCE(rdp->gpwrap))) {
6eaef633
PM
1870 /*
1871 * If the current grace period is waiting for this CPU,
1872 * set up to detect a quiescent state, otherwise don't
1873 * go looking for one.
1874 */
1875 rdp->gpnum = rnp->gpnum;
f7f7bac9 1876 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpustart"));
3563a438
PM
1877 need_gp = !!(rnp->qsmask & rdp->grpmask);
1878 rdp->cpu_no_qs.b.norm = need_gp;
5cd37193 1879 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
3563a438 1880 rdp->core_needs_qs = need_gp;
6eaef633 1881 zero_cpu_stall_ticks(rdp);
7d0ae808 1882 WRITE_ONCE(rdp->gpwrap, false);
6eaef633 1883 }
48a7639c 1884 return ret;
6eaef633
PM
1885}
1886
d34ea322 1887static void note_gp_changes(struct rcu_state *rsp, struct rcu_data *rdp)
6eaef633
PM
1888{
1889 unsigned long flags;
48a7639c 1890 bool needwake;
6eaef633
PM
1891 struct rcu_node *rnp;
1892
1893 local_irq_save(flags);
1894 rnp = rdp->mynode;
7d0ae808
PM
1895 if ((rdp->gpnum == READ_ONCE(rnp->gpnum) &&
1896 rdp->completed == READ_ONCE(rnp->completed) &&
1897 !unlikely(READ_ONCE(rdp->gpwrap))) || /* w/out lock. */
2a67e741 1898 !raw_spin_trylock_rcu_node(rnp)) { /* irqs already off, so later. */
6eaef633
PM
1899 local_irq_restore(flags);
1900 return;
1901 }
48a7639c 1902 needwake = __note_gp_changes(rsp, rnp, rdp);
67c583a7 1903 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
48a7639c
PM
1904 if (needwake)
1905 rcu_gp_kthread_wake(rsp);
6eaef633
PM
1906}
1907
0f41c0dd
PM
1908static void rcu_gp_slow(struct rcu_state *rsp, int delay)
1909{
1910 if (delay > 0 &&
1911 !(rsp->gpnum % (rcu_num_nodes * PER_RCU_NODE_PERIOD * delay)))
1912 schedule_timeout_uninterruptible(delay);
1913}
1914
b3dbec76 1915/*
45fed3e7 1916 * Initialize a new grace period. Return false if no grace period required.
b3dbec76 1917 */
45fed3e7 1918static bool rcu_gp_init(struct rcu_state *rsp)
b3dbec76 1919{
0aa04b05 1920 unsigned long oldmask;
b3dbec76 1921 struct rcu_data *rdp;
7fdefc10 1922 struct rcu_node *rnp = rcu_get_root(rsp);
b3dbec76 1923
7d0ae808 1924 WRITE_ONCE(rsp->gp_activity, jiffies);
2a67e741 1925 raw_spin_lock_irq_rcu_node(rnp);
7d0ae808 1926 if (!READ_ONCE(rsp->gp_flags)) {
f7be8209 1927 /* Spurious wakeup, tell caller to go back to sleep. */
67c583a7 1928 raw_spin_unlock_irq_rcu_node(rnp);
45fed3e7 1929 return false;
f7be8209 1930 }
7d0ae808 1931 WRITE_ONCE(rsp->gp_flags, 0); /* Clear all flags: New grace period. */
b3dbec76 1932
f7be8209
PM
1933 if (WARN_ON_ONCE(rcu_gp_in_progress(rsp))) {
1934 /*
1935 * Grace period already in progress, don't start another.
1936 * Not supposed to be able to happen.
1937 */
67c583a7 1938 raw_spin_unlock_irq_rcu_node(rnp);
45fed3e7 1939 return false;
7fdefc10
PM
1940 }
1941
7fdefc10 1942 /* Advance to a new grace period and initialize state. */
26cdfedf 1943 record_gp_stall_check_time(rsp);
765a3f4f
PM
1944 /* Record GP times before starting GP, hence smp_store_release(). */
1945 smp_store_release(&rsp->gpnum, rsp->gpnum + 1);
f7f7bac9 1946 trace_rcu_grace_period(rsp->name, rsp->gpnum, TPS("start"));
67c583a7 1947 raw_spin_unlock_irq_rcu_node(rnp);
7fdefc10 1948
0aa04b05
PM
1949 /*
1950 * Apply per-leaf buffered online and offline operations to the
1951 * rcu_node tree. Note that this new grace period need not wait
1952 * for subsequent online CPUs, and that quiescent-state forcing
1953 * will handle subsequent offline CPUs.
1954 */
1955 rcu_for_each_leaf_node(rsp, rnp) {
0f41c0dd 1956 rcu_gp_slow(rsp, gp_preinit_delay);
2a67e741 1957 raw_spin_lock_irq_rcu_node(rnp);
0aa04b05
PM
1958 if (rnp->qsmaskinit == rnp->qsmaskinitnext &&
1959 !rnp->wait_blkd_tasks) {
1960 /* Nothing to do on this leaf rcu_node structure. */
67c583a7 1961 raw_spin_unlock_irq_rcu_node(rnp);
0aa04b05
PM
1962 continue;
1963 }
1964
1965 /* Record old state, apply changes to ->qsmaskinit field. */
1966 oldmask = rnp->qsmaskinit;
1967 rnp->qsmaskinit = rnp->qsmaskinitnext;
1968
1969 /* If zero-ness of ->qsmaskinit changed, propagate up tree. */
1970 if (!oldmask != !rnp->qsmaskinit) {
1971 if (!oldmask) /* First online CPU for this rcu_node. */
1972 rcu_init_new_rnp(rnp);
1973 else if (rcu_preempt_has_tasks(rnp)) /* blocked tasks */
1974 rnp->wait_blkd_tasks = true;
1975 else /* Last offline CPU and can propagate. */
1976 rcu_cleanup_dead_rnp(rnp);
1977 }
1978
1979 /*
1980 * If all waited-on tasks from prior grace period are
1981 * done, and if all this rcu_node structure's CPUs are
1982 * still offline, propagate up the rcu_node tree and
1983 * clear ->wait_blkd_tasks. Otherwise, if one of this
1984 * rcu_node structure's CPUs has since come back online,
1985 * simply clear ->wait_blkd_tasks (but rcu_cleanup_dead_rnp()
1986 * checks for this, so just call it unconditionally).
1987 */
1988 if (rnp->wait_blkd_tasks &&
1989 (!rcu_preempt_has_tasks(rnp) ||
1990 rnp->qsmaskinit)) {
1991 rnp->wait_blkd_tasks = false;
1992 rcu_cleanup_dead_rnp(rnp);
1993 }
1994
67c583a7 1995 raw_spin_unlock_irq_rcu_node(rnp);
0aa04b05 1996 }
7fdefc10
PM
1997
1998 /*
1999 * Set the quiescent-state-needed bits in all the rcu_node
2000 * structures for all currently online CPUs in breadth-first order,
2001 * starting from the root rcu_node structure, relying on the layout
2002 * of the tree within the rsp->node[] array. Note that other CPUs
2003 * will access only the leaves of the hierarchy, thus seeing that no
2004 * grace period is in progress, at least until the corresponding
590d1757 2005 * leaf node has been initialized.
7fdefc10
PM
2006 *
2007 * The grace period cannot complete until the initialization
2008 * process finishes, because this kthread handles both.
2009 */
2010 rcu_for_each_node_breadth_first(rsp, rnp) {
0f41c0dd 2011 rcu_gp_slow(rsp, gp_init_delay);
2a67e741 2012 raw_spin_lock_irq_rcu_node(rnp);
b3dbec76 2013 rdp = this_cpu_ptr(rsp->rda);
7fdefc10
PM
2014 rcu_preempt_check_blocked_tasks(rnp);
2015 rnp->qsmask = rnp->qsmaskinit;
7d0ae808 2016 WRITE_ONCE(rnp->gpnum, rsp->gpnum);
3f47da0f 2017 if (WARN_ON_ONCE(rnp->completed != rsp->completed))
7d0ae808 2018 WRITE_ONCE(rnp->completed, rsp->completed);
7fdefc10 2019 if (rnp == rdp->mynode)
48a7639c 2020 (void)__note_gp_changes(rsp, rnp, rdp);
7fdefc10
PM
2021 rcu_preempt_boost_start_gp(rnp);
2022 trace_rcu_grace_period_init(rsp->name, rnp->gpnum,
2023 rnp->level, rnp->grplo,
2024 rnp->grphi, rnp->qsmask);
67c583a7 2025 raw_spin_unlock_irq_rcu_node(rnp);
bde6c3aa 2026 cond_resched_rcu_qs();
7d0ae808 2027 WRITE_ONCE(rsp->gp_activity, jiffies);
7fdefc10 2028 }
b3dbec76 2029
45fed3e7 2030 return true;
7fdefc10 2031}
b3dbec76 2032
b9a425cf
PM
2033/*
2034 * Helper function for wait_event_interruptible_timeout() wakeup
2035 * at force-quiescent-state time.
2036 */
2037static bool rcu_gp_fqs_check_wake(struct rcu_state *rsp, int *gfp)
2038{
2039 struct rcu_node *rnp = rcu_get_root(rsp);
2040
2041 /* Someone like call_rcu() requested a force-quiescent-state scan. */
2042 *gfp = READ_ONCE(rsp->gp_flags);
2043 if (*gfp & RCU_GP_FLAG_FQS)
2044 return true;
2045
2046 /* The current grace period has completed. */
2047 if (!READ_ONCE(rnp->qsmask) && !rcu_preempt_blocked_readers_cgp(rnp))
2048 return true;
2049
2050 return false;
2051}
2052
4cdfc175
PM
2053/*
2054 * Do one round of quiescent-state forcing.
2055 */
77f81fe0 2056static void rcu_gp_fqs(struct rcu_state *rsp, bool first_time)
4cdfc175 2057{
217af2a2
PM
2058 bool isidle = false;
2059 unsigned long maxj;
4cdfc175
PM
2060 struct rcu_node *rnp = rcu_get_root(rsp);
2061
7d0ae808 2062 WRITE_ONCE(rsp->gp_activity, jiffies);
4cdfc175 2063 rsp->n_force_qs++;
77f81fe0 2064 if (first_time) {
4cdfc175 2065 /* Collect dyntick-idle snapshots. */
0edd1b17 2066 if (is_sysidle_rcu_state(rsp)) {
e02b2edf 2067 isidle = true;
0edd1b17
PM
2068 maxj = jiffies - ULONG_MAX / 4;
2069 }
217af2a2
PM
2070 force_qs_rnp(rsp, dyntick_save_progress_counter,
2071 &isidle, &maxj);
0edd1b17 2072 rcu_sysidle_report_gp(rsp, isidle, maxj);
4cdfc175
PM
2073 } else {
2074 /* Handle dyntick-idle and offline CPUs. */
675da67f 2075 isidle = true;
217af2a2 2076 force_qs_rnp(rsp, rcu_implicit_dynticks_qs, &isidle, &maxj);
4cdfc175
PM
2077 }
2078 /* Clear flag to prevent immediate re-entry. */
7d0ae808 2079 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
2a67e741 2080 raw_spin_lock_irq_rcu_node(rnp);
7d0ae808
PM
2081 WRITE_ONCE(rsp->gp_flags,
2082 READ_ONCE(rsp->gp_flags) & ~RCU_GP_FLAG_FQS);
67c583a7 2083 raw_spin_unlock_irq_rcu_node(rnp);
4cdfc175 2084 }
4cdfc175
PM
2085}
2086
7fdefc10
PM
2087/*
2088 * Clean up after the old grace period.
2089 */
4cdfc175 2090static void rcu_gp_cleanup(struct rcu_state *rsp)
7fdefc10
PM
2091{
2092 unsigned long gp_duration;
48a7639c 2093 bool needgp = false;
dae6e64d 2094 int nocb = 0;
7fdefc10
PM
2095 struct rcu_data *rdp;
2096 struct rcu_node *rnp = rcu_get_root(rsp);
abedf8e2 2097 struct swait_queue_head *sq;
b3dbec76 2098
7d0ae808 2099 WRITE_ONCE(rsp->gp_activity, jiffies);
2a67e741 2100 raw_spin_lock_irq_rcu_node(rnp);
7fdefc10
PM
2101 gp_duration = jiffies - rsp->gp_start;
2102 if (gp_duration > rsp->gp_max)
2103 rsp->gp_max = gp_duration;
b3dbec76 2104
7fdefc10
PM
2105 /*
2106 * We know the grace period is complete, but to everyone else
2107 * it appears to still be ongoing. But it is also the case
2108 * that to everyone else it looks like there is nothing that
2109 * they can do to advance the grace period. It is therefore
2110 * safe for us to drop the lock in order to mark the grace
2111 * period as completed in all of the rcu_node structures.
7fdefc10 2112 */
67c583a7 2113 raw_spin_unlock_irq_rcu_node(rnp);
b3dbec76 2114
5d4b8659
PM
2115 /*
2116 * Propagate new ->completed value to rcu_node structures so
2117 * that other CPUs don't have to wait until the start of the next
2118 * grace period to process their callbacks. This also avoids
2119 * some nasty RCU grace-period initialization races by forcing
2120 * the end of the current grace period to be completely recorded in
2121 * all of the rcu_node structures before the beginning of the next
2122 * grace period is recorded in any of the rcu_node structures.
2123 */
2124 rcu_for_each_node_breadth_first(rsp, rnp) {
2a67e741 2125 raw_spin_lock_irq_rcu_node(rnp);
5c60d25f
PM
2126 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
2127 WARN_ON_ONCE(rnp->qsmask);
7d0ae808 2128 WRITE_ONCE(rnp->completed, rsp->gpnum);
b11cc576
PM
2129 rdp = this_cpu_ptr(rsp->rda);
2130 if (rnp == rdp->mynode)
48a7639c 2131 needgp = __note_gp_changes(rsp, rnp, rdp) || needgp;
78e4bc34 2132 /* smp_mb() provided by prior unlock-lock pair. */
0446be48 2133 nocb += rcu_future_gp_cleanup(rsp, rnp);
065bb78c 2134 sq = rcu_nocb_gp_get(rnp);
67c583a7 2135 raw_spin_unlock_irq_rcu_node(rnp);
065bb78c 2136 rcu_nocb_gp_cleanup(sq);
bde6c3aa 2137 cond_resched_rcu_qs();
7d0ae808 2138 WRITE_ONCE(rsp->gp_activity, jiffies);
0f41c0dd 2139 rcu_gp_slow(rsp, gp_cleanup_delay);
7fdefc10 2140 }
5d4b8659 2141 rnp = rcu_get_root(rsp);
2a67e741 2142 raw_spin_lock_irq_rcu_node(rnp); /* Order GP before ->completed update. */
dae6e64d 2143 rcu_nocb_gp_set(rnp, nocb);
7fdefc10 2144
765a3f4f 2145 /* Declare grace period done. */
7d0ae808 2146 WRITE_ONCE(rsp->completed, rsp->gpnum);
f7f7bac9 2147 trace_rcu_grace_period(rsp->name, rsp->completed, TPS("end"));
77f81fe0 2148 rsp->gp_state = RCU_GP_IDLE;
5d4b8659 2149 rdp = this_cpu_ptr(rsp->rda);
48a7639c
PM
2150 /* Advance CBs to reduce false positives below. */
2151 needgp = rcu_advance_cbs(rsp, rnp, rdp) || needgp;
2152 if (needgp || cpu_needs_another_gp(rsp, rdp)) {
7d0ae808 2153 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
bb311ecc 2154 trace_rcu_grace_period(rsp->name,
7d0ae808 2155 READ_ONCE(rsp->gpnum),
bb311ecc
PM
2156 TPS("newreq"));
2157 }
67c583a7 2158 raw_spin_unlock_irq_rcu_node(rnp);
7fdefc10
PM
2159}
2160
2161/*
2162 * Body of kthread that handles grace periods.
2163 */
2164static int __noreturn rcu_gp_kthread(void *arg)
2165{
77f81fe0 2166 bool first_gp_fqs;
88d6df61 2167 int gf;
d40011f6 2168 unsigned long j;
4cdfc175 2169 int ret;
7fdefc10
PM
2170 struct rcu_state *rsp = arg;
2171 struct rcu_node *rnp = rcu_get_root(rsp);
2172
5871968d 2173 rcu_bind_gp_kthread();
7fdefc10
PM
2174 for (;;) {
2175
2176 /* Handle grace-period start. */
2177 for (;;) {
63c4db78 2178 trace_rcu_grace_period(rsp->name,
7d0ae808 2179 READ_ONCE(rsp->gpnum),
63c4db78 2180 TPS("reqwait"));
afea227f 2181 rsp->gp_state = RCU_GP_WAIT_GPS;
abedf8e2 2182 swait_event_interruptible(rsp->gp_wq,
7d0ae808 2183 READ_ONCE(rsp->gp_flags) &
4cdfc175 2184 RCU_GP_FLAG_INIT);
319362c9 2185 rsp->gp_state = RCU_GP_DONE_GPS;
78e4bc34 2186 /* Locking provides needed memory barrier. */
f7be8209 2187 if (rcu_gp_init(rsp))
7fdefc10 2188 break;
bde6c3aa 2189 cond_resched_rcu_qs();
7d0ae808 2190 WRITE_ONCE(rsp->gp_activity, jiffies);
73a860cd 2191 WARN_ON(signal_pending(current));
63c4db78 2192 trace_rcu_grace_period(rsp->name,
7d0ae808 2193 READ_ONCE(rsp->gpnum),
63c4db78 2194 TPS("reqwaitsig"));
7fdefc10 2195 }
cabc49c1 2196
4cdfc175 2197 /* Handle quiescent-state forcing. */
77f81fe0 2198 first_gp_fqs = true;
d40011f6
PM
2199 j = jiffies_till_first_fqs;
2200 if (j > HZ) {
2201 j = HZ;
2202 jiffies_till_first_fqs = HZ;
2203 }
88d6df61 2204 ret = 0;
cabc49c1 2205 for (;;) {
8c7c4829 2206 if (!ret) {
88d6df61 2207 rsp->jiffies_force_qs = jiffies + j;
8c7c4829
PM
2208 WRITE_ONCE(rsp->jiffies_kick_kthreads,
2209 jiffies + 3 * j);
2210 }
63c4db78 2211 trace_rcu_grace_period(rsp->name,
7d0ae808 2212 READ_ONCE(rsp->gpnum),
63c4db78 2213 TPS("fqswait"));
afea227f 2214 rsp->gp_state = RCU_GP_WAIT_FQS;
abedf8e2 2215 ret = swait_event_interruptible_timeout(rsp->gp_wq,
b9a425cf 2216 rcu_gp_fqs_check_wake(rsp, &gf), j);
32bb1c79 2217 rsp->gp_state = RCU_GP_DOING_FQS;
78e4bc34 2218 /* Locking provides needed memory barriers. */
4cdfc175 2219 /* If grace period done, leave loop. */
7d0ae808 2220 if (!READ_ONCE(rnp->qsmask) &&
4cdfc175 2221 !rcu_preempt_blocked_readers_cgp(rnp))
cabc49c1 2222 break;
4cdfc175 2223 /* If time for quiescent-state forcing, do it. */
88d6df61
PM
2224 if (ULONG_CMP_GE(jiffies, rsp->jiffies_force_qs) ||
2225 (gf & RCU_GP_FLAG_FQS)) {
63c4db78 2226 trace_rcu_grace_period(rsp->name,
7d0ae808 2227 READ_ONCE(rsp->gpnum),
63c4db78 2228 TPS("fqsstart"));
77f81fe0
PM
2229 rcu_gp_fqs(rsp, first_gp_fqs);
2230 first_gp_fqs = false;
63c4db78 2231 trace_rcu_grace_period(rsp->name,
7d0ae808 2232 READ_ONCE(rsp->gpnum),
63c4db78 2233 TPS("fqsend"));
bde6c3aa 2234 cond_resched_rcu_qs();
7d0ae808 2235 WRITE_ONCE(rsp->gp_activity, jiffies);
fcfd0a23
PM
2236 ret = 0; /* Force full wait till next FQS. */
2237 j = jiffies_till_next_fqs;
2238 if (j > HZ) {
2239 j = HZ;
2240 jiffies_till_next_fqs = HZ;
2241 } else if (j < 1) {
2242 j = 1;
2243 jiffies_till_next_fqs = 1;
2244 }
4cdfc175
PM
2245 } else {
2246 /* Deal with stray signal. */
bde6c3aa 2247 cond_resched_rcu_qs();
7d0ae808 2248 WRITE_ONCE(rsp->gp_activity, jiffies);
73a860cd 2249 WARN_ON(signal_pending(current));
63c4db78 2250 trace_rcu_grace_period(rsp->name,
7d0ae808 2251 READ_ONCE(rsp->gpnum),
63c4db78 2252 TPS("fqswaitsig"));
fcfd0a23
PM
2253 ret = 1; /* Keep old FQS timing. */
2254 j = jiffies;
2255 if (time_after(jiffies, rsp->jiffies_force_qs))
2256 j = 1;
2257 else
2258 j = rsp->jiffies_force_qs - j;
d40011f6 2259 }
cabc49c1 2260 }
4cdfc175
PM
2261
2262 /* Handle grace-period end. */
319362c9 2263 rsp->gp_state = RCU_GP_CLEANUP;
4cdfc175 2264 rcu_gp_cleanup(rsp);
319362c9 2265 rsp->gp_state = RCU_GP_CLEANED;
b3dbec76 2266 }
b3dbec76
PM
2267}
2268
64db4cff
PM
2269/*
2270 * Start a new RCU grace period if warranted, re-initializing the hierarchy
2271 * in preparation for detecting the next grace period. The caller must hold
b8462084 2272 * the root node's ->lock and hard irqs must be disabled.
e5601400
PM
2273 *
2274 * Note that it is legal for a dying CPU (which is marked as offline) to
2275 * invoke this function. This can happen when the dying CPU reports its
2276 * quiescent state.
48a7639c
PM
2277 *
2278 * Returns true if the grace-period kthread must be awakened.
64db4cff 2279 */
48a7639c 2280static bool
910ee45d
PM
2281rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
2282 struct rcu_data *rdp)
64db4cff 2283{
b8462084 2284 if (!rsp->gp_kthread || !cpu_needs_another_gp(rsp, rdp)) {
afe24b12 2285 /*
b3dbec76 2286 * Either we have not yet spawned the grace-period
62da1921
PM
2287 * task, this CPU does not need another grace period,
2288 * or a grace period is already in progress.
b3dbec76 2289 * Either way, don't start a new grace period.
afe24b12 2290 */
48a7639c 2291 return false;
afe24b12 2292 }
7d0ae808
PM
2293 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
2294 trace_rcu_grace_period(rsp->name, READ_ONCE(rsp->gpnum),
bb311ecc 2295 TPS("newreq"));
62da1921 2296
016a8d5b
SR
2297 /*
2298 * We can't do wakeups while holding the rnp->lock, as that
1eafd31c 2299 * could cause possible deadlocks with the rq->lock. Defer
48a7639c 2300 * the wakeup to our caller.
016a8d5b 2301 */
48a7639c 2302 return true;
64db4cff
PM
2303}
2304
910ee45d
PM
2305/*
2306 * Similar to rcu_start_gp_advanced(), but also advance the calling CPU's
2307 * callbacks. Note that rcu_start_gp_advanced() cannot do this because it
2308 * is invoked indirectly from rcu_advance_cbs(), which would result in
2309 * endless recursion -- or would do so if it wasn't for the self-deadlock
2310 * that is encountered beforehand.
48a7639c
PM
2311 *
2312 * Returns true if the grace-period kthread needs to be awakened.
910ee45d 2313 */
48a7639c 2314static bool rcu_start_gp(struct rcu_state *rsp)
910ee45d
PM
2315{
2316 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
2317 struct rcu_node *rnp = rcu_get_root(rsp);
48a7639c 2318 bool ret = false;
910ee45d
PM
2319
2320 /*
2321 * If there is no grace period in progress right now, any
2322 * callbacks we have up to this point will be satisfied by the
2323 * next grace period. Also, advancing the callbacks reduces the
2324 * probability of false positives from cpu_needs_another_gp()
2325 * resulting in pointless grace periods. So, advance callbacks
2326 * then start the grace period!
2327 */
48a7639c
PM
2328 ret = rcu_advance_cbs(rsp, rnp, rdp) || ret;
2329 ret = rcu_start_gp_advanced(rsp, rnp, rdp) || ret;
2330 return ret;
910ee45d
PM
2331}
2332
f41d911f 2333/*
8994515c
PM
2334 * Report a full set of quiescent states to the specified rcu_state data
2335 * structure. Invoke rcu_gp_kthread_wake() to awaken the grace-period
2336 * kthread if another grace period is required. Whether we wake
2337 * the grace-period kthread or it awakens itself for the next round
2338 * of quiescent-state forcing, that kthread will clean up after the
2339 * just-completed grace period. Note that the caller must hold rnp->lock,
2340 * which is released before return.
f41d911f 2341 */
d3f6bad3 2342static void rcu_report_qs_rsp(struct rcu_state *rsp, unsigned long flags)
fc2219d4 2343 __releases(rcu_get_root(rsp)->lock)
f41d911f 2344{
fc2219d4 2345 WARN_ON_ONCE(!rcu_gp_in_progress(rsp));
cd73ca21 2346 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
67c583a7 2347 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
94d44776 2348 rcu_gp_kthread_wake(rsp);
f41d911f
PM
2349}
2350
64db4cff 2351/*
d3f6bad3
PM
2352 * Similar to rcu_report_qs_rdp(), for which it is a helper function.
2353 * Allows quiescent states for a group of CPUs to be reported at one go
2354 * to the specified rcu_node structure, though all the CPUs in the group
654e9533
PM
2355 * must be represented by the same rcu_node structure (which need not be a
2356 * leaf rcu_node structure, though it often will be). The gps parameter
2357 * is the grace-period snapshot, which means that the quiescent states
2358 * are valid only if rnp->gpnum is equal to gps. That structure's lock
2359 * must be held upon entry, and it is released before return.
64db4cff
PM
2360 */
2361static void
d3f6bad3 2362rcu_report_qs_rnp(unsigned long mask, struct rcu_state *rsp,
654e9533 2363 struct rcu_node *rnp, unsigned long gps, unsigned long flags)
64db4cff
PM
2364 __releases(rnp->lock)
2365{
654e9533 2366 unsigned long oldmask = 0;
28ecd580
PM
2367 struct rcu_node *rnp_c;
2368
64db4cff
PM
2369 /* Walk up the rcu_node hierarchy. */
2370 for (;;) {
654e9533 2371 if (!(rnp->qsmask & mask) || rnp->gpnum != gps) {
64db4cff 2372
654e9533
PM
2373 /*
2374 * Our bit has already been cleared, or the
2375 * relevant grace period is already over, so done.
2376 */
67c583a7 2377 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff
PM
2378 return;
2379 }
654e9533 2380 WARN_ON_ONCE(oldmask); /* Any child must be all zeroed! */
64db4cff 2381 rnp->qsmask &= ~mask;
d4c08f2a
PM
2382 trace_rcu_quiescent_state_report(rsp->name, rnp->gpnum,
2383 mask, rnp->qsmask, rnp->level,
2384 rnp->grplo, rnp->grphi,
2385 !!rnp->gp_tasks);
27f4d280 2386 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
64db4cff
PM
2387
2388 /* Other bits still set at this level, so done. */
67c583a7 2389 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff
PM
2390 return;
2391 }
2392 mask = rnp->grpmask;
2393 if (rnp->parent == NULL) {
2394
2395 /* No more levels. Exit loop holding root lock. */
2396
2397 break;
2398 }
67c583a7 2399 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
28ecd580 2400 rnp_c = rnp;
64db4cff 2401 rnp = rnp->parent;
2a67e741 2402 raw_spin_lock_irqsave_rcu_node(rnp, flags);
654e9533 2403 oldmask = rnp_c->qsmask;
64db4cff
PM
2404 }
2405
2406 /*
2407 * Get here if we are the last CPU to pass through a quiescent
d3f6bad3 2408 * state for this grace period. Invoke rcu_report_qs_rsp()
f41d911f 2409 * to clean up and start the next grace period if one is needed.
64db4cff 2410 */
d3f6bad3 2411 rcu_report_qs_rsp(rsp, flags); /* releases rnp->lock. */
64db4cff
PM
2412}
2413
cc99a310
PM
2414/*
2415 * Record a quiescent state for all tasks that were previously queued
2416 * on the specified rcu_node structure and that were blocking the current
2417 * RCU grace period. The caller must hold the specified rnp->lock with
2418 * irqs disabled, and this lock is released upon return, but irqs remain
2419 * disabled.
2420 */
0aa04b05 2421static void rcu_report_unblock_qs_rnp(struct rcu_state *rsp,
cc99a310
PM
2422 struct rcu_node *rnp, unsigned long flags)
2423 __releases(rnp->lock)
2424{
654e9533 2425 unsigned long gps;
cc99a310
PM
2426 unsigned long mask;
2427 struct rcu_node *rnp_p;
2428
a77da14c
PM
2429 if (rcu_state_p == &rcu_sched_state || rsp != rcu_state_p ||
2430 rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
67c583a7 2431 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
cc99a310
PM
2432 return; /* Still need more quiescent states! */
2433 }
2434
2435 rnp_p = rnp->parent;
2436 if (rnp_p == NULL) {
2437 /*
a77da14c
PM
2438 * Only one rcu_node structure in the tree, so don't
2439 * try to report up to its nonexistent parent!
cc99a310
PM
2440 */
2441 rcu_report_qs_rsp(rsp, flags);
2442 return;
2443 }
2444
654e9533
PM
2445 /* Report up the rest of the hierarchy, tracking current ->gpnum. */
2446 gps = rnp->gpnum;
cc99a310 2447 mask = rnp->grpmask;
67c583a7 2448 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
2a67e741 2449 raw_spin_lock_rcu_node(rnp_p); /* irqs already disabled. */
654e9533 2450 rcu_report_qs_rnp(mask, rsp, rnp_p, gps, flags);
cc99a310
PM
2451}
2452
64db4cff 2453/*
d3f6bad3 2454 * Record a quiescent state for the specified CPU to that CPU's rcu_data
4b455dc3 2455 * structure. This must be called from the specified CPU.
64db4cff
PM
2456 */
2457static void
d7d6a11e 2458rcu_report_qs_rdp(int cpu, struct rcu_state *rsp, struct rcu_data *rdp)
64db4cff
PM
2459{
2460 unsigned long flags;
2461 unsigned long mask;
48a7639c 2462 bool needwake;
64db4cff
PM
2463 struct rcu_node *rnp;
2464
2465 rnp = rdp->mynode;
2a67e741 2466 raw_spin_lock_irqsave_rcu_node(rnp, flags);
5b74c458 2467 if ((rdp->cpu_no_qs.b.norm &&
5cd37193
PM
2468 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) ||
2469 rdp->gpnum != rnp->gpnum || rnp->completed == rnp->gpnum ||
2470 rdp->gpwrap) {
64db4cff
PM
2471
2472 /*
e4cc1f22
PM
2473 * The grace period in which this quiescent state was
2474 * recorded has ended, so don't report it upwards.
2475 * We will instead need a new quiescent state that lies
2476 * within the current grace period.
64db4cff 2477 */
5b74c458 2478 rdp->cpu_no_qs.b.norm = true; /* need qs for new gp. */
5cd37193 2479 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
67c583a7 2480 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff
PM
2481 return;
2482 }
2483 mask = rdp->grpmask;
2484 if ((rnp->qsmask & mask) == 0) {
67c583a7 2485 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff 2486 } else {
bb53e416 2487 rdp->core_needs_qs = false;
64db4cff
PM
2488
2489 /*
2490 * This GP can't end until cpu checks in, so all of our
2491 * callbacks can be processed during the next GP.
2492 */
48a7639c 2493 needwake = rcu_accelerate_cbs(rsp, rnp, rdp);
64db4cff 2494
654e9533
PM
2495 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
2496 /* ^^^ Released rnp->lock */
48a7639c
PM
2497 if (needwake)
2498 rcu_gp_kthread_wake(rsp);
64db4cff
PM
2499 }
2500}
2501
2502/*
2503 * Check to see if there is a new grace period of which this CPU
2504 * is not yet aware, and if so, set up local rcu_data state for it.
2505 * Otherwise, see if this CPU has just passed through its first
2506 * quiescent state for this grace period, and record that fact if so.
2507 */
2508static void
2509rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp)
2510{
05eb552b
PM
2511 /* Check for grace-period ends and beginnings. */
2512 note_gp_changes(rsp, rdp);
64db4cff
PM
2513
2514 /*
2515 * Does this CPU still need to do its part for current grace period?
2516 * If no, return and let the other CPUs do their part as well.
2517 */
97c668b8 2518 if (!rdp->core_needs_qs)
64db4cff
PM
2519 return;
2520
2521 /*
2522 * Was there a quiescent state since the beginning of the grace
2523 * period? If no, then exit and wait for the next call.
2524 */
5b74c458 2525 if (rdp->cpu_no_qs.b.norm &&
5cd37193 2526 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr))
64db4cff
PM
2527 return;
2528
d3f6bad3
PM
2529 /*
2530 * Tell RCU we are done (but rcu_report_qs_rdp() will be the
2531 * judge of that).
2532 */
d7d6a11e 2533 rcu_report_qs_rdp(rdp->cpu, rsp, rdp);
64db4cff
PM
2534}
2535
e74f4c45 2536/*
b1420f1c
PM
2537 * Send the specified CPU's RCU callbacks to the orphanage. The
2538 * specified CPU must be offline, and the caller must hold the
7b2e6011 2539 * ->orphan_lock.
e74f4c45 2540 */
b1420f1c
PM
2541static void
2542rcu_send_cbs_to_orphanage(int cpu, struct rcu_state *rsp,
2543 struct rcu_node *rnp, struct rcu_data *rdp)
e74f4c45 2544{
3fbfbf7a 2545 /* No-CBs CPUs do not have orphanable callbacks. */
ea46351c 2546 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) || rcu_is_nocb_cpu(rdp->cpu))
3fbfbf7a
PM
2547 return;
2548
b1420f1c
PM
2549 /*
2550 * Orphan the callbacks. First adjust the counts. This is safe
abfd6e58
PM
2551 * because _rcu_barrier() excludes CPU-hotplug operations, so it
2552 * cannot be running now. Thus no memory barrier is required.
b1420f1c 2553 */
a50c3af9 2554 if (rdp->nxtlist != NULL) {
b1420f1c
PM
2555 rsp->qlen_lazy += rdp->qlen_lazy;
2556 rsp->qlen += rdp->qlen;
2557 rdp->n_cbs_orphaned += rdp->qlen;
a50c3af9 2558 rdp->qlen_lazy = 0;
7d0ae808 2559 WRITE_ONCE(rdp->qlen, 0);
a50c3af9
PM
2560 }
2561
2562 /*
b1420f1c
PM
2563 * Next, move those callbacks still needing a grace period to
2564 * the orphanage, where some other CPU will pick them up.
2565 * Some of the callbacks might have gone partway through a grace
2566 * period, but that is too bad. They get to start over because we
2567 * cannot assume that grace periods are synchronized across CPUs.
2568 * We don't bother updating the ->nxttail[] array yet, instead
2569 * we just reset the whole thing later on.
a50c3af9 2570 */
b1420f1c
PM
2571 if (*rdp->nxttail[RCU_DONE_TAIL] != NULL) {
2572 *rsp->orphan_nxttail = *rdp->nxttail[RCU_DONE_TAIL];
2573 rsp->orphan_nxttail = rdp->nxttail[RCU_NEXT_TAIL];
2574 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
a50c3af9
PM
2575 }
2576
2577 /*
b1420f1c
PM
2578 * Then move the ready-to-invoke callbacks to the orphanage,
2579 * where some other CPU will pick them up. These will not be
2580 * required to pass though another grace period: They are done.
a50c3af9 2581 */
e5601400 2582 if (rdp->nxtlist != NULL) {
b1420f1c
PM
2583 *rsp->orphan_donetail = rdp->nxtlist;
2584 rsp->orphan_donetail = rdp->nxttail[RCU_DONE_TAIL];
e5601400 2585 }
e74f4c45 2586
b33078b6
PM
2587 /*
2588 * Finally, initialize the rcu_data structure's list to empty and
2589 * disallow further callbacks on this CPU.
2590 */
3f5d3ea6 2591 init_callback_list(rdp);
b33078b6 2592 rdp->nxttail[RCU_NEXT_TAIL] = NULL;
b1420f1c
PM
2593}
2594
2595/*
2596 * Adopt the RCU callbacks from the specified rcu_state structure's
7b2e6011 2597 * orphanage. The caller must hold the ->orphan_lock.
b1420f1c 2598 */
96d3fd0d 2599static void rcu_adopt_orphan_cbs(struct rcu_state *rsp, unsigned long flags)
b1420f1c
PM
2600{
2601 int i;
fa07a58f 2602 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
b1420f1c 2603
3fbfbf7a 2604 /* No-CBs CPUs are handled specially. */
ea46351c
PM
2605 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2606 rcu_nocb_adopt_orphan_cbs(rsp, rdp, flags))
3fbfbf7a
PM
2607 return;
2608
b1420f1c
PM
2609 /* Do the accounting first. */
2610 rdp->qlen_lazy += rsp->qlen_lazy;
2611 rdp->qlen += rsp->qlen;
2612 rdp->n_cbs_adopted += rsp->qlen;
8f5af6f1
PM
2613 if (rsp->qlen_lazy != rsp->qlen)
2614 rcu_idle_count_callbacks_posted();
b1420f1c
PM
2615 rsp->qlen_lazy = 0;
2616 rsp->qlen = 0;
2617
2618 /*
2619 * We do not need a memory barrier here because the only way we
2620 * can get here if there is an rcu_barrier() in flight is if
2621 * we are the task doing the rcu_barrier().
2622 */
2623
2624 /* First adopt the ready-to-invoke callbacks. */
2625 if (rsp->orphan_donelist != NULL) {
2626 *rsp->orphan_donetail = *rdp->nxttail[RCU_DONE_TAIL];
2627 *rdp->nxttail[RCU_DONE_TAIL] = rsp->orphan_donelist;
2628 for (i = RCU_NEXT_SIZE - 1; i >= RCU_DONE_TAIL; i--)
2629 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2630 rdp->nxttail[i] = rsp->orphan_donetail;
2631 rsp->orphan_donelist = NULL;
2632 rsp->orphan_donetail = &rsp->orphan_donelist;
2633 }
2634
2635 /* And then adopt the callbacks that still need a grace period. */
2636 if (rsp->orphan_nxtlist != NULL) {
2637 *rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxtlist;
2638 rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxttail;
2639 rsp->orphan_nxtlist = NULL;
2640 rsp->orphan_nxttail = &rsp->orphan_nxtlist;
2641 }
2642}
2643
2644/*
2645 * Trace the fact that this CPU is going offline.
2646 */
2647static void rcu_cleanup_dying_cpu(struct rcu_state *rsp)
2648{
2649 RCU_TRACE(unsigned long mask);
2650 RCU_TRACE(struct rcu_data *rdp = this_cpu_ptr(rsp->rda));
2651 RCU_TRACE(struct rcu_node *rnp = rdp->mynode);
2652
ea46351c
PM
2653 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2654 return;
2655
b1420f1c 2656 RCU_TRACE(mask = rdp->grpmask);
e5601400
PM
2657 trace_rcu_grace_period(rsp->name,
2658 rnp->gpnum + 1 - !!(rnp->qsmask & mask),
f7f7bac9 2659 TPS("cpuofl"));
64db4cff
PM
2660}
2661
8af3a5e7
PM
2662/*
2663 * All CPUs for the specified rcu_node structure have gone offline,
2664 * and all tasks that were preempted within an RCU read-side critical
2665 * section while running on one of those CPUs have since exited their RCU
2666 * read-side critical section. Some other CPU is reporting this fact with
2667 * the specified rcu_node structure's ->lock held and interrupts disabled.
2668 * This function therefore goes up the tree of rcu_node structures,
2669 * clearing the corresponding bits in the ->qsmaskinit fields. Note that
2670 * the leaf rcu_node structure's ->qsmaskinit field has already been
2671 * updated
2672 *
2673 * This function does check that the specified rcu_node structure has
2674 * all CPUs offline and no blocked tasks, so it is OK to invoke it
2675 * prematurely. That said, invoking it after the fact will cost you
2676 * a needless lock acquisition. So once it has done its work, don't
2677 * invoke it again.
2678 */
2679static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf)
2680{
2681 long mask;
2682 struct rcu_node *rnp = rnp_leaf;
2683
ea46351c
PM
2684 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2685 rnp->qsmaskinit || rcu_preempt_has_tasks(rnp))
8af3a5e7
PM
2686 return;
2687 for (;;) {
2688 mask = rnp->grpmask;
2689 rnp = rnp->parent;
2690 if (!rnp)
2691 break;
2a67e741 2692 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
8af3a5e7 2693 rnp->qsmaskinit &= ~mask;
0aa04b05 2694 rnp->qsmask &= ~mask;
8af3a5e7 2695 if (rnp->qsmaskinit) {
67c583a7
BF
2696 raw_spin_unlock_rcu_node(rnp);
2697 /* irqs remain disabled. */
8af3a5e7
PM
2698 return;
2699 }
67c583a7 2700 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
8af3a5e7
PM
2701 }
2702}
2703
64db4cff 2704/*
e5601400 2705 * The CPU has been completely removed, and some other CPU is reporting
b1420f1c
PM
2706 * this fact from process context. Do the remainder of the cleanup,
2707 * including orphaning the outgoing CPU's RCU callbacks, and also
1331e7a1
PM
2708 * adopting them. There can only be one CPU hotplug operation at a time,
2709 * so no other CPU can be attempting to update rcu_cpu_kthread_task.
64db4cff 2710 */
e5601400 2711static void rcu_cleanup_dead_cpu(int cpu, struct rcu_state *rsp)
64db4cff 2712{
2036d94a 2713 unsigned long flags;
e5601400 2714 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
b1420f1c 2715 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
e5601400 2716
ea46351c
PM
2717 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2718 return;
2719
2036d94a 2720 /* Adjust any no-longer-needed kthreads. */
5d01bbd1 2721 rcu_boost_kthread_setaffinity(rnp, -1);
2036d94a 2722
b1420f1c 2723 /* Orphan the dead CPU's callbacks, and adopt them if appropriate. */
78043c46 2724 raw_spin_lock_irqsave(&rsp->orphan_lock, flags);
b1420f1c 2725 rcu_send_cbs_to_orphanage(cpu, rsp, rnp, rdp);
96d3fd0d 2726 rcu_adopt_orphan_cbs(rsp, flags);
a8f4cbad 2727 raw_spin_unlock_irqrestore(&rsp->orphan_lock, flags);
b1420f1c 2728
cf01537e
PM
2729 WARN_ONCE(rdp->qlen != 0 || rdp->nxtlist != NULL,
2730 "rcu_cleanup_dead_cpu: Callbacks on offline CPU %d: qlen=%lu, nxtlist=%p\n",
2731 cpu, rdp->qlen, rdp->nxtlist);
64db4cff
PM
2732}
2733
64db4cff
PM
2734/*
2735 * Invoke any RCU callbacks that have made it to the end of their grace
2736 * period. Thottle as specified by rdp->blimit.
2737 */
37c72e56 2738static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
64db4cff
PM
2739{
2740 unsigned long flags;
2741 struct rcu_head *next, *list, **tail;
878d7439
ED
2742 long bl, count, count_lazy;
2743 int i;
64db4cff 2744
dc35c893 2745 /* If no callbacks are ready, just return. */
29c00b4a 2746 if (!cpu_has_callbacks_ready_to_invoke(rdp)) {
486e2593 2747 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, 0);
7d0ae808 2748 trace_rcu_batch_end(rsp->name, 0, !!READ_ONCE(rdp->nxtlist),
4968c300
PM
2749 need_resched(), is_idle_task(current),
2750 rcu_is_callbacks_kthread());
64db4cff 2751 return;
29c00b4a 2752 }
64db4cff
PM
2753
2754 /*
2755 * Extract the list of ready callbacks, disabling to prevent
2756 * races with call_rcu() from interrupt handlers.
2757 */
2758 local_irq_save(flags);
8146c4e2 2759 WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
29c00b4a 2760 bl = rdp->blimit;
486e2593 2761 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, bl);
64db4cff
PM
2762 list = rdp->nxtlist;
2763 rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL];
2764 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
2765 tail = rdp->nxttail[RCU_DONE_TAIL];
b41772ab
PM
2766 for (i = RCU_NEXT_SIZE - 1; i >= 0; i--)
2767 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2768 rdp->nxttail[i] = &rdp->nxtlist;
64db4cff
PM
2769 local_irq_restore(flags);
2770
2771 /* Invoke callbacks. */
486e2593 2772 count = count_lazy = 0;
64db4cff
PM
2773 while (list) {
2774 next = list->next;
2775 prefetch(next);
551d55a9 2776 debug_rcu_head_unqueue(list);
486e2593
PM
2777 if (__rcu_reclaim(rsp->name, list))
2778 count_lazy++;
64db4cff 2779 list = next;
dff1672d
PM
2780 /* Stop only if limit reached and CPU has something to do. */
2781 if (++count >= bl &&
2782 (need_resched() ||
2783 (!is_idle_task(current) && !rcu_is_callbacks_kthread())))
64db4cff
PM
2784 break;
2785 }
2786
2787 local_irq_save(flags);
4968c300
PM
2788 trace_rcu_batch_end(rsp->name, count, !!list, need_resched(),
2789 is_idle_task(current),
2790 rcu_is_callbacks_kthread());
64db4cff
PM
2791
2792 /* Update count, and requeue any remaining callbacks. */
64db4cff
PM
2793 if (list != NULL) {
2794 *tail = rdp->nxtlist;
2795 rdp->nxtlist = list;
b41772ab
PM
2796 for (i = 0; i < RCU_NEXT_SIZE; i++)
2797 if (&rdp->nxtlist == rdp->nxttail[i])
2798 rdp->nxttail[i] = tail;
64db4cff
PM
2799 else
2800 break;
2801 }
b1420f1c
PM
2802 smp_mb(); /* List handling before counting for rcu_barrier(). */
2803 rdp->qlen_lazy -= count_lazy;
7d0ae808 2804 WRITE_ONCE(rdp->qlen, rdp->qlen - count);
b1420f1c 2805 rdp->n_cbs_invoked += count;
64db4cff
PM
2806
2807 /* Reinstate batch limit if we have worked down the excess. */
2808 if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark)
2809 rdp->blimit = blimit;
2810
37c72e56
PM
2811 /* Reset ->qlen_last_fqs_check trigger if enough CBs have drained. */
2812 if (rdp->qlen == 0 && rdp->qlen_last_fqs_check != 0) {
2813 rdp->qlen_last_fqs_check = 0;
2814 rdp->n_force_qs_snap = rsp->n_force_qs;
2815 } else if (rdp->qlen < rdp->qlen_last_fqs_check - qhimark)
2816 rdp->qlen_last_fqs_check = rdp->qlen;
cfca9279 2817 WARN_ON_ONCE((rdp->nxtlist == NULL) != (rdp->qlen == 0));
37c72e56 2818
64db4cff
PM
2819 local_irq_restore(flags);
2820
e0f23060 2821 /* Re-invoke RCU core processing if there are callbacks remaining. */
64db4cff 2822 if (cpu_has_callbacks_ready_to_invoke(rdp))
a46e0899 2823 invoke_rcu_core();
64db4cff
PM
2824}
2825
2826/*
2827 * Check to see if this CPU is in a non-context-switch quiescent state
2828 * (user mode or idle loop for rcu, non-softirq execution for rcu_bh).
e0f23060 2829 * Also schedule RCU core processing.
64db4cff 2830 *
9b2e4f18 2831 * This function must be called from hardirq context. It is normally
5403d367 2832 * invoked from the scheduling-clock interrupt.
64db4cff 2833 */
c3377c2d 2834void rcu_check_callbacks(int user)
64db4cff 2835{
f7f7bac9 2836 trace_rcu_utilization(TPS("Start scheduler-tick"));
a858af28 2837 increment_cpu_stall_ticks();
9b2e4f18 2838 if (user || rcu_is_cpu_rrupt_from_idle()) {
64db4cff
PM
2839
2840 /*
2841 * Get here if this CPU took its interrupt from user
2842 * mode or from the idle loop, and if this is not a
2843 * nested interrupt. In this case, the CPU is in
d6714c22 2844 * a quiescent state, so note it.
64db4cff
PM
2845 *
2846 * No memory barrier is required here because both
d6714c22
PM
2847 * rcu_sched_qs() and rcu_bh_qs() reference only CPU-local
2848 * variables that other CPUs neither access nor modify,
2849 * at least not while the corresponding CPU is online.
64db4cff
PM
2850 */
2851
284a8c93
PM
2852 rcu_sched_qs();
2853 rcu_bh_qs();
64db4cff
PM
2854
2855 } else if (!in_softirq()) {
2856
2857 /*
2858 * Get here if this CPU did not take its interrupt from
2859 * softirq, in other words, if it is not interrupting
2860 * a rcu_bh read-side critical section. This is an _bh
d6714c22 2861 * critical section, so note it.
64db4cff
PM
2862 */
2863
284a8c93 2864 rcu_bh_qs();
64db4cff 2865 }
86aea0e6 2866 rcu_preempt_check_callbacks();
e3950ecd 2867 if (rcu_pending())
a46e0899 2868 invoke_rcu_core();
8315f422
PM
2869 if (user)
2870 rcu_note_voluntary_context_switch(current);
f7f7bac9 2871 trace_rcu_utilization(TPS("End scheduler-tick"));
64db4cff
PM
2872}
2873
64db4cff
PM
2874/*
2875 * Scan the leaf rcu_node structures, processing dyntick state for any that
2876 * have not yet encountered a quiescent state, using the function specified.
27f4d280
PM
2877 * Also initiate boosting for any threads blocked on the root rcu_node.
2878 *
ee47eb9f 2879 * The caller must have suppressed start of new grace periods.
64db4cff 2880 */
217af2a2
PM
2881static void force_qs_rnp(struct rcu_state *rsp,
2882 int (*f)(struct rcu_data *rsp, bool *isidle,
2883 unsigned long *maxj),
2884 bool *isidle, unsigned long *maxj)
64db4cff 2885{
64db4cff
PM
2886 int cpu;
2887 unsigned long flags;
2888 unsigned long mask;
a0b6c9a7 2889 struct rcu_node *rnp;
64db4cff 2890
a0b6c9a7 2891 rcu_for_each_leaf_node(rsp, rnp) {
bde6c3aa 2892 cond_resched_rcu_qs();
64db4cff 2893 mask = 0;
2a67e741 2894 raw_spin_lock_irqsave_rcu_node(rnp, flags);
a0b6c9a7 2895 if (rnp->qsmask == 0) {
a77da14c
PM
2896 if (rcu_state_p == &rcu_sched_state ||
2897 rsp != rcu_state_p ||
2898 rcu_preempt_blocked_readers_cgp(rnp)) {
2899 /*
2900 * No point in scanning bits because they
2901 * are all zero. But we might need to
2902 * priority-boost blocked readers.
2903 */
2904 rcu_initiate_boost(rnp, flags);
2905 /* rcu_initiate_boost() releases rnp->lock */
2906 continue;
2907 }
2908 if (rnp->parent &&
2909 (rnp->parent->qsmask & rnp->grpmask)) {
2910 /*
2911 * Race between grace-period
2912 * initialization and task exiting RCU
2913 * read-side critical section: Report.
2914 */
2915 rcu_report_unblock_qs_rnp(rsp, rnp, flags);
2916 /* rcu_report_unblock_qs_rnp() rlses ->lock */
2917 continue;
2918 }
64db4cff 2919 }
bc75e999
MR
2920 for_each_leaf_node_possible_cpu(rnp, cpu) {
2921 unsigned long bit = leaf_node_cpu_bit(rnp, cpu);
0edd1b17 2922 if ((rnp->qsmask & bit) != 0) {
0edd1b17
PM
2923 if (f(per_cpu_ptr(rsp->rda, cpu), isidle, maxj))
2924 mask |= bit;
2925 }
64db4cff 2926 }
45f014c5 2927 if (mask != 0) {
654e9533
PM
2928 /* Idle/offline CPUs, report (releases rnp->lock. */
2929 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
0aa04b05
PM
2930 } else {
2931 /* Nothing to do here, so just drop the lock. */
67c583a7 2932 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff 2933 }
64db4cff 2934 }
64db4cff
PM
2935}
2936
2937/*
2938 * Force quiescent states on reluctant CPUs, and also detect which
2939 * CPUs are in dyntick-idle mode.
2940 */
4cdfc175 2941static void force_quiescent_state(struct rcu_state *rsp)
64db4cff
PM
2942{
2943 unsigned long flags;
394f2769
PM
2944 bool ret;
2945 struct rcu_node *rnp;
2946 struct rcu_node *rnp_old = NULL;
2947
2948 /* Funnel through hierarchy to reduce memory contention. */
d860d403 2949 rnp = __this_cpu_read(rsp->rda->mynode);
394f2769 2950 for (; rnp != NULL; rnp = rnp->parent) {
7d0ae808 2951 ret = (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) ||
394f2769
PM
2952 !raw_spin_trylock(&rnp->fqslock);
2953 if (rnp_old != NULL)
2954 raw_spin_unlock(&rnp_old->fqslock);
2955 if (ret) {
a792563b 2956 rsp->n_force_qs_lh++;
394f2769
PM
2957 return;
2958 }
2959 rnp_old = rnp;
2960 }
2961 /* rnp_old == rcu_get_root(rsp), rnp == NULL. */
64db4cff 2962
394f2769 2963 /* Reached the root of the rcu_node tree, acquire lock. */
2a67e741 2964 raw_spin_lock_irqsave_rcu_node(rnp_old, flags);
394f2769 2965 raw_spin_unlock(&rnp_old->fqslock);
7d0ae808 2966 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
a792563b 2967 rsp->n_force_qs_lh++;
67c583a7 2968 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
4cdfc175 2969 return; /* Someone beat us to it. */
46a1e34e 2970 }
7d0ae808 2971 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
67c583a7 2972 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
94d44776 2973 rcu_gp_kthread_wake(rsp);
64db4cff
PM
2974}
2975
64db4cff 2976/*
e0f23060
PM
2977 * This does the RCU core processing work for the specified rcu_state
2978 * and rcu_data structures. This may be called only from the CPU to
2979 * whom the rdp belongs.
64db4cff
PM
2980 */
2981static void
1bca8cf1 2982__rcu_process_callbacks(struct rcu_state *rsp)
64db4cff
PM
2983{
2984 unsigned long flags;
48a7639c 2985 bool needwake;
fa07a58f 2986 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
64db4cff 2987
2e597558
PM
2988 WARN_ON_ONCE(rdp->beenonline == 0);
2989
64db4cff
PM
2990 /* Update RCU state based on any recent quiescent states. */
2991 rcu_check_quiescent_state(rsp, rdp);
2992
2993 /* Does this CPU require a not-yet-started grace period? */
dc35c893 2994 local_irq_save(flags);
64db4cff 2995 if (cpu_needs_another_gp(rsp, rdp)) {
6cf10081 2996 raw_spin_lock_rcu_node(rcu_get_root(rsp)); /* irqs disabled. */
48a7639c 2997 needwake = rcu_start_gp(rsp);
67c583a7 2998 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
48a7639c
PM
2999 if (needwake)
3000 rcu_gp_kthread_wake(rsp);
dc35c893
PM
3001 } else {
3002 local_irq_restore(flags);
64db4cff
PM
3003 }
3004
3005 /* If there are callbacks ready, invoke them. */
09223371 3006 if (cpu_has_callbacks_ready_to_invoke(rdp))
a46e0899 3007 invoke_rcu_callbacks(rsp, rdp);
96d3fd0d
PM
3008
3009 /* Do any needed deferred wakeups of rcuo kthreads. */
3010 do_nocb_deferred_wakeup(rdp);
09223371
SL
3011}
3012
64db4cff 3013/*
e0f23060 3014 * Do RCU core processing for the current CPU.
64db4cff 3015 */
0766f788 3016static __latent_entropy void rcu_process_callbacks(struct softirq_action *unused)
64db4cff 3017{
6ce75a23
PM
3018 struct rcu_state *rsp;
3019
bfa00b4c
PM
3020 if (cpu_is_offline(smp_processor_id()))
3021 return;
f7f7bac9 3022 trace_rcu_utilization(TPS("Start RCU core"));
6ce75a23
PM
3023 for_each_rcu_flavor(rsp)
3024 __rcu_process_callbacks(rsp);
f7f7bac9 3025 trace_rcu_utilization(TPS("End RCU core"));
64db4cff
PM
3026}
3027
a26ac245 3028/*
e0f23060
PM
3029 * Schedule RCU callback invocation. If the specified type of RCU
3030 * does not support RCU priority boosting, just do a direct call,
3031 * otherwise wake up the per-CPU kernel kthread. Note that because we
924df8a0 3032 * are running on the current CPU with softirqs disabled, the
e0f23060 3033 * rcu_cpu_kthread_task cannot disappear out from under us.
a26ac245 3034 */
a46e0899 3035static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
a26ac245 3036{
7d0ae808 3037 if (unlikely(!READ_ONCE(rcu_scheduler_fully_active)))
b0d30417 3038 return;
a46e0899
PM
3039 if (likely(!rsp->boost)) {
3040 rcu_do_batch(rsp, rdp);
a26ac245
PM
3041 return;
3042 }
a46e0899 3043 invoke_rcu_callbacks_kthread();
a26ac245
PM
3044}
3045
a46e0899 3046static void invoke_rcu_core(void)
09223371 3047{
b0f74036
PM
3048 if (cpu_online(smp_processor_id()))
3049 raise_softirq(RCU_SOFTIRQ);
09223371
SL
3050}
3051
29154c57
PM
3052/*
3053 * Handle any core-RCU processing required by a call_rcu() invocation.
3054 */
3055static void __call_rcu_core(struct rcu_state *rsp, struct rcu_data *rdp,
3056 struct rcu_head *head, unsigned long flags)
64db4cff 3057{
48a7639c
PM
3058 bool needwake;
3059
62fde6ed
PM
3060 /*
3061 * If called from an extended quiescent state, invoke the RCU
3062 * core in order to force a re-evaluation of RCU's idleness.
3063 */
9910affa 3064 if (!rcu_is_watching())
62fde6ed
PM
3065 invoke_rcu_core();
3066
a16b7a69 3067 /* If interrupts were disabled or CPU offline, don't invoke RCU core. */
29154c57 3068 if (irqs_disabled_flags(flags) || cpu_is_offline(smp_processor_id()))
2655d57e 3069 return;
64db4cff 3070
37c72e56
PM
3071 /*
3072 * Force the grace period if too many callbacks or too long waiting.
3073 * Enforce hysteresis, and don't invoke force_quiescent_state()
3074 * if some other CPU has recently done so. Also, don't bother
3075 * invoking force_quiescent_state() if the newly enqueued callback
3076 * is the only one waiting for a grace period to complete.
3077 */
2655d57e 3078 if (unlikely(rdp->qlen > rdp->qlen_last_fqs_check + qhimark)) {
b52573d2
PM
3079
3080 /* Are we ignoring a completed grace period? */
470716fc 3081 note_gp_changes(rsp, rdp);
b52573d2
PM
3082
3083 /* Start a new grace period if one not already started. */
3084 if (!rcu_gp_in_progress(rsp)) {
b52573d2
PM
3085 struct rcu_node *rnp_root = rcu_get_root(rsp);
3086
2a67e741 3087 raw_spin_lock_rcu_node(rnp_root);
48a7639c 3088 needwake = rcu_start_gp(rsp);
67c583a7 3089 raw_spin_unlock_rcu_node(rnp_root);
48a7639c
PM
3090 if (needwake)
3091 rcu_gp_kthread_wake(rsp);
b52573d2
PM
3092 } else {
3093 /* Give the grace period a kick. */
3094 rdp->blimit = LONG_MAX;
3095 if (rsp->n_force_qs == rdp->n_force_qs_snap &&
3096 *rdp->nxttail[RCU_DONE_TAIL] != head)
4cdfc175 3097 force_quiescent_state(rsp);
b52573d2
PM
3098 rdp->n_force_qs_snap = rsp->n_force_qs;
3099 rdp->qlen_last_fqs_check = rdp->qlen;
3100 }
4cdfc175 3101 }
29154c57
PM
3102}
3103
ae150184
PM
3104/*
3105 * RCU callback function to leak a callback.
3106 */
3107static void rcu_leak_callback(struct rcu_head *rhp)
3108{
3109}
3110
3fbfbf7a
PM
3111/*
3112 * Helper function for call_rcu() and friends. The cpu argument will
3113 * normally be -1, indicating "currently running CPU". It may specify
3114 * a CPU only if that CPU is a no-CBs CPU. Currently, only _rcu_barrier()
3115 * is expected to specify a CPU.
3116 */
64db4cff 3117static void
b6a4ae76 3118__call_rcu(struct rcu_head *head, rcu_callback_t func,
3fbfbf7a 3119 struct rcu_state *rsp, int cpu, bool lazy)
64db4cff
PM
3120{
3121 unsigned long flags;
3122 struct rcu_data *rdp;
3123
b8f2ed53
PM
3124 /* Misaligned rcu_head! */
3125 WARN_ON_ONCE((unsigned long)head & (sizeof(void *) - 1));
3126
ae150184
PM
3127 if (debug_rcu_head_queue(head)) {
3128 /* Probable double call_rcu(), so leak the callback. */
7d0ae808 3129 WRITE_ONCE(head->func, rcu_leak_callback);
ae150184
PM
3130 WARN_ONCE(1, "__call_rcu(): Leaked duplicate callback\n");
3131 return;
3132 }
64db4cff
PM
3133 head->func = func;
3134 head->next = NULL;
64db4cff 3135 local_irq_save(flags);
394f99a9 3136 rdp = this_cpu_ptr(rsp->rda);
64db4cff
PM
3137
3138 /* Add the callback to our list. */
3fbfbf7a
PM
3139 if (unlikely(rdp->nxttail[RCU_NEXT_TAIL] == NULL) || cpu != -1) {
3140 int offline;
3141
3142 if (cpu != -1)
3143 rdp = per_cpu_ptr(rsp->rda, cpu);
143da9c2
PM
3144 if (likely(rdp->mynode)) {
3145 /* Post-boot, so this should be for a no-CBs CPU. */
3146 offline = !__call_rcu_nocb(rdp, head, lazy, flags);
3147 WARN_ON_ONCE(offline);
3148 /* Offline CPU, _call_rcu() illegal, leak callback. */
3149 local_irq_restore(flags);
3150 return;
3151 }
3152 /*
3153 * Very early boot, before rcu_init(). Initialize if needed
3154 * and then drop through to queue the callback.
3155 */
3156 BUG_ON(cpu != -1);
34404ca8 3157 WARN_ON_ONCE(!rcu_is_watching());
143da9c2
PM
3158 if (!likely(rdp->nxtlist))
3159 init_default_callback_list(rdp);
0d8ee37e 3160 }
7d0ae808 3161 WRITE_ONCE(rdp->qlen, rdp->qlen + 1);
486e2593
PM
3162 if (lazy)
3163 rdp->qlen_lazy++;
c57afe80
PM
3164 else
3165 rcu_idle_count_callbacks_posted();
b1420f1c
PM
3166 smp_mb(); /* Count before adding callback for rcu_barrier(). */
3167 *rdp->nxttail[RCU_NEXT_TAIL] = head;
3168 rdp->nxttail[RCU_NEXT_TAIL] = &head->next;
2655d57e 3169
d4c08f2a
PM
3170 if (__is_kfree_rcu_offset((unsigned long)func))
3171 trace_rcu_kfree_callback(rsp->name, head, (unsigned long)func,
486e2593 3172 rdp->qlen_lazy, rdp->qlen);
d4c08f2a 3173 else
486e2593 3174 trace_rcu_callback(rsp->name, head, rdp->qlen_lazy, rdp->qlen);
d4c08f2a 3175
29154c57
PM
3176 /* Go handle any RCU core processing required. */
3177 __call_rcu_core(rsp, rdp, head, flags);
64db4cff
PM
3178 local_irq_restore(flags);
3179}
3180
3181/*
d6714c22 3182 * Queue an RCU-sched callback for invocation after a grace period.
64db4cff 3183 */
b6a4ae76 3184void call_rcu_sched(struct rcu_head *head, rcu_callback_t func)
64db4cff 3185{
3fbfbf7a 3186 __call_rcu(head, func, &rcu_sched_state, -1, 0);
64db4cff 3187}
d6714c22 3188EXPORT_SYMBOL_GPL(call_rcu_sched);
64db4cff
PM
3189
3190/*
486e2593 3191 * Queue an RCU callback for invocation after a quicker grace period.
64db4cff 3192 */
b6a4ae76 3193void call_rcu_bh(struct rcu_head *head, rcu_callback_t func)
64db4cff 3194{
3fbfbf7a 3195 __call_rcu(head, func, &rcu_bh_state, -1, 0);
64db4cff
PM
3196}
3197EXPORT_SYMBOL_GPL(call_rcu_bh);
3198
495aa969
ACB
3199/*
3200 * Queue an RCU callback for lazy invocation after a grace period.
3201 * This will likely be later named something like "call_rcu_lazy()",
3202 * but this change will require some way of tagging the lazy RCU
3203 * callbacks in the list of pending callbacks. Until then, this
3204 * function may only be called from __kfree_rcu().
3205 */
3206void kfree_call_rcu(struct rcu_head *head,
b6a4ae76 3207 rcu_callback_t func)
495aa969 3208{
e534165b 3209 __call_rcu(head, func, rcu_state_p, -1, 1);
495aa969
ACB
3210}
3211EXPORT_SYMBOL_GPL(kfree_call_rcu);
3212
6d813391
PM
3213/*
3214 * Because a context switch is a grace period for RCU-sched and RCU-bh,
3215 * any blocking grace-period wait automatically implies a grace period
3216 * if there is only one CPU online at any point time during execution
3217 * of either synchronize_sched() or synchronize_rcu_bh(). It is OK to
3218 * occasionally incorrectly indicate that there are multiple CPUs online
3219 * when there was in fact only one the whole time, as this just adds
3220 * some overhead: RCU still operates correctly.
6d813391
PM
3221 */
3222static inline int rcu_blocking_is_gp(void)
3223{
95f0c1de
PM
3224 int ret;
3225
6d813391 3226 might_sleep(); /* Check for RCU read-side critical section. */
95f0c1de
PM
3227 preempt_disable();
3228 ret = num_online_cpus() <= 1;
3229 preempt_enable();
3230 return ret;
6d813391
PM
3231}
3232
6ebb237b
PM
3233/**
3234 * synchronize_sched - wait until an rcu-sched grace period has elapsed.
3235 *
3236 * Control will return to the caller some time after a full rcu-sched
3237 * grace period has elapsed, in other words after all currently executing
3238 * rcu-sched read-side critical sections have completed. These read-side
3239 * critical sections are delimited by rcu_read_lock_sched() and
3240 * rcu_read_unlock_sched(), and may be nested. Note that preempt_disable(),
3241 * local_irq_disable(), and so on may be used in place of
3242 * rcu_read_lock_sched().
3243 *
3244 * This means that all preempt_disable code sequences, including NMI and
f0a0e6f2
PM
3245 * non-threaded hardware-interrupt handlers, in progress on entry will
3246 * have completed before this primitive returns. However, this does not
3247 * guarantee that softirq handlers will have completed, since in some
3248 * kernels, these handlers can run in process context, and can block.
3249 *
3250 * Note that this guarantee implies further memory-ordering guarantees.
3251 * On systems with more than one CPU, when synchronize_sched() returns,
3252 * each CPU is guaranteed to have executed a full memory barrier since the
3253 * end of its last RCU-sched read-side critical section whose beginning
3254 * preceded the call to synchronize_sched(). In addition, each CPU having
3255 * an RCU read-side critical section that extends beyond the return from
3256 * synchronize_sched() is guaranteed to have executed a full memory barrier
3257 * after the beginning of synchronize_sched() and before the beginning of
3258 * that RCU read-side critical section. Note that these guarantees include
3259 * CPUs that are offline, idle, or executing in user mode, as well as CPUs
3260 * that are executing in the kernel.
3261 *
3262 * Furthermore, if CPU A invoked synchronize_sched(), which returned
3263 * to its caller on CPU B, then both CPU A and CPU B are guaranteed
3264 * to have executed a full memory barrier during the execution of
3265 * synchronize_sched() -- even if CPU A and CPU B are the same CPU (but
3266 * again only if the system has more than one CPU).
6ebb237b
PM
3267 *
3268 * This primitive provides the guarantees made by the (now removed)
3269 * synchronize_kernel() API. In contrast, synchronize_rcu() only
3270 * guarantees that rcu_read_lock() sections will have completed.
3271 * In "classic RCU", these two guarantees happen to be one and
3272 * the same, but can differ in realtime RCU implementations.
3273 */
3274void synchronize_sched(void)
3275{
f78f5b90
PM
3276 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3277 lock_is_held(&rcu_lock_map) ||
3278 lock_is_held(&rcu_sched_lock_map),
3279 "Illegal synchronize_sched() in RCU-sched read-side critical section");
6ebb237b
PM
3280 if (rcu_blocking_is_gp())
3281 return;
5afff48b 3282 if (rcu_gp_is_expedited())
3705b88d
AM
3283 synchronize_sched_expedited();
3284 else
3285 wait_rcu_gp(call_rcu_sched);
6ebb237b
PM
3286}
3287EXPORT_SYMBOL_GPL(synchronize_sched);
3288
3289/**
3290 * synchronize_rcu_bh - wait until an rcu_bh grace period has elapsed.
3291 *
3292 * Control will return to the caller some time after a full rcu_bh grace
3293 * period has elapsed, in other words after all currently executing rcu_bh
3294 * read-side critical sections have completed. RCU read-side critical
3295 * sections are delimited by rcu_read_lock_bh() and rcu_read_unlock_bh(),
3296 * and may be nested.
f0a0e6f2
PM
3297 *
3298 * See the description of synchronize_sched() for more detailed information
3299 * on memory ordering guarantees.
6ebb237b
PM
3300 */
3301void synchronize_rcu_bh(void)
3302{
f78f5b90
PM
3303 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3304 lock_is_held(&rcu_lock_map) ||
3305 lock_is_held(&rcu_sched_lock_map),
3306 "Illegal synchronize_rcu_bh() in RCU-bh read-side critical section");
6ebb237b
PM
3307 if (rcu_blocking_is_gp())
3308 return;
5afff48b 3309 if (rcu_gp_is_expedited())
3705b88d
AM
3310 synchronize_rcu_bh_expedited();
3311 else
3312 wait_rcu_gp(call_rcu_bh);
6ebb237b
PM
3313}
3314EXPORT_SYMBOL_GPL(synchronize_rcu_bh);
3315
765a3f4f
PM
3316/**
3317 * get_state_synchronize_rcu - Snapshot current RCU state
3318 *
3319 * Returns a cookie that is used by a later call to cond_synchronize_rcu()
3320 * to determine whether or not a full grace period has elapsed in the
3321 * meantime.
3322 */
3323unsigned long get_state_synchronize_rcu(void)
3324{
3325 /*
3326 * Any prior manipulation of RCU-protected data must happen
3327 * before the load from ->gpnum.
3328 */
3329 smp_mb(); /* ^^^ */
3330
3331 /*
3332 * Make sure this load happens before the purportedly
3333 * time-consuming work between get_state_synchronize_rcu()
3334 * and cond_synchronize_rcu().
3335 */
e534165b 3336 return smp_load_acquire(&rcu_state_p->gpnum);
765a3f4f
PM
3337}
3338EXPORT_SYMBOL_GPL(get_state_synchronize_rcu);
3339
3340/**
3341 * cond_synchronize_rcu - Conditionally wait for an RCU grace period
3342 *
3343 * @oldstate: return value from earlier call to get_state_synchronize_rcu()
3344 *
3345 * If a full RCU grace period has elapsed since the earlier call to
3346 * get_state_synchronize_rcu(), just return. Otherwise, invoke
3347 * synchronize_rcu() to wait for a full grace period.
3348 *
3349 * Yes, this function does not take counter wrap into account. But
3350 * counter wrap is harmless. If the counter wraps, we have waited for
3351 * more than 2 billion grace periods (and way more on a 64-bit system!),
3352 * so waiting for one additional grace period should be just fine.
3353 */
3354void cond_synchronize_rcu(unsigned long oldstate)
3355{
3356 unsigned long newstate;
3357
3358 /*
3359 * Ensure that this load happens before any RCU-destructive
3360 * actions the caller might carry out after we return.
3361 */
e534165b 3362 newstate = smp_load_acquire(&rcu_state_p->completed);
765a3f4f
PM
3363 if (ULONG_CMP_GE(oldstate, newstate))
3364 synchronize_rcu();
3365}
3366EXPORT_SYMBOL_GPL(cond_synchronize_rcu);
3367
24560056
PM
3368/**
3369 * get_state_synchronize_sched - Snapshot current RCU-sched state
3370 *
3371 * Returns a cookie that is used by a later call to cond_synchronize_sched()
3372 * to determine whether or not a full grace period has elapsed in the
3373 * meantime.
3374 */
3375unsigned long get_state_synchronize_sched(void)
3376{
3377 /*
3378 * Any prior manipulation of RCU-protected data must happen
3379 * before the load from ->gpnum.
3380 */
3381 smp_mb(); /* ^^^ */
3382
3383 /*
3384 * Make sure this load happens before the purportedly
3385 * time-consuming work between get_state_synchronize_sched()
3386 * and cond_synchronize_sched().
3387 */
3388 return smp_load_acquire(&rcu_sched_state.gpnum);
3389}
3390EXPORT_SYMBOL_GPL(get_state_synchronize_sched);
3391
3392/**
3393 * cond_synchronize_sched - Conditionally wait for an RCU-sched grace period
3394 *
3395 * @oldstate: return value from earlier call to get_state_synchronize_sched()
3396 *
3397 * If a full RCU-sched grace period has elapsed since the earlier call to
3398 * get_state_synchronize_sched(), just return. Otherwise, invoke
3399 * synchronize_sched() to wait for a full grace period.
3400 *
3401 * Yes, this function does not take counter wrap into account. But
3402 * counter wrap is harmless. If the counter wraps, we have waited for
3403 * more than 2 billion grace periods (and way more on a 64-bit system!),
3404 * so waiting for one additional grace period should be just fine.
3405 */
3406void cond_synchronize_sched(unsigned long oldstate)
3407{
3408 unsigned long newstate;
3409
3410 /*
3411 * Ensure that this load happens before any RCU-destructive
3412 * actions the caller might carry out after we return.
3413 */
3414 newstate = smp_load_acquire(&rcu_sched_state.completed);
3415 if (ULONG_CMP_GE(oldstate, newstate))
3416 synchronize_sched();
3417}
3418EXPORT_SYMBOL_GPL(cond_synchronize_sched);
3419
28f00767
PM
3420/* Adjust sequence number for start of update-side operation. */
3421static void rcu_seq_start(unsigned long *sp)
3422{
3423 WRITE_ONCE(*sp, *sp + 1);
3424 smp_mb(); /* Ensure update-side operation after counter increment. */
3425 WARN_ON_ONCE(!(*sp & 0x1));
3426}
3427
3428/* Adjust sequence number for end of update-side operation. */
3429static void rcu_seq_end(unsigned long *sp)
3430{
3431 smp_mb(); /* Ensure update-side operation before counter increment. */
3432 WRITE_ONCE(*sp, *sp + 1);
3433 WARN_ON_ONCE(*sp & 0x1);
3434}
3435
3436/* Take a snapshot of the update side's sequence number. */
3437static unsigned long rcu_seq_snap(unsigned long *sp)
3438{
3439 unsigned long s;
3440
28f00767
PM
3441 s = (READ_ONCE(*sp) + 3) & ~0x1;
3442 smp_mb(); /* Above access must not bleed into critical section. */
3443 return s;
3444}
3445
3446/*
3447 * Given a snapshot from rcu_seq_snap(), determine whether or not a
3448 * full update-side operation has occurred.
3449 */
3450static bool rcu_seq_done(unsigned long *sp, unsigned long s)
3451{
3452 return ULONG_CMP_GE(READ_ONCE(*sp), s);
3453}
3454
64db4cff
PM
3455/*
3456 * Check to see if there is any immediate RCU-related work to be done
3457 * by the current CPU, for the specified type of RCU, returning 1 if so.
3458 * The checks are in order of increasing expense: checks that can be
3459 * carried out against CPU-local state are performed first. However,
3460 * we must check for CPU stalls first, else we might not get a chance.
3461 */
3462static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
3463{
2f51f988
PM
3464 struct rcu_node *rnp = rdp->mynode;
3465
64db4cff
PM
3466 rdp->n_rcu_pending++;
3467
3468 /* Check for CPU stalls, if enabled. */
3469 check_cpu_stall(rsp, rdp);
3470
a096932f
PM
3471 /* Is this CPU a NO_HZ_FULL CPU that should ignore RCU? */
3472 if (rcu_nohz_full_cpu(rsp))
3473 return 0;
3474
64db4cff 3475 /* Is the RCU core waiting for a quiescent state from this CPU? */
5c51dd73 3476 if (rcu_scheduler_fully_active &&
5b74c458 3477 rdp->core_needs_qs && rdp->cpu_no_qs.b.norm &&
5cd37193 3478 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) {
97c668b8
PM
3479 rdp->n_rp_core_needs_qs++;
3480 } else if (rdp->core_needs_qs &&
5b74c458 3481 (!rdp->cpu_no_qs.b.norm ||
5cd37193 3482 rdp->rcu_qs_ctr_snap != __this_cpu_read(rcu_qs_ctr))) {
d21670ac 3483 rdp->n_rp_report_qs++;
64db4cff 3484 return 1;
7ba5c840 3485 }
64db4cff
PM
3486
3487 /* Does this CPU have callbacks ready to invoke? */
7ba5c840
PM
3488 if (cpu_has_callbacks_ready_to_invoke(rdp)) {
3489 rdp->n_rp_cb_ready++;
64db4cff 3490 return 1;
7ba5c840 3491 }
64db4cff
PM
3492
3493 /* Has RCU gone idle with this CPU needing another grace period? */
7ba5c840
PM
3494 if (cpu_needs_another_gp(rsp, rdp)) {
3495 rdp->n_rp_cpu_needs_gp++;
64db4cff 3496 return 1;
7ba5c840 3497 }
64db4cff
PM
3498
3499 /* Has another RCU grace period completed? */
7d0ae808 3500 if (READ_ONCE(rnp->completed) != rdp->completed) { /* outside lock */
7ba5c840 3501 rdp->n_rp_gp_completed++;
64db4cff 3502 return 1;
7ba5c840 3503 }
64db4cff
PM
3504
3505 /* Has a new RCU grace period started? */
7d0ae808
PM
3506 if (READ_ONCE(rnp->gpnum) != rdp->gpnum ||
3507 unlikely(READ_ONCE(rdp->gpwrap))) { /* outside lock */
7ba5c840 3508 rdp->n_rp_gp_started++;
64db4cff 3509 return 1;
7ba5c840 3510 }
64db4cff 3511
96d3fd0d
PM
3512 /* Does this CPU need a deferred NOCB wakeup? */
3513 if (rcu_nocb_need_deferred_wakeup(rdp)) {
3514 rdp->n_rp_nocb_defer_wakeup++;
3515 return 1;
3516 }
3517
64db4cff 3518 /* nothing to do */
7ba5c840 3519 rdp->n_rp_need_nothing++;
64db4cff
PM
3520 return 0;
3521}
3522
3523/*
3524 * Check to see if there is any immediate RCU-related work to be done
3525 * by the current CPU, returning 1 if so. This function is part of the
3526 * RCU implementation; it is -not- an exported member of the RCU API.
3527 */
e3950ecd 3528static int rcu_pending(void)
64db4cff 3529{
6ce75a23
PM
3530 struct rcu_state *rsp;
3531
3532 for_each_rcu_flavor(rsp)
e3950ecd 3533 if (__rcu_pending(rsp, this_cpu_ptr(rsp->rda)))
6ce75a23
PM
3534 return 1;
3535 return 0;
64db4cff
PM
3536}
3537
3538/*
c0f4dfd4
PM
3539 * Return true if the specified CPU has any callback. If all_lazy is
3540 * non-NULL, store an indication of whether all callbacks are lazy.
3541 * (If there are no callbacks, all of them are deemed to be lazy.)
64db4cff 3542 */
82072c4f 3543static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
64db4cff 3544{
c0f4dfd4
PM
3545 bool al = true;
3546 bool hc = false;
3547 struct rcu_data *rdp;
6ce75a23
PM
3548 struct rcu_state *rsp;
3549
c0f4dfd4 3550 for_each_rcu_flavor(rsp) {
aa6da514 3551 rdp = this_cpu_ptr(rsp->rda);
69c8d28c
PM
3552 if (!rdp->nxtlist)
3553 continue;
3554 hc = true;
3555 if (rdp->qlen != rdp->qlen_lazy || !all_lazy) {
c0f4dfd4 3556 al = false;
69c8d28c
PM
3557 break;
3558 }
c0f4dfd4
PM
3559 }
3560 if (all_lazy)
3561 *all_lazy = al;
3562 return hc;
64db4cff
PM
3563}
3564
a83eff0a
PM
3565/*
3566 * Helper function for _rcu_barrier() tracing. If tracing is disabled,
3567 * the compiler is expected to optimize this away.
3568 */
e66c33d5 3569static void _rcu_barrier_trace(struct rcu_state *rsp, const char *s,
a83eff0a
PM
3570 int cpu, unsigned long done)
3571{
3572 trace_rcu_barrier(rsp->name, s, cpu,
3573 atomic_read(&rsp->barrier_cpu_count), done);
3574}
3575
b1420f1c
PM
3576/*
3577 * RCU callback function for _rcu_barrier(). If we are last, wake
3578 * up the task executing _rcu_barrier().
3579 */
24ebbca8 3580static void rcu_barrier_callback(struct rcu_head *rhp)
d0ec774c 3581{
24ebbca8
PM
3582 struct rcu_data *rdp = container_of(rhp, struct rcu_data, barrier_head);
3583 struct rcu_state *rsp = rdp->rsp;
3584
a83eff0a 3585 if (atomic_dec_and_test(&rsp->barrier_cpu_count)) {
4f525a52 3586 _rcu_barrier_trace(rsp, "LastCB", -1, rsp->barrier_sequence);
7db74df8 3587 complete(&rsp->barrier_completion);
a83eff0a 3588 } else {
4f525a52 3589 _rcu_barrier_trace(rsp, "CB", -1, rsp->barrier_sequence);
a83eff0a 3590 }
d0ec774c
PM
3591}
3592
3593/*
3594 * Called with preemption disabled, and from cross-cpu IRQ context.
3595 */
3596static void rcu_barrier_func(void *type)
3597{
037b64ed 3598 struct rcu_state *rsp = type;
fa07a58f 3599 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
d0ec774c 3600
4f525a52 3601 _rcu_barrier_trace(rsp, "IRQ", -1, rsp->barrier_sequence);
24ebbca8 3602 atomic_inc(&rsp->barrier_cpu_count);
06668efa 3603 rsp->call(&rdp->barrier_head, rcu_barrier_callback);
d0ec774c
PM
3604}
3605
d0ec774c
PM
3606/*
3607 * Orchestrate the specified type of RCU barrier, waiting for all
3608 * RCU callbacks of the specified type to complete.
3609 */
037b64ed 3610static void _rcu_barrier(struct rcu_state *rsp)
d0ec774c 3611{
b1420f1c 3612 int cpu;
b1420f1c 3613 struct rcu_data *rdp;
4f525a52 3614 unsigned long s = rcu_seq_snap(&rsp->barrier_sequence);
b1420f1c 3615
4f525a52 3616 _rcu_barrier_trace(rsp, "Begin", -1, s);
b1420f1c 3617
e74f4c45 3618 /* Take mutex to serialize concurrent rcu_barrier() requests. */
7be7f0be 3619 mutex_lock(&rsp->barrier_mutex);
b1420f1c 3620
4f525a52
PM
3621 /* Did someone else do our work for us? */
3622 if (rcu_seq_done(&rsp->barrier_sequence, s)) {
3623 _rcu_barrier_trace(rsp, "EarlyExit", -1, rsp->barrier_sequence);
cf3a9c48
PM
3624 smp_mb(); /* caller's subsequent code after above check. */
3625 mutex_unlock(&rsp->barrier_mutex);
3626 return;
3627 }
3628
4f525a52
PM
3629 /* Mark the start of the barrier operation. */
3630 rcu_seq_start(&rsp->barrier_sequence);
3631 _rcu_barrier_trace(rsp, "Inc1", -1, rsp->barrier_sequence);
b1420f1c 3632
d0ec774c 3633 /*
b1420f1c
PM
3634 * Initialize the count to one rather than to zero in order to
3635 * avoid a too-soon return to zero in case of a short grace period
1331e7a1
PM
3636 * (or preemption of this task). Exclude CPU-hotplug operations
3637 * to ensure that no offline CPU has callbacks queued.
d0ec774c 3638 */
7db74df8 3639 init_completion(&rsp->barrier_completion);
24ebbca8 3640 atomic_set(&rsp->barrier_cpu_count, 1);
1331e7a1 3641 get_online_cpus();
b1420f1c
PM
3642
3643 /*
1331e7a1
PM
3644 * Force each CPU with callbacks to register a new callback.
3645 * When that callback is invoked, we will know that all of the
3646 * corresponding CPU's preceding callbacks have been invoked.
b1420f1c 3647 */
3fbfbf7a 3648 for_each_possible_cpu(cpu) {
d1e43fa5 3649 if (!cpu_online(cpu) && !rcu_is_nocb_cpu(cpu))
3fbfbf7a 3650 continue;
b1420f1c 3651 rdp = per_cpu_ptr(rsp->rda, cpu);
d1e43fa5 3652 if (rcu_is_nocb_cpu(cpu)) {
d7e29933
PM
3653 if (!rcu_nocb_cpu_needs_barrier(rsp, cpu)) {
3654 _rcu_barrier_trace(rsp, "OfflineNoCB", cpu,
4f525a52 3655 rsp->barrier_sequence);
d7e29933
PM
3656 } else {
3657 _rcu_barrier_trace(rsp, "OnlineNoCB", cpu,
4f525a52 3658 rsp->barrier_sequence);
41050a00 3659 smp_mb__before_atomic();
d7e29933
PM
3660 atomic_inc(&rsp->barrier_cpu_count);
3661 __call_rcu(&rdp->barrier_head,
3662 rcu_barrier_callback, rsp, cpu, 0);
3663 }
7d0ae808 3664 } else if (READ_ONCE(rdp->qlen)) {
a83eff0a 3665 _rcu_barrier_trace(rsp, "OnlineQ", cpu,
4f525a52 3666 rsp->barrier_sequence);
037b64ed 3667 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1);
b1420f1c 3668 } else {
a83eff0a 3669 _rcu_barrier_trace(rsp, "OnlineNQ", cpu,
4f525a52 3670 rsp->barrier_sequence);
b1420f1c
PM
3671 }
3672 }
1331e7a1 3673 put_online_cpus();
b1420f1c
PM
3674
3675 /*
3676 * Now that we have an rcu_barrier_callback() callback on each
3677 * CPU, and thus each counted, remove the initial count.
3678 */
24ebbca8 3679 if (atomic_dec_and_test(&rsp->barrier_cpu_count))
7db74df8 3680 complete(&rsp->barrier_completion);
b1420f1c
PM
3681
3682 /* Wait for all rcu_barrier_callback() callbacks to be invoked. */
7db74df8 3683 wait_for_completion(&rsp->barrier_completion);
b1420f1c 3684
4f525a52
PM
3685 /* Mark the end of the barrier operation. */
3686 _rcu_barrier_trace(rsp, "Inc2", -1, rsp->barrier_sequence);
3687 rcu_seq_end(&rsp->barrier_sequence);
3688
b1420f1c 3689 /* Other rcu_barrier() invocations can now safely proceed. */
7be7f0be 3690 mutex_unlock(&rsp->barrier_mutex);
d0ec774c 3691}
d0ec774c
PM
3692
3693/**
3694 * rcu_barrier_bh - Wait until all in-flight call_rcu_bh() callbacks complete.
3695 */
3696void rcu_barrier_bh(void)
3697{
037b64ed 3698 _rcu_barrier(&rcu_bh_state);
d0ec774c
PM
3699}
3700EXPORT_SYMBOL_GPL(rcu_barrier_bh);
3701
3702/**
3703 * rcu_barrier_sched - Wait for in-flight call_rcu_sched() callbacks.
3704 */
3705void rcu_barrier_sched(void)
3706{
037b64ed 3707 _rcu_barrier(&rcu_sched_state);
d0ec774c
PM
3708}
3709EXPORT_SYMBOL_GPL(rcu_barrier_sched);
3710
0aa04b05
PM
3711/*
3712 * Propagate ->qsinitmask bits up the rcu_node tree to account for the
3713 * first CPU in a given leaf rcu_node structure coming online. The caller
3714 * must hold the corresponding leaf rcu_node ->lock with interrrupts
3715 * disabled.
3716 */
3717static void rcu_init_new_rnp(struct rcu_node *rnp_leaf)
3718{
3719 long mask;
3720 struct rcu_node *rnp = rnp_leaf;
3721
3722 for (;;) {
3723 mask = rnp->grpmask;
3724 rnp = rnp->parent;
3725 if (rnp == NULL)
3726 return;
6cf10081 3727 raw_spin_lock_rcu_node(rnp); /* Interrupts already disabled. */
0aa04b05 3728 rnp->qsmaskinit |= mask;
67c583a7 3729 raw_spin_unlock_rcu_node(rnp); /* Interrupts remain disabled. */
0aa04b05
PM
3730 }
3731}
3732
64db4cff 3733/*
27569620 3734 * Do boot-time initialization of a CPU's per-CPU RCU data.
64db4cff 3735 */
27569620
PM
3736static void __init
3737rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
64db4cff
PM
3738{
3739 unsigned long flags;
394f99a9 3740 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
27569620
PM
3741 struct rcu_node *rnp = rcu_get_root(rsp);
3742
3743 /* Set up local state, ensuring consistent view of global state. */
6cf10081 3744 raw_spin_lock_irqsave_rcu_node(rnp, flags);
bc75e999 3745 rdp->grpmask = leaf_node_cpu_bit(rdp->mynode, cpu);
27569620 3746 rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
29e37d81 3747 WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
9b2e4f18 3748 WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
27569620 3749 rdp->cpu = cpu;
d4c08f2a 3750 rdp->rsp = rsp;
3fbfbf7a 3751 rcu_boot_init_nocb_percpu_data(rdp);
67c583a7 3752 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
27569620
PM
3753}
3754
3755/*
3756 * Initialize a CPU's per-CPU RCU data. Note that only one online or
3757 * offline event can be happening at a given time. Note also that we
3758 * can accept some slop in the rsp->completed access due to the fact
3759 * that this CPU cannot possibly have any RCU callbacks in flight yet.
64db4cff 3760 */
49fb4c62 3761static void
9b67122a 3762rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
64db4cff
PM
3763{
3764 unsigned long flags;
64db4cff 3765 unsigned long mask;
394f99a9 3766 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
64db4cff
PM
3767 struct rcu_node *rnp = rcu_get_root(rsp);
3768
3769 /* Set up local state, ensuring consistent view of global state. */
6cf10081 3770 raw_spin_lock_irqsave_rcu_node(rnp, flags);
37c72e56
PM
3771 rdp->qlen_last_fqs_check = 0;
3772 rdp->n_force_qs_snap = rsp->n_force_qs;
64db4cff 3773 rdp->blimit = blimit;
39c8d313
PM
3774 if (!rdp->nxtlist)
3775 init_callback_list(rdp); /* Re-enable callbacks on this CPU. */
29e37d81 3776 rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
2333210b 3777 rcu_sysidle_init_percpu_data(rdp->dynticks);
c92b131b
PM
3778 atomic_set(&rdp->dynticks->dynticks,
3779 (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
67c583a7 3780 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
64db4cff 3781
0aa04b05
PM
3782 /*
3783 * Add CPU to leaf rcu_node pending-online bitmask. Any needed
3784 * propagation up the rcu_node tree will happen at the beginning
3785 * of the next grace period.
3786 */
64db4cff
PM
3787 rnp = rdp->mynode;
3788 mask = rdp->grpmask;
2a67e741 3789 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
b9585e94
PM
3790 if (!rdp->beenonline)
3791 WRITE_ONCE(rsp->ncpus, READ_ONCE(rsp->ncpus) + 1);
3792 rdp->beenonline = true; /* We have now been online. */
0aa04b05
PM
3793 rdp->gpnum = rnp->completed; /* Make CPU later note any new GP. */
3794 rdp->completed = rnp->completed;
5b74c458 3795 rdp->cpu_no_qs.b.norm = true;
a738eec6 3796 rdp->rcu_qs_ctr_snap = per_cpu(rcu_qs_ctr, cpu);
97c668b8 3797 rdp->core_needs_qs = false;
0aa04b05 3798 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuonl"));
67c583a7 3799 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
64db4cff
PM
3800}
3801
4df83742 3802int rcutree_prepare_cpu(unsigned int cpu)
64db4cff 3803{
6ce75a23
PM
3804 struct rcu_state *rsp;
3805
3806 for_each_rcu_flavor(rsp)
9b67122a 3807 rcu_init_percpu_data(cpu, rsp);
4df83742
TG
3808
3809 rcu_prepare_kthreads(cpu);
3810 rcu_spawn_all_nocb_kthreads(cpu);
3811
3812 return 0;
3813}
3814
3815static void rcutree_affinity_setting(unsigned int cpu, int outgoing)
3816{
3817 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
3818
3819 rcu_boost_kthread_setaffinity(rdp->mynode, outgoing);
3820}
3821
3822int rcutree_online_cpu(unsigned int cpu)
3823{
3824 sync_sched_exp_online_cleanup(cpu);
3825 rcutree_affinity_setting(cpu, -1);
3826 return 0;
3827}
3828
3829int rcutree_offline_cpu(unsigned int cpu)
3830{
3831 rcutree_affinity_setting(cpu, cpu);
3832 return 0;
3833}
3834
3835
3836int rcutree_dying_cpu(unsigned int cpu)
3837{
3838 struct rcu_state *rsp;
3839
3840 for_each_rcu_flavor(rsp)
3841 rcu_cleanup_dying_cpu(rsp);
3842 return 0;
3843}
3844
3845int rcutree_dead_cpu(unsigned int cpu)
3846{
3847 struct rcu_state *rsp;
3848
3849 for_each_rcu_flavor(rsp) {
3850 rcu_cleanup_dead_cpu(cpu, rsp);
3851 do_nocb_deferred_wakeup(per_cpu_ptr(rsp->rda, cpu));
3852 }
3853 return 0;
64db4cff
PM
3854}
3855
7ec99de3
PM
3856/*
3857 * Mark the specified CPU as being online so that subsequent grace periods
3858 * (both expedited and normal) will wait on it. Note that this means that
3859 * incoming CPUs are not allowed to use RCU read-side critical sections
3860 * until this function is called. Failing to observe this restriction
3861 * will result in lockdep splats.
3862 */
3863void rcu_cpu_starting(unsigned int cpu)
3864{
3865 unsigned long flags;
3866 unsigned long mask;
3867 struct rcu_data *rdp;
3868 struct rcu_node *rnp;
3869 struct rcu_state *rsp;
3870
3871 for_each_rcu_flavor(rsp) {
3872 rdp = this_cpu_ptr(rsp->rda);
3873 rnp = rdp->mynode;
3874 mask = rdp->grpmask;
3875 raw_spin_lock_irqsave_rcu_node(rnp, flags);
3876 rnp->qsmaskinitnext |= mask;
3877 rnp->expmaskinitnext |= mask;
3878 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
3879 }
3880}
3881
27d50c7e
TG
3882#ifdef CONFIG_HOTPLUG_CPU
3883/*
710d60cb
LT
3884 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3885 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3886 * bit masks.
27d50c7e
TG
3887 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3888 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3889 * bit masks.
3890 */
3891static void rcu_cleanup_dying_idle_cpu(int cpu, struct rcu_state *rsp)
3892{
3893 unsigned long flags;
3894 unsigned long mask;
3895 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
3896 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
3897
27d50c7e
TG
3898 /* Remove outgoing CPU from mask in the leaf rcu_node structure. */
3899 mask = rdp->grpmask;
3900 raw_spin_lock_irqsave_rcu_node(rnp, flags); /* Enforce GP memory-order guarantee. */
3901 rnp->qsmaskinitnext &= ~mask;
710d60cb 3902 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
27d50c7e
TG
3903}
3904
3905void rcu_report_dead(unsigned int cpu)
3906{
3907 struct rcu_state *rsp;
3908
3909 /* QS for any half-done expedited RCU-sched GP. */
3910 preempt_disable();
3911 rcu_report_exp_rdp(&rcu_sched_state,
3912 this_cpu_ptr(rcu_sched_state.rda), true);
3913 preempt_enable();
3914 for_each_rcu_flavor(rsp)
3915 rcu_cleanup_dying_idle_cpu(cpu, rsp);
3916}
3917#endif
3918
d1d74d14
BP
3919static int rcu_pm_notify(struct notifier_block *self,
3920 unsigned long action, void *hcpu)
3921{
3922 switch (action) {
3923 case PM_HIBERNATION_PREPARE:
3924 case PM_SUSPEND_PREPARE:
3925 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
5afff48b 3926 rcu_expedite_gp();
d1d74d14
BP
3927 break;
3928 case PM_POST_HIBERNATION:
3929 case PM_POST_SUSPEND:
5afff48b
PM
3930 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
3931 rcu_unexpedite_gp();
d1d74d14
BP
3932 break;
3933 default:
3934 break;
3935 }
3936 return NOTIFY_OK;
3937}
3938
b3dbec76 3939/*
9386c0b7 3940 * Spawn the kthreads that handle each RCU flavor's grace periods.
b3dbec76
PM
3941 */
3942static int __init rcu_spawn_gp_kthread(void)
3943{
3944 unsigned long flags;
a94844b2 3945 int kthread_prio_in = kthread_prio;
b3dbec76
PM
3946 struct rcu_node *rnp;
3947 struct rcu_state *rsp;
a94844b2 3948 struct sched_param sp;
b3dbec76
PM
3949 struct task_struct *t;
3950
a94844b2
PM
3951 /* Force priority into range. */
3952 if (IS_ENABLED(CONFIG_RCU_BOOST) && kthread_prio < 1)
3953 kthread_prio = 1;
3954 else if (kthread_prio < 0)
3955 kthread_prio = 0;
3956 else if (kthread_prio > 99)
3957 kthread_prio = 99;
3958 if (kthread_prio != kthread_prio_in)
3959 pr_alert("rcu_spawn_gp_kthread(): Limited prio to %d from %d\n",
3960 kthread_prio, kthread_prio_in);
3961
9386c0b7 3962 rcu_scheduler_fully_active = 1;
b3dbec76 3963 for_each_rcu_flavor(rsp) {
a94844b2 3964 t = kthread_create(rcu_gp_kthread, rsp, "%s", rsp->name);
b3dbec76
PM
3965 BUG_ON(IS_ERR(t));
3966 rnp = rcu_get_root(rsp);
6cf10081 3967 raw_spin_lock_irqsave_rcu_node(rnp, flags);
b3dbec76 3968 rsp->gp_kthread = t;
a94844b2
PM
3969 if (kthread_prio) {
3970 sp.sched_priority = kthread_prio;
3971 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
3972 }
67c583a7 3973 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
e11f1335 3974 wake_up_process(t);
b3dbec76 3975 }
35ce7f29 3976 rcu_spawn_nocb_kthreads();
9386c0b7 3977 rcu_spawn_boost_kthreads();
b3dbec76
PM
3978 return 0;
3979}
3980early_initcall(rcu_spawn_gp_kthread);
3981
bbad9379
PM
3982/*
3983 * This function is invoked towards the end of the scheduler's initialization
3984 * process. Before this is called, the idle task might contain
3985 * RCU read-side critical sections (during which time, this idle
3986 * task is booting the system). After this function is called, the
3987 * idle tasks are prohibited from containing RCU read-side critical
3988 * sections. This function also enables RCU lockdep checking.
3989 */
3990void rcu_scheduler_starting(void)
3991{
3992 WARN_ON(num_online_cpus() != 1);
3993 WARN_ON(nr_context_switches() > 0);
3994 rcu_scheduler_active = 1;
3995}
3996
64db4cff
PM
3997/*
3998 * Compute the per-level fanout, either using the exact fanout specified
7fa27001 3999 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
64db4cff 4000 */
199977bf 4001static void __init rcu_init_levelspread(int *levelspread, const int *levelcnt)
64db4cff 4002{
64db4cff
PM
4003 int i;
4004
7fa27001 4005 if (rcu_fanout_exact) {
199977bf 4006 levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
66292405 4007 for (i = rcu_num_lvls - 2; i >= 0; i--)
199977bf 4008 levelspread[i] = RCU_FANOUT;
66292405
PM
4009 } else {
4010 int ccur;
4011 int cprv;
4012
4013 cprv = nr_cpu_ids;
4014 for (i = rcu_num_lvls - 1; i >= 0; i--) {
199977bf
AG
4015 ccur = levelcnt[i];
4016 levelspread[i] = (cprv + ccur - 1) / ccur;
66292405
PM
4017 cprv = ccur;
4018 }
64db4cff
PM
4019 }
4020}
64db4cff
PM
4021
4022/*
4023 * Helper function for rcu_init() that initializes one rcu_state structure.
4024 */
a87f203e 4025static void __init rcu_init_one(struct rcu_state *rsp)
64db4cff 4026{
cb007102
AG
4027 static const char * const buf[] = RCU_NODE_NAME_INIT;
4028 static const char * const fqs[] = RCU_FQS_NAME_INIT;
3dc5dbe9
PM
4029 static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
4030 static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
4a81e832 4031 static u8 fl_mask = 0x1;
199977bf
AG
4032
4033 int levelcnt[RCU_NUM_LVLS]; /* # nodes in each level. */
4034 int levelspread[RCU_NUM_LVLS]; /* kids/node in each level. */
64db4cff
PM
4035 int cpustride = 1;
4036 int i;
4037 int j;
4038 struct rcu_node *rnp;
4039
05b84aec 4040 BUILD_BUG_ON(RCU_NUM_LVLS > ARRAY_SIZE(buf)); /* Fix buf[] init! */
b6407e86 4041
3eaaaf6c
PM
4042 /* Silence gcc 4.8 false positive about array index out of range. */
4043 if (rcu_num_lvls <= 0 || rcu_num_lvls > RCU_NUM_LVLS)
4044 panic("rcu_init_one: rcu_num_lvls out of range");
4930521a 4045
64db4cff
PM
4046 /* Initialize the level-tracking arrays. */
4047
f885b7f2 4048 for (i = 0; i < rcu_num_lvls; i++)
199977bf 4049 levelcnt[i] = num_rcu_lvl[i];
f885b7f2 4050 for (i = 1; i < rcu_num_lvls; i++)
199977bf
AG
4051 rsp->level[i] = rsp->level[i - 1] + levelcnt[i - 1];
4052 rcu_init_levelspread(levelspread, levelcnt);
4a81e832
PM
4053 rsp->flavor_mask = fl_mask;
4054 fl_mask <<= 1;
64db4cff
PM
4055
4056 /* Initialize the elements themselves, starting from the leaves. */
4057
f885b7f2 4058 for (i = rcu_num_lvls - 1; i >= 0; i--) {
199977bf 4059 cpustride *= levelspread[i];
64db4cff 4060 rnp = rsp->level[i];
199977bf 4061 for (j = 0; j < levelcnt[i]; j++, rnp++) {
67c583a7
BF
4062 raw_spin_lock_init(&ACCESS_PRIVATE(rnp, lock));
4063 lockdep_set_class_and_name(&ACCESS_PRIVATE(rnp, lock),
b6407e86 4064 &rcu_node_class[i], buf[i]);
394f2769
PM
4065 raw_spin_lock_init(&rnp->fqslock);
4066 lockdep_set_class_and_name(&rnp->fqslock,
4067 &rcu_fqs_class[i], fqs[i]);
25d30cf4
PM
4068 rnp->gpnum = rsp->gpnum;
4069 rnp->completed = rsp->completed;
64db4cff
PM
4070 rnp->qsmask = 0;
4071 rnp->qsmaskinit = 0;
4072 rnp->grplo = j * cpustride;
4073 rnp->grphi = (j + 1) * cpustride - 1;
595f3900
HS
4074 if (rnp->grphi >= nr_cpu_ids)
4075 rnp->grphi = nr_cpu_ids - 1;
64db4cff
PM
4076 if (i == 0) {
4077 rnp->grpnum = 0;
4078 rnp->grpmask = 0;
4079 rnp->parent = NULL;
4080 } else {
199977bf 4081 rnp->grpnum = j % levelspread[i - 1];
64db4cff
PM
4082 rnp->grpmask = 1UL << rnp->grpnum;
4083 rnp->parent = rsp->level[i - 1] +
199977bf 4084 j / levelspread[i - 1];
64db4cff
PM
4085 }
4086 rnp->level = i;
12f5f524 4087 INIT_LIST_HEAD(&rnp->blkd_tasks);
dae6e64d 4088 rcu_init_one_nocb(rnp);
f6a12f34
PM
4089 init_waitqueue_head(&rnp->exp_wq[0]);
4090 init_waitqueue_head(&rnp->exp_wq[1]);
3b5f668e
PM
4091 init_waitqueue_head(&rnp->exp_wq[2]);
4092 init_waitqueue_head(&rnp->exp_wq[3]);
f6a12f34 4093 spin_lock_init(&rnp->exp_lock);
64db4cff
PM
4094 }
4095 }
0c34029a 4096
abedf8e2
PG
4097 init_swait_queue_head(&rsp->gp_wq);
4098 init_swait_queue_head(&rsp->expedited_wq);
f885b7f2 4099 rnp = rsp->level[rcu_num_lvls - 1];
0c34029a 4100 for_each_possible_cpu(i) {
4a90a068 4101 while (i > rnp->grphi)
0c34029a 4102 rnp++;
394f99a9 4103 per_cpu_ptr(rsp->rda, i)->mynode = rnp;
0c34029a
LJ
4104 rcu_boot_init_percpu_data(i, rsp);
4105 }
6ce75a23 4106 list_add(&rsp->flavors, &rcu_struct_flavors);
64db4cff
PM
4107}
4108
f885b7f2
PM
4109/*
4110 * Compute the rcu_node tree geometry from kernel parameters. This cannot
4102adab 4111 * replace the definitions in tree.h because those are needed to size
f885b7f2
PM
4112 * the ->node array in the rcu_state structure.
4113 */
4114static void __init rcu_init_geometry(void)
4115{
026ad283 4116 ulong d;
f885b7f2 4117 int i;
05b84aec 4118 int rcu_capacity[RCU_NUM_LVLS];
f885b7f2 4119
026ad283
PM
4120 /*
4121 * Initialize any unspecified boot parameters.
4122 * The default values of jiffies_till_first_fqs and
4123 * jiffies_till_next_fqs are set to the RCU_JIFFIES_TILL_FORCE_QS
4124 * value, which is a function of HZ, then adding one for each
4125 * RCU_JIFFIES_FQS_DIV CPUs that might be on the system.
4126 */
4127 d = RCU_JIFFIES_TILL_FORCE_QS + nr_cpu_ids / RCU_JIFFIES_FQS_DIV;
4128 if (jiffies_till_first_fqs == ULONG_MAX)
4129 jiffies_till_first_fqs = d;
4130 if (jiffies_till_next_fqs == ULONG_MAX)
4131 jiffies_till_next_fqs = d;
4132
f885b7f2 4133 /* If the compile-time values are accurate, just leave. */
47d631af 4134 if (rcu_fanout_leaf == RCU_FANOUT_LEAF &&
b17c7035 4135 nr_cpu_ids == NR_CPUS)
f885b7f2 4136 return;
39479098
PM
4137 pr_info("RCU: Adjusting geometry for rcu_fanout_leaf=%d, nr_cpu_ids=%d\n",
4138 rcu_fanout_leaf, nr_cpu_ids);
f885b7f2 4139
f885b7f2 4140 /*
ee968ac6
PM
4141 * The boot-time rcu_fanout_leaf parameter must be at least two
4142 * and cannot exceed the number of bits in the rcu_node masks.
4143 * Complain and fall back to the compile-time values if this
4144 * limit is exceeded.
f885b7f2 4145 */
ee968ac6 4146 if (rcu_fanout_leaf < 2 ||
75cf15a4 4147 rcu_fanout_leaf > sizeof(unsigned long) * 8) {
13bd6494 4148 rcu_fanout_leaf = RCU_FANOUT_LEAF;
f885b7f2
PM
4149 WARN_ON(1);
4150 return;
4151 }
4152
f885b7f2
PM
4153 /*
4154 * Compute number of nodes that can be handled an rcu_node tree
9618138b 4155 * with the given number of levels.
f885b7f2 4156 */
9618138b 4157 rcu_capacity[0] = rcu_fanout_leaf;
05b84aec 4158 for (i = 1; i < RCU_NUM_LVLS; i++)
05c5df31 4159 rcu_capacity[i] = rcu_capacity[i - 1] * RCU_FANOUT;
f885b7f2
PM
4160
4161 /*
75cf15a4 4162 * The tree must be able to accommodate the configured number of CPUs.
ee968ac6 4163 * If this limit is exceeded, fall back to the compile-time values.
f885b7f2 4164 */
ee968ac6
PM
4165 if (nr_cpu_ids > rcu_capacity[RCU_NUM_LVLS - 1]) {
4166 rcu_fanout_leaf = RCU_FANOUT_LEAF;
4167 WARN_ON(1);
4168 return;
4169 }
f885b7f2 4170
679f9858 4171 /* Calculate the number of levels in the tree. */
9618138b 4172 for (i = 0; nr_cpu_ids > rcu_capacity[i]; i++) {
679f9858 4173 }
9618138b 4174 rcu_num_lvls = i + 1;
679f9858 4175
f885b7f2 4176 /* Calculate the number of rcu_nodes at each level of the tree. */
679f9858 4177 for (i = 0; i < rcu_num_lvls; i++) {
9618138b 4178 int cap = rcu_capacity[(rcu_num_lvls - 1) - i];
679f9858
AG
4179 num_rcu_lvl[i] = DIV_ROUND_UP(nr_cpu_ids, cap);
4180 }
f885b7f2
PM
4181
4182 /* Calculate the total number of rcu_node structures. */
4183 rcu_num_nodes = 0;
679f9858 4184 for (i = 0; i < rcu_num_lvls; i++)
f885b7f2 4185 rcu_num_nodes += num_rcu_lvl[i];
f885b7f2
PM
4186}
4187
a3dc2948
PM
4188/*
4189 * Dump out the structure of the rcu_node combining tree associated
4190 * with the rcu_state structure referenced by rsp.
4191 */
4192static void __init rcu_dump_rcu_node_tree(struct rcu_state *rsp)
4193{
4194 int level = 0;
4195 struct rcu_node *rnp;
4196
4197 pr_info("rcu_node tree layout dump\n");
4198 pr_info(" ");
4199 rcu_for_each_node_breadth_first(rsp, rnp) {
4200 if (rnp->level != level) {
4201 pr_cont("\n");
4202 pr_info(" ");
4203 level = rnp->level;
4204 }
4205 pr_cont("%d:%d ^%d ", rnp->grplo, rnp->grphi, rnp->grpnum);
4206 }
4207 pr_cont("\n");
4208}
4209
9f680ab4 4210void __init rcu_init(void)
64db4cff 4211{
017c4261 4212 int cpu;
9f680ab4 4213
47627678
PM
4214 rcu_early_boot_tests();
4215
f41d911f 4216 rcu_bootup_announce();
f885b7f2 4217 rcu_init_geometry();
a87f203e
PM
4218 rcu_init_one(&rcu_bh_state);
4219 rcu_init_one(&rcu_sched_state);
a3dc2948
PM
4220 if (dump_tree)
4221 rcu_dump_rcu_node_tree(&rcu_sched_state);
f41d911f 4222 __rcu_init_preempt();
b5b39360 4223 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
9f680ab4
PM
4224
4225 /*
4226 * We don't need protection against CPU-hotplug here because
4227 * this is called early in boot, before either interrupts
4228 * or the scheduler are operational.
4229 */
d1d74d14 4230 pm_notifier(rcu_pm_notify, 0);
7ec99de3 4231 for_each_online_cpu(cpu) {
4df83742 4232 rcutree_prepare_cpu(cpu);
7ec99de3
PM
4233 rcu_cpu_starting(cpu);
4234 }
64db4cff
PM
4235}
4236
3549c2bc 4237#include "tree_exp.h"
4102adab 4238#include "tree_plugin.h"