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