blob: 805d55ee0b2a848a6dc3e1fb84a9283824a3aee9 [file] [log] [blame]
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001/*
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
Paul E. McKenney87de1cf2013-12-03 10:02:52 -080015 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010017 *
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 -
Paul E. McKenneya71fca52009-09-18 10:28:19 -070028 * Documentation/RCU
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010029 */
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>
Ingo Molnarc1dc0b92009-08-02 11:28:21 +020038#include <linux/nmi.h>
Paul E. McKenney8826f3b2011-05-11 05:41:41 -070039#include <linux/atomic.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010040#include <linux/bitops.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040041#include <linux/export.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010042#include <linux/completion.h>
43#include <linux/moduleparam.h>
44#include <linux/percpu.h>
45#include <linux/notifier.h>
46#include <linux/cpu.h>
47#include <linux/mutex.h>
48#include <linux/time.h>
Paul E. McKenneybbad9372010-04-02 16:17:17 -070049#include <linux/kernel_stat.h>
Paul E. McKenneya26ac242011-01-12 14:10:23 -080050#include <linux/wait.h>
51#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070052#include <linux/prefetch.h>
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -080053#include <linux/delay.h>
54#include <linux/stop_machine.h>
Paul E. McKenney661a85d2012-07-07 05:57:03 -070055#include <linux/random.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040056#include <linux/trace_events.h>
Borislav Petkovd1d74d12013-04-22 00:12:42 +020057#include <linux/suspend.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010058
Paul E. McKenney4102ada2013-10-08 20:23:47 -070059#include "tree.h"
Paul E. McKenney29c00b42011-06-17 15:53:19 -070060#include "rcu.h"
Paul E. McKenney9f77da92009-08-22 13:56:45 -070061
Paul E. McKenney4102ada2013-10-08 20:23:47 -070062#ifdef MODULE_PARAM_PREFIX
63#undef MODULE_PARAM_PREFIX
64#endif
65#define MODULE_PARAM_PREFIX "rcutree."
66
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010067/* Data structures. */
68
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -040069/*
70 * In order to export the rcu_state name to the tracing tools, it
71 * needs to be added in the __tracepoint_string section.
72 * This requires defining a separate variable tp_<sname>_varname
73 * that points to the string being used, and this will allow
74 * the tracing userspace tools to be able to decipher the string
75 * address to the matching string.
76 */
Ard Biesheuvela8a29b32014-07-12 19:01:49 +020077#ifdef CONFIG_TRACING
78# define DEFINE_RCU_TPS(sname) \
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -040079static char sname##_varname[] = #sname; \
Ard Biesheuvela8a29b32014-07-12 19:01:49 +020080static const char *tp_##sname##_varname __used __tracepoint_string = sname##_varname;
81# define RCU_STATE_NAME(sname) sname##_varname
82#else
83# define DEFINE_RCU_TPS(sname)
84# define RCU_STATE_NAME(sname) __stringify(sname)
85#endif
86
87#define RCU_STATE_INITIALIZER(sname, sabbr, cr) \
88DEFINE_RCU_TPS(sname) \
Nicolas Ioossc92fb052015-05-05 21:57:06 +080089static DEFINE_PER_CPU_SHARED_ALIGNED(struct rcu_data, sname##_data); \
Steven Rostedt (Red Hat)a41bfeb2013-07-12 17:00:28 -040090struct rcu_state sname##_state = { \
Paul E. McKenney6c90cc72012-05-28 19:41:41 -070091 .level = { &sname##_state.node[0] }, \
Paul E. McKenney27232492015-01-20 22:44:13 -080092 .rda = &sname##_data, \
Paul E. McKenney037b64e2012-05-28 23:26:01 -070093 .call = cr, \
Petr Mladek77f81fe2015-09-09 12:09:49 -070094 .gp_state = RCU_GP_IDLE, \
Paul E. McKenney42c35332012-09-28 10:49:58 -070095 .gpnum = 0UL - 300UL, \
96 .completed = 0UL - 300UL, \
Paul E. McKenney7b2e6012012-10-08 10:54:03 -070097 .orphan_lock = __RAW_SPIN_LOCK_UNLOCKED(&sname##_state.orphan_lock), \
Paul E. McKenney6c90cc72012-05-28 19:41:41 -070098 .orphan_nxttail = &sname##_state.orphan_nxtlist, \
99 .orphan_donetail = &sname##_state.orphan_donelist, \
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -0700100 .barrier_mutex = __MUTEX_INITIALIZER(sname##_state.barrier_mutex), \
Ard Biesheuvela8a29b32014-07-12 19:01:49 +0200101 .name = RCU_STATE_NAME(sname), \
Paul E. McKenneya4889852012-12-03 08:16:28 -0800102 .abbr = sabbr, \
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -0800103 .exp_mutex = __MUTEX_INITIALIZER(sname##_state.exp_mutex), \
Paul E. McKenney3b5f6682016-03-16 16:47:55 -0700104 .exp_wake_mutex = __MUTEX_INITIALIZER(sname##_state.exp_wake_mutex), \
Paul E. McKenney27232492015-01-20 22:44:13 -0800105}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100106
Steven Rostedt (Red Hat)a41bfeb2013-07-12 17:00:28 -0400107RCU_STATE_INITIALIZER(rcu_sched, 's', call_rcu_sched);
108RCU_STATE_INITIALIZER(rcu_bh, 'b', call_rcu_bh);
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100109
Paul E. McKenneyb28a7c02015-03-04 07:39:27 -0800110static struct rcu_state *const rcu_state_p;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -0700111LIST_HEAD(rcu_struct_flavors);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800112
Paul E. McKenneya3dc2942015-04-20 11:40:50 -0700113/* Dump rcu_node combining tree at boot to verify correct setup. */
114static bool dump_tree;
115module_param(dump_tree, bool, 0444);
Paul E. McKenney7fa27002015-04-20 10:27:15 -0700116/* Control rcu_node-tree auto-balancing at boot time. */
117static bool rcu_fanout_exact;
118module_param(rcu_fanout_exact, bool, 0444);
Paul E. McKenney47d631a2015-04-21 09:12:13 -0700119/* Increase (but not decrease) the RCU_FANOUT_LEAF at boot time. */
120static int rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenney7e5c2df2012-07-01 15:42:33 -0700121module_param(rcu_fanout_leaf, int, 0444);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700122int rcu_num_lvls __read_mostly = RCU_NUM_LVLS;
Alexander Gordeevcb007102015-06-03 08:18:30 +0200123/* Number of rcu_nodes at specified level. */
124static int num_rcu_lvl[] = NUM_RCU_LVL_INIT;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700125int rcu_num_nodes __read_mostly = NUM_RCU_NODES; /* Total # rcu_nodes in use. */
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -0300126/* panic() on RCU Stall sysctl. */
127int sysctl_panic_on_rcu_stall __read_mostly;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700128
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700129/*
Paul E. McKenney52d7e482017-01-10 02:28:26 -0800130 * The rcu_scheduler_active variable is initialized to the value
131 * RCU_SCHEDULER_INACTIVE and transitions RCU_SCHEDULER_INIT just before the
132 * first task is spawned. So when this variable is RCU_SCHEDULER_INACTIVE,
133 * RCU can assume that there is but one task, allowing RCU to (for example)
Paul E. McKenney0d950922016-04-08 05:00:03 -0700134 * optimize synchronize_rcu() to a simple barrier(). When this variable
Paul E. McKenney52d7e482017-01-10 02:28:26 -0800135 * is RCU_SCHEDULER_INIT, RCU must actually do all the hard work required
136 * to detect real grace periods. This variable is also used to suppress
137 * boot-time false positives from lockdep-RCU error checking. Finally, it
138 * transitions from RCU_SCHEDULER_INIT to RCU_SCHEDULER_RUNNING after RCU
139 * is fully initialized, including all of its kthreads having been spawned.
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700140 */
Paul E. McKenneybbad9372010-04-02 16:17:17 -0700141int rcu_scheduler_active __read_mostly;
142EXPORT_SYMBOL_GPL(rcu_scheduler_active);
143
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700144/*
145 * The rcu_scheduler_fully_active variable transitions from zero to one
146 * during the early_initcall() processing, which is after the scheduler
147 * is capable of creating new tasks. So RCU processing (for example,
148 * creating tasks for RCU priority boosting) must be delayed until after
149 * rcu_scheduler_fully_active transitions from zero to one. We also
150 * currently delay invocation of any RCU callbacks until after this point.
151 *
152 * It might later prove better for people registering RCU callbacks during
153 * early boot to take responsibility for these callbacks, but one step at
154 * a time.
155 */
156static int rcu_scheduler_fully_active __read_mostly;
157
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800158static void rcu_init_new_rnp(struct rcu_node *rnp_leaf);
159static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +0000160static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu);
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700161static void invoke_rcu_core(void);
162static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp);
Paul E. McKenney6587a232015-08-06 16:50:39 -0700163static void rcu_report_exp_rdp(struct rcu_state *rsp,
164 struct rcu_data *rdp, bool wake);
Paul E. McKenney3549c2b2016-04-15 16:35:29 -0700165static void sync_sched_exp_online_cleanup(int cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800166
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800167/* rcuc/rcub kthread realtime priority */
Paul E. McKenney26730f52015-04-21 09:22:14 -0700168#ifdef CONFIG_RCU_KTHREAD_PRIO
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800169static int kthread_prio = CONFIG_RCU_KTHREAD_PRIO;
Paul E. McKenney26730f52015-04-21 09:22:14 -0700170#else /* #ifdef CONFIG_RCU_KTHREAD_PRIO */
171static int kthread_prio = IS_ENABLED(CONFIG_RCU_BOOST) ? 1 : 0;
172#endif /* #else #ifdef CONFIG_RCU_KTHREAD_PRIO */
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800173module_param(kthread_prio, int, 0644);
174
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700175/* Delay in jiffies for grace-period initialization delays, debug only. */
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700176
177#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT
178static int gp_preinit_delay = CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT_DELAY;
179module_param(gp_preinit_delay, int, 0644);
180#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
181static const int gp_preinit_delay;
182#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
183
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700184#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT
185static int gp_init_delay = CONFIG_RCU_TORTURE_TEST_SLOW_INIT_DELAY;
Paul E. McKenney37745d22015-01-22 18:24:08 -0800186module_param(gp_init_delay, int, 0644);
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700187#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
188static const int gp_init_delay;
189#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700190
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700191#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP
192static int gp_cleanup_delay = CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP_DELAY;
193module_param(gp_cleanup_delay, int, 0644);
194#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
195static const int gp_cleanup_delay;
196#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
197
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700198/*
199 * Number of grace periods between delays, normalized by the duration of
200 * the delay. The longer the the delay, the more the grace periods between
201 * each delay. The reason for this normalization is that it means that,
202 * for non-zero delays, the overall slowdown of grace periods is constant
203 * regardless of the duration of the delay. This arrangement balances
204 * the need for long delays to increase some race probabilities with the
205 * need for fast grace periods to increase other race probabilities.
206 */
207#define PER_RCU_NODE_PERIOD 3 /* Number of grace periods between delays. */
Paul E. McKenney37745d22015-01-22 18:24:08 -0800208
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800209/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700210 * Track the rcutorture test sequence number and the update version
211 * number within a given test. The rcutorture_testseq is incremented
212 * on every rcutorture module load and unload, so has an odd value
213 * when a test is running. The rcutorture_vernum is set to zero
214 * when rcutorture starts and is incremented on each rcutorture update.
215 * These variables enable correlating rcutorture output with the
216 * RCU tracing information.
217 */
218unsigned long rcutorture_testseq;
219unsigned long rcutorture_vernum;
220
221/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800222 * Compute the mask of online CPUs for the specified rcu_node structure.
223 * This will not be stable unless the rcu_node structure's ->lock is
224 * held, but the bit corresponding to the current CPU will be stable
225 * in most contexts.
226 */
227unsigned long rcu_rnp_online_cpus(struct rcu_node *rnp)
228{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800229 return READ_ONCE(rnp->qsmaskinitnext);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800230}
231
232/*
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800233 * Return true if an RCU grace period is in progress. The READ_ONCE()s
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700234 * permit this function to be invoked without holding the root rcu_node
235 * structure's ->lock, but of course results can be subject to change.
236 */
237static int rcu_gp_in_progress(struct rcu_state *rsp)
238{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800239 return READ_ONCE(rsp->completed) != READ_ONCE(rsp->gpnum);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700240}
241
242/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700243 * Note a quiescent state. Because we do not need to know
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100244 * how many quiescent states passed, just if there was at least
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700245 * one since the start of the grace period, this just sets a flag.
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700246 * The caller must have disabled preemption.
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100247 */
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700248void rcu_sched_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100249{
Paul E. McKenneyfecbf6f2015-09-28 18:19:24 -0700250 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.s))
251 return;
252 trace_rcu_grace_period(TPS("rcu_sched"),
253 __this_cpu_read(rcu_sched_data.gpnum),
254 TPS("cpuqs"));
255 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.norm, false);
256 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))
257 return;
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700258 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.exp, false);
259 rcu_report_exp_rdp(&rcu_sched_state,
260 this_cpu_ptr(&rcu_sched_data), true);
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100261}
262
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700263void rcu_bh_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100264{
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700265 if (__this_cpu_read(rcu_bh_data.cpu_no_qs.s)) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700266 trace_rcu_grace_period(TPS("rcu_bh"),
267 __this_cpu_read(rcu_bh_data.gpnum),
268 TPS("cpuqs"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700269 __this_cpu_write(rcu_bh_data.cpu_no_qs.b.norm, false);
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700270 }
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100271}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100272
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700273static DEFINE_PER_CPU(int, rcu_sched_qs_mask);
274
275static DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks) = {
276 .dynticks_nesting = DYNTICK_TASK_EXIT_IDLE,
277 .dynticks = ATOMIC_INIT(1),
278#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
279 .dynticks_idle_nesting = DYNTICK_TASK_NEST_VALUE,
280 .dynticks_idle = ATOMIC_INIT(1),
281#endif /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
282};
283
Paul E. McKenney6563de92016-11-02 13:33:57 -0700284/*
Paul E. McKenney8b2f63a2016-11-02 14:12:05 -0700285 * Snapshot the ->dynticks counter with full ordering so as to allow
286 * stable comparison of this counter with past and future snapshots.
287 */
288static int rcu_dynticks_snap(struct rcu_dynticks *rdtp)
289{
290 int snap = atomic_add_return(0, &rdtp->dynticks);
291
292 return snap;
293}
294
295/*
Paul E. McKenney6563de92016-11-02 13:33:57 -0700296 * Do a double-increment of the ->dynticks counter to emulate a
297 * momentary idle-CPU quiescent state.
298 */
299static void rcu_dynticks_momentary_idle(void)
300{
301 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
302 int special = atomic_add_return(2, &rdtp->dynticks);
303
304 /* It is illegal to call this from idle state. */
305 WARN_ON_ONCE(!(special & 0x1));
306}
307
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800308DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, rcu_qs_ctr);
309EXPORT_PER_CPU_SYMBOL_GPL(rcu_qs_ctr);
310
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700311/*
312 * Let the RCU core know that this CPU has gone through the scheduler,
313 * which is a quiescent state. This is called when the need for a
314 * quiescent state is urgent, so we burn an atomic operation and full
315 * memory barriers to let the RCU core know about it, regardless of what
316 * this CPU might (or might not) do in the near future.
317 *
318 * We inform the RCU core by emulating a zero-duration dyntick-idle
319 * period, which we in turn do by incrementing the ->dynticks counter
320 * by two.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700321 *
322 * The caller must have disabled interrupts.
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700323 */
324static void rcu_momentary_dyntick_idle(void)
325{
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700326 struct rcu_data *rdp;
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700327 int resched_mask;
328 struct rcu_state *rsp;
329
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700330 /*
331 * Yes, we can lose flag-setting operations. This is OK, because
332 * the flag will be set again after some delay.
333 */
334 resched_mask = raw_cpu_read(rcu_sched_qs_mask);
335 raw_cpu_write(rcu_sched_qs_mask, 0);
336
337 /* Find the flavor that needs a quiescent state. */
338 for_each_rcu_flavor(rsp) {
339 rdp = raw_cpu_ptr(rsp->rda);
340 if (!(resched_mask & rsp->flavor_mask))
341 continue;
342 smp_mb(); /* rcu_sched_qs_mask before cond_resched_completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800343 if (READ_ONCE(rdp->mynode->completed) !=
344 READ_ONCE(rdp->cond_resched_completed))
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700345 continue;
346
347 /*
348 * Pretend to be momentarily idle for the quiescent state.
349 * This allows the grace-period kthread to record the
350 * quiescent state, with no need for this CPU to do anything
351 * further.
352 */
Paul E. McKenney6563de92016-11-02 13:33:57 -0700353 rcu_dynticks_momentary_idle();
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700354 break;
355 }
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700356}
357
Paul E. McKenney25502a62010-04-01 17:37:01 -0700358/*
359 * Note a context switch. This is a quiescent state for RCU-sched,
360 * and requires special handling for preemptible RCU.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700361 * The caller must have disabled interrupts.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700362 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700363void rcu_note_context_switch(void)
Paul E. McKenney25502a62010-04-01 17:37:01 -0700364{
Boqun Fengbb73c522015-07-30 16:55:38 -0700365 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400366 trace_rcu_utilization(TPS("Start context switch"));
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700367 rcu_sched_qs();
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700368 rcu_preempt_note_context_switch();
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700369 if (unlikely(raw_cpu_read(rcu_sched_qs_mask)))
370 rcu_momentary_dyntick_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400371 trace_rcu_utilization(TPS("End context switch"));
Boqun Fengbb73c522015-07-30 16:55:38 -0700372 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney25502a62010-04-01 17:37:01 -0700373}
Gleb Natapov29ce8312011-05-04 16:31:03 +0300374EXPORT_SYMBOL_GPL(rcu_note_context_switch);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700375
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800376/*
Paul E. McKenney1925d192015-01-18 17:45:05 -0800377 * Register a quiescent state for all RCU flavors. If there is an
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800378 * emergency, invoke rcu_momentary_dyntick_idle() to do a heavy-weight
379 * dyntick-idle quiescent state visible to other CPUs (but only for those
Paul E. McKenney1925d192015-01-18 17:45:05 -0800380 * RCU flavors in desperate need of a quiescent state, which will normally
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800381 * be none of them). Either way, do a lightweight quiescent state for
382 * all RCU flavors.
Boqun Fengbb73c522015-07-30 16:55:38 -0700383 *
384 * The barrier() calls are redundant in the common case when this is
385 * called externally, but just in case this is called from within this
386 * file.
387 *
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800388 */
389void rcu_all_qs(void)
390{
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700391 unsigned long flags;
392
Boqun Fengbb73c522015-07-30 16:55:38 -0700393 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700394 if (unlikely(raw_cpu_read(rcu_sched_qs_mask))) {
395 local_irq_save(flags);
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800396 rcu_momentary_dyntick_idle();
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700397 local_irq_restore(flags);
398 }
Paul E. McKenneya1e12242016-01-13 13:57:54 -0800399 if (unlikely(raw_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))) {
400 /*
401 * Yes, we just checked a per-CPU variable with preemption
402 * enabled, so we might be migrated to some other CPU at
403 * this point. That is OK because in that case, the
404 * migration will supply the needed quiescent state.
405 * We might end up needlessly disabling preemption and
406 * invoking rcu_sched_qs() on the destination CPU, but
407 * the probability and cost are both quite low, so this
408 * should not be a problem in practice.
409 */
410 preempt_disable();
411 rcu_sched_qs();
412 preempt_enable();
413 }
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800414 this_cpu_inc(rcu_qs_ctr);
Boqun Fengbb73c522015-07-30 16:55:38 -0700415 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800416}
417EXPORT_SYMBOL_GPL(rcu_all_qs);
418
Eric Dumazet878d7432012-10-18 04:55:36 -0700419static long blimit = 10; /* Maximum callbacks per rcu_do_batch. */
420static long qhimark = 10000; /* If this many pending, ignore blimit. */
421static long qlowmark = 100; /* Once only this many pending, use blimit. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100422
Eric Dumazet878d7432012-10-18 04:55:36 -0700423module_param(blimit, long, 0444);
424module_param(qhimark, long, 0444);
425module_param(qlowmark, long, 0444);
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700426
Paul E. McKenney026ad282013-04-03 22:14:11 -0700427static ulong jiffies_till_first_fqs = ULONG_MAX;
428static ulong jiffies_till_next_fqs = ULONG_MAX;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800429static bool rcu_kick_kthreads;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700430
431module_param(jiffies_till_first_fqs, ulong, 0644);
432module_param(jiffies_till_next_fqs, ulong, 0644);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800433module_param(rcu_kick_kthreads, bool, 0644);
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700434
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700435/*
436 * How long the grace period must be before we start recruiting
437 * quiescent-state help from rcu_note_context_switch().
438 */
439static ulong jiffies_till_sched_qs = HZ / 20;
440module_param(jiffies_till_sched_qs, ulong, 0644);
441
Paul E. McKenney48a76392014-03-11 13:02:16 -0700442static bool rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenney910ee452012-12-31 02:24:21 -0800443 struct rcu_data *rdp);
Paul E. McKenney217af2a2013-06-21 15:39:06 -0700444static void force_qs_rnp(struct rcu_state *rsp,
445 int (*f)(struct rcu_data *rsp, bool *isidle,
446 unsigned long *maxj),
447 bool *isidle, unsigned long *maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700448static void force_quiescent_state(struct rcu_state *rsp);
Paul E. McKenneye3950ec2014-10-21 08:03:57 -0700449static int rcu_pending(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100450
451/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800452 * Return the number of RCU batches started thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100453 */
Paul E. McKenney917963d2014-11-21 17:10:16 -0800454unsigned long rcu_batches_started(void)
455{
456 return rcu_state_p->gpnum;
457}
458EXPORT_SYMBOL_GPL(rcu_batches_started);
459
460/*
461 * Return the number of RCU-sched batches started thus far for debug & stats.
462 */
463unsigned long rcu_batches_started_sched(void)
464{
465 return rcu_sched_state.gpnum;
466}
467EXPORT_SYMBOL_GPL(rcu_batches_started_sched);
468
469/*
470 * Return the number of RCU BH batches started thus far for debug & stats.
471 */
472unsigned long rcu_batches_started_bh(void)
473{
474 return rcu_bh_state.gpnum;
475}
476EXPORT_SYMBOL_GPL(rcu_batches_started_bh);
477
478/*
479 * Return the number of RCU batches completed thus far for debug & stats.
480 */
481unsigned long rcu_batches_completed(void)
482{
483 return rcu_state_p->completed;
484}
485EXPORT_SYMBOL_GPL(rcu_batches_completed);
486
487/*
488 * Return the number of RCU-sched batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100489 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800490unsigned long rcu_batches_completed_sched(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100491{
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700492 return rcu_sched_state.completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100493}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700494EXPORT_SYMBOL_GPL(rcu_batches_completed_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100495
496/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800497 * Return the number of RCU BH batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100498 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800499unsigned long rcu_batches_completed_bh(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100500{
501 return rcu_bh_state.completed;
502}
503EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
504
505/*
Paul E. McKenney291783b2016-01-12 13:43:30 -0800506 * Return the number of RCU expedited batches completed thus far for
507 * debug & stats. Odd numbers mean that a batch is in progress, even
508 * numbers mean idle. The value returned will thus be roughly double
509 * the cumulative batches since boot.
510 */
511unsigned long rcu_exp_batches_completed(void)
512{
513 return rcu_state_p->expedited_sequence;
514}
515EXPORT_SYMBOL_GPL(rcu_exp_batches_completed);
516
517/*
518 * Return the number of RCU-sched expedited batches completed thus far
519 * for debug & stats. Similar to rcu_exp_batches_completed().
520 */
521unsigned long rcu_exp_batches_completed_sched(void)
522{
523 return rcu_sched_state.expedited_sequence;
524}
525EXPORT_SYMBOL_GPL(rcu_exp_batches_completed_sched);
526
527/*
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200528 * Force a quiescent state.
529 */
530void rcu_force_quiescent_state(void)
531{
Uma Sharmae5341652014-03-23 22:32:09 -0700532 force_quiescent_state(rcu_state_p);
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200533}
534EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
535
536/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800537 * Force a quiescent state for RCU BH.
538 */
539void rcu_bh_force_quiescent_state(void)
540{
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700541 force_quiescent_state(&rcu_bh_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800542}
543EXPORT_SYMBOL_GPL(rcu_bh_force_quiescent_state);
544
545/*
Paul E. McKenneye7580f32015-02-24 14:23:39 -0800546 * Force a quiescent state for RCU-sched.
547 */
548void rcu_sched_force_quiescent_state(void)
549{
550 force_quiescent_state(&rcu_sched_state);
551}
552EXPORT_SYMBOL_GPL(rcu_sched_force_quiescent_state);
553
554/*
Paul E. McKenneyafea2272014-03-12 07:10:41 -0700555 * Show the state of the grace-period kthreads.
556 */
557void show_rcu_gp_kthreads(void)
558{
559 struct rcu_state *rsp;
560
561 for_each_rcu_flavor(rsp) {
562 pr_info("%s: wait state: %d ->state: %#lx\n",
563 rsp->name, rsp->gp_state, rsp->gp_kthread->state);
564 /* sched_show_task(rsp->gp_kthread); */
565 }
566}
567EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
568
569/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700570 * Record the number of times rcutorture tests have been initiated and
571 * terminated. This information allows the debugfs tracing stats to be
572 * correlated to the rcutorture messages, even when the rcutorture module
573 * is being repeatedly loaded and unloaded. In other words, we cannot
574 * store this state in rcutorture itself.
575 */
576void rcutorture_record_test_transition(void)
577{
578 rcutorture_testseq++;
579 rcutorture_vernum = 0;
580}
581EXPORT_SYMBOL_GPL(rcutorture_record_test_transition);
582
583/*
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800584 * Send along grace-period-related data for rcutorture diagnostics.
585 */
586void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
587 unsigned long *gpnum, unsigned long *completed)
588{
589 struct rcu_state *rsp = NULL;
590
591 switch (test_type) {
592 case RCU_FLAVOR:
Uma Sharmae5341652014-03-23 22:32:09 -0700593 rsp = rcu_state_p;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800594 break;
595 case RCU_BH_FLAVOR:
596 rsp = &rcu_bh_state;
597 break;
598 case RCU_SCHED_FLAVOR:
599 rsp = &rcu_sched_state;
600 break;
601 default:
602 break;
603 }
604 if (rsp != NULL) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800605 *flags = READ_ONCE(rsp->gp_flags);
606 *gpnum = READ_ONCE(rsp->gpnum);
607 *completed = READ_ONCE(rsp->completed);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800608 return;
609 }
610 *flags = 0;
611 *gpnum = 0;
612 *completed = 0;
613}
614EXPORT_SYMBOL_GPL(rcutorture_get_gp_data);
615
616/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700617 * Record the number of writer passes through the current rcutorture test.
618 * This is also used to correlate debugfs tracing stats with the rcutorture
619 * messages.
620 */
621void rcutorture_record_progress(unsigned long vernum)
622{
623 rcutorture_vernum++;
624}
625EXPORT_SYMBOL_GPL(rcutorture_record_progress);
626
627/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100628 * Does the CPU have callbacks ready to be invoked?
629 */
630static int
631cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
632{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700633 return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL] &&
634 rdp->nxttail[RCU_DONE_TAIL] != NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100635}
636
637/*
Paul E. McKenney365187f2014-03-10 10:55:52 -0700638 * Return the root node of the specified rcu_state structure.
639 */
640static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
641{
642 return &rsp->node[0];
643}
644
645/*
646 * Is there any need for future grace periods?
647 * Interrupts must be disabled. If the caller does not hold the root
648 * rnp_node structure's ->lock, the results are advisory only.
649 */
650static int rcu_future_needs_gp(struct rcu_state *rsp)
651{
652 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800653 int idx = (READ_ONCE(rnp->completed) + 1) & 0x1;
Paul E. McKenney365187f2014-03-10 10:55:52 -0700654 int *fp = &rnp->need_future_gp[idx];
655
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800656 return READ_ONCE(*fp);
Paul E. McKenney365187f2014-03-10 10:55:52 -0700657}
658
659/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800660 * Does the current CPU require a not-yet-started grace period?
661 * The caller must have disabled interrupts to prevent races with
662 * normal callback registry.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100663 */
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700664static bool
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100665cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
666{
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800667 int i;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700668
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800669 if (rcu_gp_in_progress(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700670 return false; /* No, a grace period is already in progress. */
Paul E. McKenney365187f2014-03-10 10:55:52 -0700671 if (rcu_future_needs_gp(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700672 return true; /* Yes, a no-CBs CPU needs one. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800673 if (!rdp->nxttail[RCU_NEXT_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700674 return false; /* No, this is a no-CBs (or offline) CPU. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800675 if (*rdp->nxttail[RCU_NEXT_READY_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700676 return true; /* Yes, CPU has newly registered callbacks. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800677 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++)
678 if (rdp->nxttail[i - 1] != rdp->nxttail[i] &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800679 ULONG_CMP_LT(READ_ONCE(rsp->completed),
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800680 rdp->nxtcompleted[i]))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700681 return true; /* Yes, CBs for future grace period. */
682 return false; /* No grace period needed. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100683}
684
685/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700686 * rcu_eqs_enter_common - current CPU is moving towards extended quiescent state
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100687 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700688 * If the new value of the ->dynticks_nesting counter now is zero,
689 * we really have entered idle, and must do the appropriate accounting.
690 * The caller must have disabled interrupts.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100691 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700692static void rcu_eqs_enter_common(long long oldval, bool user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100693{
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700694 struct rcu_state *rsp;
695 struct rcu_data *rdp;
Christoph Lameter28ced792014-09-02 14:13:44 -0700696 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700697
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400698 trace_rcu_dyntick(TPS("Start"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700699 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
700 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700701 struct task_struct *idle __maybe_unused =
702 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700703
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400704 trace_rcu_dyntick(TPS("Error on entry: not idle task"), oldval, 0);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700705 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700706 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
707 current->pid, current->comm,
708 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700709 }
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700710 for_each_rcu_flavor(rsp) {
711 rdp = this_cpu_ptr(rsp->rda);
712 do_nocb_deferred_wakeup(rdp);
713 }
Paul E. McKenney198bbf82014-10-22 15:03:43 -0700714 rcu_prepare_for_idle();
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700715 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100716 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700717 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100718 smp_mb__after_atomic(); /* Force ordering with next sojourn. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700719 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
720 atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700721 rcu_dynticks_task_enter();
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800722
723 /*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700724 * It is illegal to enter an extended quiescent state while
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800725 * in an RCU read-side critical section.
726 */
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700727 RCU_LOCKDEP_WARN(lock_is_held(&rcu_lock_map),
728 "Illegal idle entry in RCU read-side critical section.");
729 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map),
730 "Illegal idle entry in RCU-bh read-side critical section.");
731 RCU_LOCKDEP_WARN(lock_is_held(&rcu_sched_lock_map),
732 "Illegal idle entry in RCU-sched read-side critical section.");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100733}
734
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700735/*
736 * Enter an RCU extended quiescent state, which can be either the
737 * idle loop or adaptive-tickless usermode execution.
738 */
739static void rcu_eqs_enter(bool user)
740{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700741 long long oldval;
742 struct rcu_dynticks *rdtp;
743
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700744 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700745 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700746 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
747 (oldval & DYNTICK_TASK_NEST_MASK) == 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700748 if ((oldval & DYNTICK_TASK_NEST_MASK) == DYNTICK_TASK_NEST_VALUE) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700749 rdtp->dynticks_nesting = 0;
Christoph Lameter28ced792014-09-02 14:13:44 -0700750 rcu_eqs_enter_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700751 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700752 rdtp->dynticks_nesting -= DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700753 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700754}
755
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700756/**
757 * rcu_idle_enter - inform RCU that current CPU is entering idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100758 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700759 * Enter idle mode, in other words, -leave- the mode in which RCU
760 * read-side critical sections can occur. (Though RCU read-side
761 * critical sections can occur in irq handlers in idle, a possibility
762 * handled by irq_enter() and irq_exit().)
763 *
764 * We crowbar the ->dynticks_nesting field to zero to allow for
765 * the possibility of usermode upcalls having messed up our count
766 * of interrupt nesting level during the prior busy period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100767 */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700768void rcu_idle_enter(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100769{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200770 unsigned long flags;
771
772 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700773 rcu_eqs_enter(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700774 rcu_sysidle_enter(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200775 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700776}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800777EXPORT_SYMBOL_GPL(rcu_idle_enter);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700778
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700779#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700780/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700781 * rcu_user_enter - inform RCU that we are resuming userspace.
782 *
783 * Enter RCU idle mode right before resuming userspace. No use of RCU
784 * is permitted between this call and rcu_user_exit(). This way the
785 * CPU doesn't need to maintain the tick for RCU maintenance purposes
786 * when the CPU runs in userspace.
787 */
788void rcu_user_enter(void)
789{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100790 rcu_eqs_enter(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700791}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700792#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700793
794/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700795 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
796 *
797 * Exit from an interrupt handler, which might possibly result in entering
798 * idle mode, in other words, leaving the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700799 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700800 *
801 * This code assumes that the idle loop never does anything that might
802 * result in unbalanced calls to irq_enter() and irq_exit(). If your
803 * architecture violates this assumption, RCU will give you what you
804 * deserve, good and hard. But very infrequently and irreproducibly.
805 *
806 * Use things like work queues to work around this limitation.
807 *
808 * You have been warned.
809 */
810void rcu_irq_exit(void)
811{
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700812 long long oldval;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700813 struct rcu_dynticks *rdtp;
814
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700815 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700816 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700817 oldval = rdtp->dynticks_nesting;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700818 rdtp->dynticks_nesting--;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700819 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
820 rdtp->dynticks_nesting < 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800821 if (rdtp->dynticks_nesting)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400822 trace_rcu_dyntick(TPS("--="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800823 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700824 rcu_eqs_enter_common(oldval, true);
825 rcu_sysidle_enter(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700826}
827
828/*
829 * Wrapper for rcu_irq_exit() where interrupts are enabled.
830 */
831void rcu_irq_exit_irqson(void)
832{
833 unsigned long flags;
834
835 local_irq_save(flags);
836 rcu_irq_exit();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700837 local_irq_restore(flags);
838}
839
840/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700841 * rcu_eqs_exit_common - current CPU moving away from extended quiescent state
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700842 *
843 * If the new value of the ->dynticks_nesting counter was previously zero,
844 * we really have exited idle, and must do the appropriate accounting.
845 * The caller must have disabled interrupts.
846 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700847static void rcu_eqs_exit_common(long long oldval, int user)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700848{
Christoph Lameter28ced792014-09-02 14:13:44 -0700849 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
850
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700851 rcu_dynticks_task_exit();
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100852 smp_mb__before_atomic(); /* Force ordering w/previous sojourn. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700853 atomic_inc(&rdtp->dynticks);
854 /* CPUs seeing atomic_inc() must see later RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100855 smp_mb__after_atomic(); /* See above. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700856 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
857 !(atomic_read(&rdtp->dynticks) & 0x1));
Paul E. McKenney8fa78452014-10-22 15:07:37 -0700858 rcu_cleanup_after_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400859 trace_rcu_dyntick(TPS("End"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700860 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
861 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700862 struct task_struct *idle __maybe_unused =
863 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700864
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400865 trace_rcu_dyntick(TPS("Error on exit: not idle task"),
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700866 oldval, rdtp->dynticks_nesting);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700867 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700868 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
869 current->pid, current->comm,
870 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700871 }
872}
873
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700874/*
875 * Exit an RCU extended quiescent state, which can be either the
876 * idle loop or adaptive-tickless usermode execution.
877 */
878static void rcu_eqs_exit(bool user)
879{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700880 struct rcu_dynticks *rdtp;
881 long long oldval;
882
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700883 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700884 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700885 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && oldval < 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700886 if (oldval & DYNTICK_TASK_NEST_MASK) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700887 rdtp->dynticks_nesting += DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700888 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700889 rdtp->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Christoph Lameter28ced792014-09-02 14:13:44 -0700890 rcu_eqs_exit_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700891 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700892}
893
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700894/**
895 * rcu_idle_exit - inform RCU that current CPU is leaving idle
896 *
897 * Exit idle mode, in other words, -enter- the mode in which RCU
898 * read-side critical sections can occur.
899 *
Paul E. McKenney29e37d82011-11-17 16:55:56 -0800900 * We crowbar the ->dynticks_nesting field to DYNTICK_TASK_NEST to
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700901 * allow for the possibility of usermode upcalls messing up our count
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700902 * of interrupt nesting level during the busy period that is just
903 * now starting.
904 */
905void rcu_idle_exit(void)
906{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200907 unsigned long flags;
908
909 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700910 rcu_eqs_exit(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700911 rcu_sysidle_exit(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200912 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700913}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800914EXPORT_SYMBOL_GPL(rcu_idle_exit);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700915
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700916#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700917/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700918 * rcu_user_exit - inform RCU that we are exiting userspace.
919 *
920 * Exit RCU idle mode while entering the kernel because it can
921 * run a RCU read side critical section anytime.
922 */
923void rcu_user_exit(void)
924{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100925 rcu_eqs_exit(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700926}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700927#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700928
929/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700930 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle
931 *
932 * Enter an interrupt handler, which might possibly result in exiting
933 * idle mode, in other words, entering the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700934 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700935 *
936 * Note that the Linux kernel is fully capable of entering an interrupt
937 * handler that it never exits, for example when doing upcalls to
938 * user mode! This code assumes that the idle loop never does upcalls to
939 * user mode. If your architecture does do upcalls from the idle loop (or
940 * does anything else that results in unbalanced calls to the irq_enter()
941 * and irq_exit() functions), RCU will give you what you deserve, good
942 * and hard. But very infrequently and irreproducibly.
943 *
944 * Use things like work queues to work around this limitation.
945 *
946 * You have been warned.
947 */
948void rcu_irq_enter(void)
949{
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700950 struct rcu_dynticks *rdtp;
951 long long oldval;
952
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700953 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700954 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700955 oldval = rdtp->dynticks_nesting;
956 rdtp->dynticks_nesting++;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700957 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
958 rdtp->dynticks_nesting == 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800959 if (oldval)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400960 trace_rcu_dyntick(TPS("++="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800961 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700962 rcu_eqs_exit_common(oldval, true);
963 rcu_sysidle_exit(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700964}
965
966/*
967 * Wrapper for rcu_irq_enter() where interrupts are enabled.
968 */
969void rcu_irq_enter_irqson(void)
970{
971 unsigned long flags;
972
973 local_irq_save(flags);
974 rcu_irq_enter();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100975 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100976}
977
978/**
979 * rcu_nmi_enter - inform RCU of entry to NMI context
980 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800981 * If the CPU was idle from RCU's viewpoint, update rdtp->dynticks and
982 * rdtp->dynticks_nmi_nesting to let the RCU grace-period handling know
983 * that the CPU is active. This implementation permits nested NMIs, as
984 * long as the nesting level does not overflow an int. (You will probably
985 * run out of stack space first.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100986 */
987void rcu_nmi_enter(void)
988{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700989 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney734d1682014-11-21 14:45:12 -0800990 int incby = 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100991
Paul E. McKenney734d1682014-11-21 14:45:12 -0800992 /* Complain about underflow. */
993 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting < 0);
994
995 /*
996 * If idle from RCU viewpoint, atomically increment ->dynticks
997 * to mark non-idle and increment ->dynticks_nmi_nesting by one.
998 * Otherwise, increment ->dynticks_nmi_nesting by two. This means
999 * if ->dynticks_nmi_nesting is equal to one, we are guaranteed
1000 * to be in the outermost NMI handler that interrupted an RCU-idle
1001 * period (observation due to Andy Lutomirski).
1002 */
1003 if (!(atomic_read(&rdtp->dynticks) & 0x1)) {
1004 smp_mb__before_atomic(); /* Force delay from prior write. */
1005 atomic_inc(&rdtp->dynticks);
1006 /* atomic_inc() before later RCU read-side crit sects */
1007 smp_mb__after_atomic(); /* See above. */
1008 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1009 incby = 1;
1010 }
1011 rdtp->dynticks_nmi_nesting += incby;
1012 barrier();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001013}
1014
1015/**
1016 * rcu_nmi_exit - inform RCU of exit from NMI context
1017 *
Paul E. McKenney734d1682014-11-21 14:45:12 -08001018 * If we are returning from the outermost NMI handler that interrupted an
1019 * RCU-idle period, update rdtp->dynticks and rdtp->dynticks_nmi_nesting
1020 * to let the RCU grace-period handling know that the CPU is back to
1021 * being RCU-idle.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001022 */
1023void rcu_nmi_exit(void)
1024{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001025 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001026
Paul E. McKenney734d1682014-11-21 14:45:12 -08001027 /*
1028 * Check for ->dynticks_nmi_nesting underflow and bad ->dynticks.
1029 * (We are exiting an NMI handler, so RCU better be paying attention
1030 * to us!)
1031 */
1032 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting <= 0);
1033 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1034
1035 /*
1036 * If the nesting level is not 1, the CPU wasn't RCU-idle, so
1037 * leave it in non-RCU-idle state.
1038 */
1039 if (rdtp->dynticks_nmi_nesting != 1) {
1040 rdtp->dynticks_nmi_nesting -= 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001041 return;
Paul E. McKenney734d1682014-11-21 14:45:12 -08001042 }
1043
1044 /* This NMI interrupted an RCU-idle CPU, restore RCU-idleness. */
1045 rdtp->dynticks_nmi_nesting = 0;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001046 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001047 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001048 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001049 smp_mb__after_atomic(); /* Force delay to next write. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001050 WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001051}
1052
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001053/**
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001054 * __rcu_is_watching - are RCU read-side critical sections safe?
1055 *
1056 * Return true if RCU is watching the running CPU, which means that
1057 * this CPU can safely enter RCU read-side critical sections. Unlike
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001058 * rcu_is_watching(), the caller of __rcu_is_watching() must have at
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001059 * least disabled preemption.
1060 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001061bool notrace __rcu_is_watching(void)
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001062{
Paul E. McKenney8b2f63a2016-11-02 14:12:05 -07001063 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
1064
1065 return atomic_read(&rdtp->dynticks) & 0x1;
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001066}
1067
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001068/**
1069 * rcu_is_watching - see if RCU thinks that the current CPU is idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001070 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001071 * If the current CPU is in its idle loop and is neither in an interrupt
Paul E. McKenney34240692011-10-03 11:38:52 -07001072 * or NMI handler, return true.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001073 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001074bool notrace rcu_is_watching(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001075{
Pranith Kumarf534ed12014-07-08 18:26:11 -04001076 bool ret;
Paul E. McKenney34240692011-10-03 11:38:52 -07001077
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001078 preempt_disable_notrace();
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001079 ret = __rcu_is_watching();
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001080 preempt_enable_notrace();
Paul E. McKenney34240692011-10-03 11:38:52 -07001081 return ret;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001082}
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001083EXPORT_SYMBOL_GPL(rcu_is_watching);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001084
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001085#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001086
1087/*
1088 * Is the current CPU online? Disable preemption to avoid false positives
1089 * that could otherwise happen due to the current CPU number being sampled,
1090 * this task being preempted, its old CPU being taken offline, resuming
1091 * on some other CPU, then determining that its old CPU is now offline.
1092 * It is OK to use RCU on an offline processor during initial boot, hence
Paul E. McKenney2036d942012-01-30 17:02:47 -08001093 * the check for rcu_scheduler_fully_active. Note also that it is OK
1094 * for a CPU coming online to use RCU for one jiffy prior to marking itself
1095 * online in the cpu_online_mask. Similarly, it is OK for a CPU going
1096 * offline to continue to use RCU for one jiffy after marking itself
1097 * offline in the cpu_online_mask. This leniency is necessary given the
1098 * non-atomic nature of the online and offline processing, for example,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001099 * the fact that a CPU enters the scheduler after completing the teardown
1100 * of the CPU.
Paul E. McKenney2036d942012-01-30 17:02:47 -08001101 *
Thomas Gleixner4df83742016-07-13 17:17:03 +00001102 * This is also why RCU internally marks CPUs online during in the
1103 * preparation phase and offline after the CPU has been taken down.
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001104 *
1105 * Disable checking if in an NMI handler because we cannot safely report
1106 * errors from NMI handlers anyway.
1107 */
1108bool rcu_lockdep_current_cpu_online(void)
1109{
Paul E. McKenney2036d942012-01-30 17:02:47 -08001110 struct rcu_data *rdp;
1111 struct rcu_node *rnp;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001112 bool ret;
1113
1114 if (in_nmi())
Fengguang Wuf6f7ee92013-10-10 11:08:33 -07001115 return true;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001116 preempt_disable();
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001117 rdp = this_cpu_ptr(&rcu_sched_data);
Paul E. McKenney2036d942012-01-30 17:02:47 -08001118 rnp = rdp->mynode;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001119 ret = (rdp->grpmask & rcu_rnp_online_cpus(rnp)) ||
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001120 !rcu_scheduler_fully_active;
1121 preempt_enable();
1122 return ret;
1123}
1124EXPORT_SYMBOL_GPL(rcu_lockdep_current_cpu_online);
1125
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001126#endif /* #if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001127
1128/**
1129 * rcu_is_cpu_rrupt_from_idle - see if idle or immediately interrupted from idle
1130 *
1131 * If the current CPU is idle or running at a first-level (not nested)
1132 * interrupt from idle, return true. The caller must have at least
1133 * disabled preemption.
1134 */
Josh Triplett62e3cb12012-11-20 09:55:26 -08001135static int rcu_is_cpu_rrupt_from_idle(void)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001136{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001137 return __this_cpu_read(rcu_dynticks.dynticks_nesting) <= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001138}
1139
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001140/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001141 * Snapshot the specified CPU's dynticks counter so that we can later
1142 * credit them with an implicit quiescent state. Return 1 if this CPU
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001143 * is in dynticks idle mode, which is an extended quiescent state.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001144 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001145static int dyntick_save_progress_counter(struct rcu_data *rdp,
1146 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001147{
Paul E. McKenney8b2f63a2016-11-02 14:12:05 -07001148 rdp->dynticks_snap = rcu_dynticks_snap(rdp->dynticks);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07001149 rcu_sysidle_check_cpu(rdp, isidle, maxj);
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001150 if ((rdp->dynticks_snap & 0x1) == 0) {
1151 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001152 if (ULONG_CMP_LT(READ_ONCE(rdp->gpnum) + ULONG_MAX / 4,
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001153 rdp->mynode->gpnum))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001154 WRITE_ONCE(rdp->gpwrap, true);
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001155 return 1;
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001156 }
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001157 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001158}
1159
1160/*
1161 * Return true if the specified CPU has passed through a quiescent
1162 * state by virtue of being in or having passed through an dynticks
1163 * idle state since the last call to dyntick_save_progress_counter()
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001164 * for this same CPU, or by virtue of having been offline.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001165 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001166static int rcu_implicit_dynticks_qs(struct rcu_data *rdp,
1167 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001168{
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001169 unsigned int curr;
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001170 int *rcrmp;
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001171 unsigned int snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001172
Paul E. McKenney8b2f63a2016-11-02 14:12:05 -07001173 curr = (unsigned int)rcu_dynticks_snap(rdp->dynticks);
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001174 snap = (unsigned int)rdp->dynticks_snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001175
1176 /*
1177 * If the CPU passed through or entered a dynticks idle phase with
1178 * no active irq/NMI handlers, then we can safely pretend that the CPU
1179 * already acknowledged the request to pass through a quiescent
1180 * state. Either way, that CPU cannot possibly be in an RCU
1181 * read-side critical section that started before the beginning
1182 * of the current RCU grace period.
1183 */
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001184 if ((curr & 0x1) == 0 || UINT_CMP_GE(curr, snap + 2)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001185 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001186 rdp->dynticks_fqs++;
1187 return 1;
1188 }
1189
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001190 /*
1191 * Check for the CPU being offline, but only if the grace period
1192 * is old enough. We don't need to worry about the CPU changing
1193 * state: If we see it offline even once, it has been through a
1194 * quiescent state.
1195 *
1196 * The reason for insisting that the grace period be at least
1197 * one jiffy old is that CPUs that are not quite online and that
1198 * have just gone offline can still execute RCU read-side critical
1199 * sections.
1200 */
1201 if (ULONG_CMP_GE(rdp->rsp->gp_start + 2, jiffies))
1202 return 0; /* Grace period is not old enough. */
1203 barrier();
1204 if (cpu_is_offline(rdp->cpu)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001205 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("ofl"));
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001206 rdp->offline_fqs++;
1207 return 1;
1208 }
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001209
1210 /*
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001211 * A CPU running for an extended time within the kernel can
1212 * delay RCU grace periods. When the CPU is in NO_HZ_FULL mode,
1213 * even context-switching back and forth between a pair of
1214 * in-kernel CPU-bound tasks cannot advance grace periods.
1215 * So if the grace period is old enough, make the CPU pay attention.
1216 * Note that the unsynchronized assignments to the per-CPU
1217 * rcu_sched_qs_mask variable are safe. Yes, setting of
1218 * bits can be lost, but they will be set again on the next
1219 * force-quiescent-state pass. So lost bit sets do not result
1220 * in incorrect behavior, merely in a grace period lasting
1221 * a few jiffies longer than it might otherwise. Because
1222 * there are at most four threads involved, and because the
1223 * updates are only once every few jiffies, the probability of
1224 * lossage (and thus of slight grace-period extension) is
1225 * quite low.
1226 *
1227 * Note that if the jiffies_till_sched_qs boot/sysfs parameter
1228 * is set too high, we override with half of the RCU CPU stall
1229 * warning delay.
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001230 */
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001231 rcrmp = &per_cpu(rcu_sched_qs_mask, rdp->cpu);
1232 if (ULONG_CMP_GE(jiffies,
1233 rdp->rsp->gp_start + jiffies_till_sched_qs) ||
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001234 ULONG_CMP_GE(jiffies, rdp->rsp->jiffies_resched)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001235 if (!(READ_ONCE(*rcrmp) & rdp->rsp->flavor_mask)) {
1236 WRITE_ONCE(rdp->cond_resched_completed,
1237 READ_ONCE(rdp->mynode->completed));
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001238 smp_mb(); /* ->cond_resched_completed before *rcrmp. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001239 WRITE_ONCE(*rcrmp,
1240 READ_ONCE(*rcrmp) + rdp->rsp->flavor_mask);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001241 }
Paul E. McKenney49149502015-12-11 13:48:43 -08001242 rdp->rsp->jiffies_resched += 5; /* Re-enable beating. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001243 }
1244
Paul E. McKenney49149502015-12-11 13:48:43 -08001245 /* And if it has been a really long time, kick the CPU as well. */
1246 if (ULONG_CMP_GE(jiffies,
1247 rdp->rsp->gp_start + 2 * jiffies_till_sched_qs) ||
1248 ULONG_CMP_GE(jiffies, rdp->rsp->gp_start + jiffies_till_sched_qs))
1249 resched_cpu(rdp->cpu); /* Force CPU into scheduler. */
1250
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001251 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001252}
1253
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001254static void record_gp_stall_check_time(struct rcu_state *rsp)
1255{
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001256 unsigned long j = jiffies;
Paul E. McKenney6193c762013-09-23 13:57:18 -07001257 unsigned long j1;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001258
1259 rsp->gp_start = j;
1260 smp_wmb(); /* Record start time before stall time. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001261 j1 = rcu_jiffies_till_stall_check();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001262 WRITE_ONCE(rsp->jiffies_stall, j + j1);
Paul E. McKenney6193c762013-09-23 13:57:18 -07001263 rsp->jiffies_resched = j + j1 / 2;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001264 rsp->n_force_qs_gpstart = READ_ONCE(rsp->n_force_qs);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001265}
1266
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001267/*
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001268 * Convert a ->gp_state value to a character string.
1269 */
1270static const char *gp_state_getname(short gs)
1271{
1272 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
1273 return "???";
1274 return gp_state_names[gs];
1275}
1276
1277/*
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001278 * Complain about starvation of grace-period kthread.
1279 */
1280static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp)
1281{
1282 unsigned long gpa;
1283 unsigned long j;
1284
1285 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001286 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001287 if (j - gpa > 2 * HZ) {
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001288 pr_err("%s kthread starved for %ld jiffies! g%lu c%lu f%#x %s(%d) ->state=%#lx\n",
Paul E. McKenney81e701e432015-04-16 11:02:25 -07001289 rsp->name, j - gpa,
Paul E. McKenney319362c2015-05-19 14:16:52 -07001290 rsp->gpnum, rsp->completed,
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001291 rsp->gp_flags,
1292 gp_state_getname(rsp->gp_state), rsp->gp_state,
Paul E. McKenneya0e3a3a2015-12-05 17:34:10 -08001293 rsp->gp_kthread ? rsp->gp_kthread->state : ~0);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001294 if (rsp->gp_kthread) {
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001295 sched_show_task(rsp->gp_kthread);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001296 wake_up_process(rsp->gp_kthread);
1297 }
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001298 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001299}
1300
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001301/*
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001302 * Dump stacks of all tasks running on stalled CPUs.
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001303 */
1304static void rcu_dump_cpu_stacks(struct rcu_state *rsp)
1305{
1306 int cpu;
1307 unsigned long flags;
1308 struct rcu_node *rnp;
1309
1310 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001311 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001312 if (rnp->qsmask != 0) {
Mark Rutlandbc75e992016-06-03 15:20:04 +01001313 for_each_leaf_node_possible_cpu(rnp, cpu)
1314 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu))
1315 dump_cpu_task(cpu);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001316 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001317 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001318 }
1319}
1320
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001321/*
1322 * If too much time has passed in the current grace period, and if
1323 * so configured, go kick the relevant kthreads.
1324 */
1325static void rcu_stall_kick_kthreads(struct rcu_state *rsp)
1326{
1327 unsigned long j;
1328
1329 if (!rcu_kick_kthreads)
1330 return;
1331 j = READ_ONCE(rsp->jiffies_kick_kthreads);
Paul E. McKenneyaa3e0bf2016-03-23 10:43:23 -07001332 if (time_after(jiffies, j) && rsp->gp_kthread &&
1333 (rcu_gp_in_progress(rsp) || READ_ONCE(rsp->gp_flags))) {
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001334 WARN_ONCE(1, "Kicking %s grace-period kthread\n", rsp->name);
Paul E. McKenney5dffed12016-02-17 11:54:28 -08001335 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001336 wake_up_process(rsp->gp_kthread);
1337 WRITE_ONCE(rsp->jiffies_kick_kthreads, j + HZ);
1338 }
1339}
1340
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001341static inline void panic_on_rcu_stall(void)
1342{
1343 if (sysctl_panic_on_rcu_stall)
1344 panic("RCU Stall\n");
1345}
1346
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001347static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gpnum)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001348{
1349 int cpu;
1350 long delta;
1351 unsigned long flags;
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001352 unsigned long gpa;
1353 unsigned long j;
Paul E. McKenney285fe292012-05-09 08:45:12 -07001354 int ndetected = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001355 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001356 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001357
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001358 /* Kick and suppress, if so configured. */
1359 rcu_stall_kick_kthreads(rsp);
1360 if (rcu_cpu_stall_suppress)
1361 return;
1362
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001363 /* Only let one CPU complain about others per time interval. */
1364
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001365 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001366 delta = jiffies - READ_ONCE(rsp->jiffies_stall);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07001367 if (delta < RCU_STALL_RAT_DELAY || !rcu_gp_in_progress(rsp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08001368 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001369 return;
1370 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001371 WRITE_ONCE(rsp->jiffies_stall,
1372 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001373 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001374
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001375 /*
1376 * OK, time to rat on our buddy...
1377 * See Documentation/RCU/stallwarn.txt for info on how to debug
1378 * RCU CPU stall warnings.
1379 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001380 pr_err("INFO: %s detected stalls on CPUs/tasks:",
Paul E. McKenney4300aa62010-04-13 16:18:22 -07001381 rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001382 print_cpu_stall_info_begin();
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07001383 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001384 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001385 ndetected += rcu_print_task_stall(rnp);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001386 if (rnp->qsmask != 0) {
Mark Rutlandbc75e992016-06-03 15:20:04 +01001387 for_each_leaf_node_possible_cpu(rnp, cpu)
1388 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) {
1389 print_cpu_stall_info(rsp, cpu);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001390 ndetected++;
1391 }
1392 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001393 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001394 }
Paul E. McKenneya858af22012-01-16 13:29:10 -08001395
Paul E. McKenneya858af22012-01-16 13:29:10 -08001396 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001397 for_each_possible_cpu(cpu)
1398 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001399 pr_cont("(detected by %d, t=%ld jiffies, g=%ld, c=%ld, q=%lu)\n",
Paul E. McKenneyeee05882012-09-21 14:15:05 -07001400 smp_processor_id(), (long)(jiffies - rsp->gp_start),
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001401 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001402 if (ndetected) {
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001403 rcu_dump_cpu_stacks(rsp);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001404 } else {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001405 if (READ_ONCE(rsp->gpnum) != gpnum ||
1406 READ_ONCE(rsp->completed) == gpnum) {
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001407 pr_err("INFO: Stall ended before state dump start\n");
1408 } else {
1409 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001410 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001411 pr_err("All QSes seen, last %s kthread activity %ld (%ld-%ld), jiffies_till_next_fqs=%ld, root ->qsmask %#lx\n",
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001412 rsp->name, j - gpa, j, gpa,
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001413 jiffies_till_next_fqs,
1414 rcu_get_root(rsp)->qsmask);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001415 /* In this case, the current CPU might be at fault. */
1416 sched_show_task(current);
1417 }
1418 }
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001419
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001420 /* Complain about tasks blocking the grace period. */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001421 rcu_print_detail_task_stall(rsp);
1422
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001423 rcu_check_gp_kthread_starvation(rsp);
1424
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001425 panic_on_rcu_stall();
1426
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001427 force_quiescent_state(rsp); /* Kick them all. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001428}
1429
1430static void print_cpu_stall(struct rcu_state *rsp)
1431{
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001432 int cpu;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001433 unsigned long flags;
1434 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001435 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001436
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001437 /* Kick and suppress, if so configured. */
1438 rcu_stall_kick_kthreads(rsp);
1439 if (rcu_cpu_stall_suppress)
1440 return;
1441
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001442 /*
1443 * OK, time to rat on ourselves...
1444 * See Documentation/RCU/stallwarn.txt for info on how to debug
1445 * RCU CPU stall warnings.
1446 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001447 pr_err("INFO: %s self-detected stall on CPU", rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001448 print_cpu_stall_info_begin();
1449 print_cpu_stall_info(rsp, smp_processor_id());
1450 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001451 for_each_possible_cpu(cpu)
1452 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001453 pr_cont(" (t=%lu jiffies g=%ld c=%ld q=%lu)\n",
1454 jiffies - rsp->gp_start,
1455 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001456
1457 rcu_check_gp_kthread_starvation(rsp);
1458
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001459 rcu_dump_cpu_stacks(rsp);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001460
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001461 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001462 if (ULONG_CMP_GE(jiffies, READ_ONCE(rsp->jiffies_stall)))
1463 WRITE_ONCE(rsp->jiffies_stall,
1464 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001465 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001466
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001467 panic_on_rcu_stall();
1468
Peter Zijlstrab021fe32013-09-17 09:30:55 +02001469 /*
1470 * Attempt to revive the RCU machinery by forcing a context switch.
1471 *
1472 * A context switch would normally allow the RCU state machine to make
1473 * progress and it could be we're stuck in kernel space without context
1474 * switches for an entirely unreasonable amount of time.
1475 */
1476 resched_cpu(smp_processor_id());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001477}
1478
1479static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
1480{
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001481 unsigned long completed;
1482 unsigned long gpnum;
1483 unsigned long gps;
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001484 unsigned long j;
1485 unsigned long js;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001486 struct rcu_node *rnp;
1487
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001488 if ((rcu_cpu_stall_suppress && !rcu_kick_kthreads) ||
1489 !rcu_gp_in_progress(rsp))
Paul E. McKenneyc68de202010-04-15 10:12:40 -07001490 return;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001491 rcu_stall_kick_kthreads(rsp);
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001492 j = jiffies;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001493
1494 /*
1495 * Lots of memory barriers to reject false positives.
1496 *
1497 * The idea is to pick up rsp->gpnum, then rsp->jiffies_stall,
1498 * then rsp->gp_start, and finally rsp->completed. These values
1499 * are updated in the opposite order with memory barriers (or
1500 * equivalent) during grace-period initialization and cleanup.
1501 * Now, a false positive can occur if we get an new value of
1502 * rsp->gp_start and a old value of rsp->jiffies_stall. But given
1503 * the memory barriers, the only way that this can happen is if one
1504 * grace period ends and another starts between these two fetches.
1505 * Detect this by comparing rsp->completed with the previous fetch
1506 * from rsp->gpnum.
1507 *
1508 * Given this check, comparisons of jiffies, rsp->jiffies_stall,
1509 * and rsp->gp_start suffice to forestall false positives.
1510 */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001511 gpnum = READ_ONCE(rsp->gpnum);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001512 smp_rmb(); /* Pick up ->gpnum first... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001513 js = READ_ONCE(rsp->jiffies_stall);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001514 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001515 gps = READ_ONCE(rsp->gp_start);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001516 smp_rmb(); /* ...and finally ->gp_start before ->completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001517 completed = READ_ONCE(rsp->completed);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001518 if (ULONG_CMP_GE(completed, gpnum) ||
1519 ULONG_CMP_LT(j, js) ||
1520 ULONG_CMP_GE(gps, js))
1521 return; /* No stall or GP completed since entering function. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001522 rnp = rdp->mynode;
Paul E. McKenneyc96ea7c2012-08-13 11:17:06 -07001523 if (rcu_gp_in_progress(rsp) &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001524 (READ_ONCE(rnp->qsmask) & rdp->grpmask)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001525
1526 /* We haven't checked in, so go dump stack. */
1527 print_cpu_stall(rsp);
1528
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001529 } else if (rcu_gp_in_progress(rsp) &&
1530 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001531
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001532 /* They had a few time units to dump stack, so complain. */
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001533 print_other_cpu_stall(rsp, gpnum);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001534 }
1535}
1536
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001537/**
1538 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
1539 *
1540 * Set the stall-warning timeout way off into the future, thus preventing
1541 * any RCU CPU stall-warning messages from appearing in the current set of
1542 * RCU grace periods.
1543 *
1544 * The caller must disable hard irqs.
1545 */
1546void rcu_cpu_stall_reset(void)
1547{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07001548 struct rcu_state *rsp;
1549
1550 for_each_rcu_flavor(rsp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001551 WRITE_ONCE(rsp->jiffies_stall, jiffies + ULONG_MAX / 2);
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001552}
1553
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001554/*
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001555 * Initialize the specified rcu_data structure's default callback list
1556 * to empty. The default callback list is the one that is not used by
1557 * no-callbacks CPUs.
1558 */
1559static void init_default_callback_list(struct rcu_data *rdp)
1560{
1561 int i;
1562
1563 rdp->nxtlist = NULL;
1564 for (i = 0; i < RCU_NEXT_SIZE; i++)
1565 rdp->nxttail[i] = &rdp->nxtlist;
1566}
1567
1568/*
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001569 * Initialize the specified rcu_data structure's callback list to empty.
1570 */
1571static void init_callback_list(struct rcu_data *rdp)
1572{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001573 if (init_nocb_callback_list(rdp))
1574 return;
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001575 init_default_callback_list(rdp);
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001576}
1577
1578/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001579 * Determine the value that ->completed will have at the end of the
1580 * next subsequent grace period. This is used to tag callbacks so that
1581 * a CPU can invoke callbacks in a timely fashion even if that CPU has
1582 * been dyntick-idle for an extended period with callbacks under the
1583 * influence of RCU_FAST_NO_HZ.
1584 *
1585 * The caller must hold rnp->lock with interrupts disabled.
1586 */
1587static unsigned long rcu_cbs_completed(struct rcu_state *rsp,
1588 struct rcu_node *rnp)
1589{
1590 /*
1591 * If RCU is idle, we just wait for the next grace period.
1592 * But we can only be sure that RCU is idle if we are looking
1593 * at the root rcu_node structure -- otherwise, a new grace
1594 * period might have started, but just not yet gotten around
1595 * to initializing the current non-root rcu_node structure.
1596 */
1597 if (rcu_get_root(rsp) == rnp && rnp->gpnum == rnp->completed)
1598 return rnp->completed + 1;
1599
1600 /*
1601 * Otherwise, wait for a possible partial grace period and
1602 * then the subsequent full grace period.
1603 */
1604 return rnp->completed + 2;
1605}
1606
1607/*
Paul E. McKenney0446be42012-12-30 15:21:01 -08001608 * Trace-event helper function for rcu_start_future_gp() and
1609 * rcu_nocb_wait_gp().
1610 */
1611static void trace_rcu_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001612 unsigned long c, const char *s)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001613{
1614 trace_rcu_future_grace_period(rdp->rsp->name, rnp->gpnum,
1615 rnp->completed, c, rnp->level,
1616 rnp->grplo, rnp->grphi, s);
1617}
1618
1619/*
1620 * Start some future grace period, as needed to handle newly arrived
1621 * callbacks. The required future grace periods are recorded in each
Paul E. McKenney48a76392014-03-11 13:02:16 -07001622 * rcu_node structure's ->need_future_gp field. Returns true if there
1623 * is reason to awaken the grace-period kthread.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001624 *
1625 * The caller must hold the specified rcu_node structure's ->lock.
1626 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001627static bool __maybe_unused
1628rcu_start_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
1629 unsigned long *c_out)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001630{
1631 unsigned long c;
1632 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001633 bool ret = false;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001634 struct rcu_node *rnp_root = rcu_get_root(rdp->rsp);
1635
1636 /*
1637 * Pick up grace-period number for new callbacks. If this
1638 * grace period is already marked as needed, return to the caller.
1639 */
1640 c = rcu_cbs_completed(rdp->rsp, rnp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001641 trace_rcu_future_gp(rnp, rdp, c, TPS("Startleaf"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001642 if (rnp->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001643 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001644 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001645 }
1646
1647 /*
1648 * If either this rcu_node structure or the root rcu_node structure
1649 * believe that a grace period is in progress, then we must wait
1650 * for the one following, which is in "c". Because our request
1651 * will be noticed at the end of the current grace period, we don't
Pranith Kumar48bd8e92014-06-11 10:32:47 -07001652 * need to explicitly start one. We only do the lockless check
1653 * of rnp_root's fields if the current rcu_node structure thinks
1654 * there is no grace period in flight, and because we hold rnp->lock,
1655 * the only possible change is when rnp_root's two fields are
1656 * equal, in which case rnp_root->gpnum might be concurrently
1657 * incremented. But that is OK, as it will just result in our
1658 * doing some extra useless work.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001659 */
1660 if (rnp->gpnum != rnp->completed ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001661 READ_ONCE(rnp_root->gpnum) != READ_ONCE(rnp_root->completed)) {
Paul E. McKenney0446be42012-12-30 15:21:01 -08001662 rnp->need_future_gp[c & 0x1]++;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001663 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001664 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001665 }
1666
1667 /*
1668 * There might be no grace period in progress. If we don't already
1669 * hold it, acquire the root rcu_node structure's lock in order to
1670 * start one (if needed).
1671 */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001672 if (rnp != rnp_root)
1673 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001674
1675 /*
1676 * Get a new grace-period number. If there really is no grace
1677 * period in progress, it will be smaller than the one we obtained
1678 * earlier. Adjust callbacks as needed. Note that even no-CBs
1679 * CPUs have a ->nxtcompleted[] array, so no no-CBs checks needed.
1680 */
1681 c = rcu_cbs_completed(rdp->rsp, rnp_root);
1682 for (i = RCU_DONE_TAIL; i < RCU_NEXT_TAIL; i++)
1683 if (ULONG_CMP_LT(c, rdp->nxtcompleted[i]))
1684 rdp->nxtcompleted[i] = c;
1685
1686 /*
1687 * If the needed for the required grace period is already
1688 * recorded, trace and leave.
1689 */
1690 if (rnp_root->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001691 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartedroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001692 goto unlock_out;
1693 }
1694
1695 /* Record the need for the future grace period. */
1696 rnp_root->need_future_gp[c & 0x1]++;
1697
1698 /* If a grace period is not already in progress, start one. */
1699 if (rnp_root->gpnum != rnp_root->completed) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001700 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleafroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001701 } else {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001702 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedroot"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001703 ret = rcu_start_gp_advanced(rdp->rsp, rnp_root, rdp);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001704 }
1705unlock_out:
1706 if (rnp != rnp_root)
Boqun Feng67c583a72015-12-29 12:18:47 +08001707 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001708out:
1709 if (c_out != NULL)
1710 *c_out = c;
1711 return ret;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001712}
1713
1714/*
1715 * Clean up any old requests for the just-ended grace period. Also return
1716 * whether any additional grace periods have been requested. Also invoke
1717 * rcu_nocb_gp_cleanup() in order to wake up any no-callbacks kthreads
1718 * waiting for this grace period to complete.
1719 */
1720static int rcu_future_gp_cleanup(struct rcu_state *rsp, struct rcu_node *rnp)
1721{
1722 int c = rnp->completed;
1723 int needmore;
1724 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
1725
Paul E. McKenney0446be42012-12-30 15:21:01 -08001726 rnp->need_future_gp[c & 0x1] = 0;
1727 needmore = rnp->need_future_gp[(c + 1) & 0x1];
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001728 trace_rcu_future_gp(rnp, rdp, c,
1729 needmore ? TPS("CleanupMore") : TPS("Cleanup"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001730 return needmore;
1731}
1732
1733/*
Paul E. McKenney48a76392014-03-11 13:02:16 -07001734 * Awaken the grace-period kthread for the specified flavor of RCU.
1735 * Don't do a self-awaken, and don't bother awakening when there is
1736 * nothing for the grace-period kthread to do (as in several CPUs
1737 * raced to awaken, and we lost), and finally don't try to awaken
1738 * a kthread that has not yet been created.
1739 */
1740static void rcu_gp_kthread_wake(struct rcu_state *rsp)
1741{
1742 if (current == rsp->gp_kthread ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001743 !READ_ONCE(rsp->gp_flags) ||
Paul E. McKenney48a76392014-03-11 13:02:16 -07001744 !rsp->gp_kthread)
1745 return;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001746 swake_up(&rsp->gp_wq);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001747}
1748
1749/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001750 * If there is room, assign a ->completed number to any callbacks on
1751 * this CPU that have not already been assigned. Also accelerate any
1752 * callbacks that were previously assigned a ->completed number that has
1753 * since proven to be too conservative, which can happen if callbacks get
1754 * assigned a ->completed number while RCU is idle, but with reference to
1755 * a non-root rcu_node structure. This function is idempotent, so it does
Paul E. McKenney48a76392014-03-11 13:02:16 -07001756 * not hurt to call it repeatedly. Returns an flag saying that we should
1757 * awaken the RCU grace-period kthread.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001758 *
1759 * The caller must hold rnp->lock with interrupts disabled.
1760 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001761static bool rcu_accelerate_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001762 struct rcu_data *rdp)
1763{
1764 unsigned long c;
1765 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001766 bool ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001767
1768 /* If the CPU has no callbacks, nothing to do. */
1769 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001770 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001771
1772 /*
1773 * Starting from the sublist containing the callbacks most
1774 * recently assigned a ->completed number and working down, find the
1775 * first sublist that is not assignable to an upcoming grace period.
1776 * Such a sublist has something in it (first two tests) and has
1777 * a ->completed number assigned that will complete sooner than
1778 * the ->completed number for newly arrived callbacks (last test).
1779 *
1780 * The key point is that any later sublist can be assigned the
1781 * same ->completed number as the newly arrived callbacks, which
1782 * means that the callbacks in any of these later sublist can be
1783 * grouped into a single sublist, whether or not they have already
1784 * been assigned a ->completed number.
1785 */
1786 c = rcu_cbs_completed(rsp, rnp);
1787 for (i = RCU_NEXT_TAIL - 1; i > RCU_DONE_TAIL; i--)
1788 if (rdp->nxttail[i] != rdp->nxttail[i - 1] &&
1789 !ULONG_CMP_GE(rdp->nxtcompleted[i], c))
1790 break;
1791
1792 /*
1793 * If there are no sublist for unassigned callbacks, leave.
1794 * At the same time, advance "i" one sublist, so that "i" will
1795 * index into the sublist where all the remaining callbacks should
1796 * be grouped into.
1797 */
1798 if (++i >= RCU_NEXT_TAIL)
Paul E. McKenney48a76392014-03-11 13:02:16 -07001799 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001800
1801 /*
1802 * Assign all subsequent callbacks' ->completed number to the next
1803 * full grace period and group them all in the sublist initially
1804 * indexed by "i".
1805 */
1806 for (; i <= RCU_NEXT_TAIL; i++) {
1807 rdp->nxttail[i] = rdp->nxttail[RCU_NEXT_TAIL];
1808 rdp->nxtcompleted[i] = c;
1809 }
Paul E. McKenney910ee452012-12-31 02:24:21 -08001810 /* Record any needed additional grace periods. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001811 ret = rcu_start_future_gp(rnp, rdp, NULL);
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001812
1813 /* Trace depending on how much we were able to accelerate. */
1814 if (!*rdp->nxttail[RCU_WAIT_TAIL])
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001815 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccWaitCB"));
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001816 else
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001817 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccReadyCB"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001818 return ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001819}
1820
1821/*
1822 * Move any callbacks whose grace period has completed to the
1823 * RCU_DONE_TAIL sublist, then compact the remaining sublists and
1824 * assign ->completed numbers to any callbacks in the RCU_NEXT_TAIL
1825 * sublist. This function is idempotent, so it does not hurt to
1826 * invoke it repeatedly. As long as it is not invoked -too- often...
Paul E. McKenney48a76392014-03-11 13:02:16 -07001827 * Returns true if the RCU grace-period kthread needs to be awakened.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001828 *
1829 * The caller must hold rnp->lock with interrupts disabled.
1830 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001831static bool rcu_advance_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001832 struct rcu_data *rdp)
1833{
1834 int i, j;
1835
1836 /* If the CPU has no callbacks, nothing to do. */
1837 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001838 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001839
1840 /*
1841 * Find all callbacks whose ->completed numbers indicate that they
1842 * are ready to invoke, and put them into the RCU_DONE_TAIL sublist.
1843 */
1844 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++) {
1845 if (ULONG_CMP_LT(rnp->completed, rdp->nxtcompleted[i]))
1846 break;
1847 rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[i];
1848 }
1849 /* Clean up any sublist tail pointers that were misordered above. */
1850 for (j = RCU_WAIT_TAIL; j < i; j++)
1851 rdp->nxttail[j] = rdp->nxttail[RCU_DONE_TAIL];
1852
1853 /* Copy down callbacks to fill in empty sublists. */
1854 for (j = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++, j++) {
1855 if (rdp->nxttail[j] == rdp->nxttail[RCU_NEXT_TAIL])
1856 break;
1857 rdp->nxttail[j] = rdp->nxttail[i];
1858 rdp->nxtcompleted[j] = rdp->nxtcompleted[i];
1859 }
1860
1861 /* Classify any remaining callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001862 return rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001863}
1864
1865/*
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001866 * Update CPU-local rcu_data state to record the beginnings and ends of
1867 * grace periods. The caller must hold the ->lock of the leaf rcu_node
1868 * structure corresponding to the current CPU, and must have irqs disabled.
Paul E. McKenney48a76392014-03-11 13:02:16 -07001869 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001870 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001871static bool __note_gp_changes(struct rcu_state *rsp, struct rcu_node *rnp,
1872 struct rcu_data *rdp)
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001873{
Paul E. McKenney48a76392014-03-11 13:02:16 -07001874 bool ret;
Paul E. McKenney3563a432016-07-28 09:39:11 -07001875 bool need_gp;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001876
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001877 /* Handle the ends of any preceding grace periods first. */
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001878 if (rdp->completed == rnp->completed &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001879 !unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001880
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001881 /* No grace period end, so just accelerate recent callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001882 ret = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001883
1884 } else {
1885
1886 /* Advance callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001887 ret = rcu_advance_cbs(rsp, rnp, rdp);
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001888
1889 /* Remember that we saw this grace-period completion. */
1890 rdp->completed = rnp->completed;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001891 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuend"));
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001892 }
Paul E. McKenney398ebe62013-03-19 10:53:14 -07001893
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001894 if (rdp->gpnum != rnp->gpnum || unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001895 /*
1896 * If the current grace period is waiting for this CPU,
1897 * set up to detect a quiescent state, otherwise don't
1898 * go looking for one.
1899 */
1900 rdp->gpnum = rnp->gpnum;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001901 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpustart"));
Paul E. McKenney3563a432016-07-28 09:39:11 -07001902 need_gp = !!(rnp->qsmask & rdp->grpmask);
1903 rdp->cpu_no_qs.b.norm = need_gp;
Paul E. McKenney5cd37192014-12-13 20:32:04 -08001904 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Paul E. McKenney3563a432016-07-28 09:39:11 -07001905 rdp->core_needs_qs = need_gp;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001906 zero_cpu_stall_ticks(rdp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001907 WRITE_ONCE(rdp->gpwrap, false);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001908 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001909 return ret;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001910}
1911
Paul E. McKenneyd34ea322013-03-19 11:10:43 -07001912static void note_gp_changes(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001913{
1914 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001915 bool needwake;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001916 struct rcu_node *rnp;
1917
1918 local_irq_save(flags);
1919 rnp = rdp->mynode;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001920 if ((rdp->gpnum == READ_ONCE(rnp->gpnum) &&
1921 rdp->completed == READ_ONCE(rnp->completed) &&
1922 !unlikely(READ_ONCE(rdp->gpwrap))) || /* w/out lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001923 !raw_spin_trylock_rcu_node(rnp)) { /* irqs already off, so later. */
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001924 local_irq_restore(flags);
1925 return;
1926 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001927 needwake = __note_gp_changes(rsp, rnp, rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001928 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001929 if (needwake)
1930 rcu_gp_kthread_wake(rsp);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001931}
1932
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001933static void rcu_gp_slow(struct rcu_state *rsp, int delay)
1934{
1935 if (delay > 0 &&
1936 !(rsp->gpnum % (rcu_num_nodes * PER_RCU_NODE_PERIOD * delay)))
1937 schedule_timeout_uninterruptible(delay);
1938}
1939
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001940/*
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001941 * Initialize a new grace period. Return false if no grace period required.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001942 */
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001943static bool rcu_gp_init(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001944{
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001945 unsigned long oldmask;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001946 struct rcu_data *rdp;
1947 struct rcu_node *rnp = rcu_get_root(rsp);
1948
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001949 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001950 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001951 if (!READ_ONCE(rsp->gp_flags)) {
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001952 /* Spurious wakeup, tell caller to go back to sleep. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001953 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001954 return false;
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001955 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001956 WRITE_ONCE(rsp->gp_flags, 0); /* Clear all flags: New grace period. */
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001957
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001958 if (WARN_ON_ONCE(rcu_gp_in_progress(rsp))) {
1959 /*
1960 * Grace period already in progress, don't start another.
1961 * Not supposed to be able to happen.
1962 */
Boqun Feng67c583a72015-12-29 12:18:47 +08001963 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001964 return false;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001965 }
1966
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001967 /* Advance to a new grace period and initialize state. */
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001968 record_gp_stall_check_time(rsp);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07001969 /* Record GP times before starting GP, hence smp_store_release(). */
1970 smp_store_release(&rsp->gpnum, rsp->gpnum + 1);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001971 trace_rcu_grace_period(rsp->name, rsp->gpnum, TPS("start"));
Boqun Feng67c583a72015-12-29 12:18:47 +08001972 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001973
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001974 /*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001975 * Apply per-leaf buffered online and offline operations to the
1976 * rcu_node tree. Note that this new grace period need not wait
1977 * for subsequent online CPUs, and that quiescent-state forcing
1978 * will handle subsequent offline CPUs.
1979 */
1980 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001981 rcu_gp_slow(rsp, gp_preinit_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001982 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001983 if (rnp->qsmaskinit == rnp->qsmaskinitnext &&
1984 !rnp->wait_blkd_tasks) {
1985 /* Nothing to do on this leaf rcu_node structure. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001986 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001987 continue;
1988 }
1989
1990 /* Record old state, apply changes to ->qsmaskinit field. */
1991 oldmask = rnp->qsmaskinit;
1992 rnp->qsmaskinit = rnp->qsmaskinitnext;
1993
1994 /* If zero-ness of ->qsmaskinit changed, propagate up tree. */
1995 if (!oldmask != !rnp->qsmaskinit) {
1996 if (!oldmask) /* First online CPU for this rcu_node. */
1997 rcu_init_new_rnp(rnp);
1998 else if (rcu_preempt_has_tasks(rnp)) /* blocked tasks */
1999 rnp->wait_blkd_tasks = true;
2000 else /* Last offline CPU and can propagate. */
2001 rcu_cleanup_dead_rnp(rnp);
2002 }
2003
2004 /*
2005 * If all waited-on tasks from prior grace period are
2006 * done, and if all this rcu_node structure's CPUs are
2007 * still offline, propagate up the rcu_node tree and
2008 * clear ->wait_blkd_tasks. Otherwise, if one of this
2009 * rcu_node structure's CPUs has since come back online,
2010 * simply clear ->wait_blkd_tasks (but rcu_cleanup_dead_rnp()
2011 * checks for this, so just call it unconditionally).
2012 */
2013 if (rnp->wait_blkd_tasks &&
2014 (!rcu_preempt_has_tasks(rnp) ||
2015 rnp->qsmaskinit)) {
2016 rnp->wait_blkd_tasks = false;
2017 rcu_cleanup_dead_rnp(rnp);
2018 }
2019
Boqun Feng67c583a72015-12-29 12:18:47 +08002020 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002021 }
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002022
2023 /*
2024 * Set the quiescent-state-needed bits in all the rcu_node
2025 * structures for all currently online CPUs in breadth-first order,
2026 * starting from the root rcu_node structure, relying on the layout
2027 * of the tree within the rsp->node[] array. Note that other CPUs
2028 * will access only the leaves of the hierarchy, thus seeing that no
2029 * grace period is in progress, at least until the corresponding
Paul E. McKenney590d1752016-04-10 08:23:24 -07002030 * leaf node has been initialized.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002031 *
2032 * The grace period cannot complete until the initialization
2033 * process finishes, because this kthread handles both.
2034 */
2035 rcu_for_each_node_breadth_first(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07002036 rcu_gp_slow(rsp, gp_init_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002037 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002038 rdp = this_cpu_ptr(rsp->rda);
2039 rcu_preempt_check_blocked_tasks(rnp);
2040 rnp->qsmask = rnp->qsmaskinit;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002041 WRITE_ONCE(rnp->gpnum, rsp->gpnum);
Lai Jiangshan3f47da02015-01-13 15:30:34 +08002042 if (WARN_ON_ONCE(rnp->completed != rsp->completed))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002043 WRITE_ONCE(rnp->completed, rsp->completed);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002044 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002045 (void)__note_gp_changes(rsp, rnp, rdp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002046 rcu_preempt_boost_start_gp(rnp);
2047 trace_rcu_grace_period_init(rsp->name, rnp->gpnum,
2048 rnp->level, rnp->grplo,
2049 rnp->grphi, rnp->qsmask);
Boqun Feng67c583a72015-12-29 12:18:47 +08002050 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002051 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002052 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002053 }
2054
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08002055 return true;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002056}
2057
2058/*
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002059 * Helper function for wait_event_interruptible_timeout() wakeup
2060 * at force-quiescent-state time.
2061 */
2062static bool rcu_gp_fqs_check_wake(struct rcu_state *rsp, int *gfp)
2063{
2064 struct rcu_node *rnp = rcu_get_root(rsp);
2065
2066 /* Someone like call_rcu() requested a force-quiescent-state scan. */
2067 *gfp = READ_ONCE(rsp->gp_flags);
2068 if (*gfp & RCU_GP_FLAG_FQS)
2069 return true;
2070
2071 /* The current grace period has completed. */
2072 if (!READ_ONCE(rnp->qsmask) && !rcu_preempt_blocked_readers_cgp(rnp))
2073 return true;
2074
2075 return false;
2076}
2077
2078/*
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002079 * Do one round of quiescent-state forcing.
2080 */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002081static void rcu_gp_fqs(struct rcu_state *rsp, bool first_time)
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002082{
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002083 bool isidle = false;
2084 unsigned long maxj;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002085 struct rcu_node *rnp = rcu_get_root(rsp);
2086
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002087 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002088 rsp->n_force_qs++;
Petr Mladek77f81fe2015-09-09 12:09:49 -07002089 if (first_time) {
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002090 /* Collect dyntick-idle snapshots. */
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002091 if (is_sysidle_rcu_state(rsp)) {
Pranith Kumare02b2ed2014-07-09 00:08:17 -04002092 isidle = true;
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002093 maxj = jiffies - ULONG_MAX / 4;
2094 }
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002095 force_qs_rnp(rsp, dyntick_save_progress_counter,
2096 &isidle, &maxj);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002097 rcu_sysidle_report_gp(rsp, isidle, maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002098 } else {
2099 /* Handle dyntick-idle and offline CPUs. */
Paul E. McKenney675da672015-02-23 15:57:07 -08002100 isidle = true;
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002101 force_qs_rnp(rsp, rcu_implicit_dynticks_qs, &isidle, &maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002102 }
2103 /* Clear flag to prevent immediate re-entry. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002104 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002105 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002106 WRITE_ONCE(rsp->gp_flags,
2107 READ_ONCE(rsp->gp_flags) & ~RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002108 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002109 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002110}
2111
2112/*
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002113 * Clean up after the old grace period.
2114 */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002115static void rcu_gp_cleanup(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002116{
2117 unsigned long gp_duration;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002118 bool needgp = false;
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002119 int nocb = 0;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002120 struct rcu_data *rdp;
2121 struct rcu_node *rnp = rcu_get_root(rsp);
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002122 struct swait_queue_head *sq;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002123
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002124 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002125 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002126 gp_duration = jiffies - rsp->gp_start;
2127 if (gp_duration > rsp->gp_max)
2128 rsp->gp_max = gp_duration;
2129
2130 /*
2131 * We know the grace period is complete, but to everyone else
2132 * it appears to still be ongoing. But it is also the case
2133 * that to everyone else it looks like there is nothing that
2134 * they can do to advance the grace period. It is therefore
2135 * safe for us to drop the lock in order to mark the grace
2136 * period as completed in all of the rcu_node structures.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002137 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002138 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002139
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002140 /*
2141 * Propagate new ->completed value to rcu_node structures so
2142 * that other CPUs don't have to wait until the start of the next
2143 * grace period to process their callbacks. This also avoids
2144 * some nasty RCU grace-period initialization races by forcing
2145 * the end of the current grace period to be completely recorded in
2146 * all of the rcu_node structures before the beginning of the next
2147 * grace period is recorded in any of the rcu_node structures.
2148 */
2149 rcu_for_each_node_breadth_first(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002150 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney5c60d252015-02-09 05:37:47 -08002151 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
2152 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002153 WRITE_ONCE(rnp->completed, rsp->gpnum);
Paul E. McKenneyb11cc572012-12-17 14:21:14 -08002154 rdp = this_cpu_ptr(rsp->rda);
2155 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002156 needgp = __note_gp_changes(rsp, rnp, rdp) || needgp;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002157 /* smp_mb() provided by prior unlock-lock pair. */
Paul E. McKenney0446be42012-12-30 15:21:01 -08002158 nocb += rcu_future_gp_cleanup(rsp, rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002159 sq = rcu_nocb_gp_get(rnp);
Boqun Feng67c583a72015-12-29 12:18:47 +08002160 raw_spin_unlock_irq_rcu_node(rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002161 rcu_nocb_gp_cleanup(sq);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002162 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002163 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07002164 rcu_gp_slow(rsp, gp_cleanup_delay);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002165 }
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002166 rnp = rcu_get_root(rsp);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002167 raw_spin_lock_irq_rcu_node(rnp); /* Order GP before ->completed update. */
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002168 rcu_nocb_gp_set(rnp, nocb);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002169
Paul E. McKenney765a3f42014-03-14 16:37:08 -07002170 /* Declare grace period done. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002171 WRITE_ONCE(rsp->completed, rsp->gpnum);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002172 trace_rcu_grace_period(rsp->name, rsp->completed, TPS("end"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002173 rsp->gp_state = RCU_GP_IDLE;
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002174 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002175 /* Advance CBs to reduce false positives below. */
2176 needgp = rcu_advance_cbs(rsp, rnp, rdp) || needgp;
2177 if (needgp || cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002178 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002179 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002180 READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002181 TPS("newreq"));
2182 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002183 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002184}
2185
2186/*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002187 * Body of kthread that handles grace periods.
2188 */
Paul E. McKenney755609a2012-06-19 17:18:20 -07002189static int __noreturn rcu_gp_kthread(void *arg)
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002190{
Petr Mladek77f81fe2015-09-09 12:09:49 -07002191 bool first_gp_fqs;
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002192 int gf;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002193 unsigned long j;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002194 int ret;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002195 struct rcu_state *rsp = arg;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002196 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002197
Paul E. McKenney58719682015-02-24 11:05:36 -08002198 rcu_bind_gp_kthread();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002199 for (;;) {
2200
2201 /* Handle grace-period start. */
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002202 for (;;) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002203 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002204 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002205 TPS("reqwait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002206 rsp->gp_state = RCU_GP_WAIT_GPS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002207 swait_event_interruptible(rsp->gp_wq,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002208 READ_ONCE(rsp->gp_flags) &
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002209 RCU_GP_FLAG_INIT);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002210 rsp->gp_state = RCU_GP_DONE_GPS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002211 /* Locking provides needed memory barrier. */
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07002212 if (rcu_gp_init(rsp))
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002213 break;
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002214 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002215 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002216 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002217 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002218 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002219 TPS("reqwaitsig"));
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002220 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002221
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002222 /* Handle quiescent-state forcing. */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002223 first_gp_fqs = true;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002224 j = jiffies_till_first_fqs;
2225 if (j > HZ) {
2226 j = HZ;
2227 jiffies_till_first_fqs = HZ;
2228 }
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002229 ret = 0;
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002230 for (;;) {
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002231 if (!ret) {
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002232 rsp->jiffies_force_qs = jiffies + j;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002233 WRITE_ONCE(rsp->jiffies_kick_kthreads,
2234 jiffies + 3 * j);
2235 }
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002236 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002237 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002238 TPS("fqswait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002239 rsp->gp_state = RCU_GP_WAIT_FQS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002240 ret = swait_event_interruptible_timeout(rsp->gp_wq,
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002241 rcu_gp_fqs_check_wake(rsp, &gf), j);
Paul E. McKenney32bb1c72015-07-02 12:27:31 -07002242 rsp->gp_state = RCU_GP_DOING_FQS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002243 /* Locking provides needed memory barriers. */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002244 /* If grace period done, leave loop. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002245 if (!READ_ONCE(rnp->qsmask) &&
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002246 !rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002247 break;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002248 /* If time for quiescent-state forcing, do it. */
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002249 if (ULONG_CMP_GE(jiffies, rsp->jiffies_force_qs) ||
2250 (gf & RCU_GP_FLAG_FQS)) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002251 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002252 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002253 TPS("fqsstart"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002254 rcu_gp_fqs(rsp, first_gp_fqs);
2255 first_gp_fqs = false;
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002256 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002257 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002258 TPS("fqsend"));
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002259 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002260 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002261 ret = 0; /* Force full wait till next FQS. */
2262 j = jiffies_till_next_fqs;
2263 if (j > HZ) {
2264 j = HZ;
2265 jiffies_till_next_fqs = HZ;
2266 } else if (j < 1) {
2267 j = 1;
2268 jiffies_till_next_fqs = 1;
2269 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002270 } else {
2271 /* Deal with stray signal. */
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002272 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002273 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002274 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002275 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002276 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002277 TPS("fqswaitsig"));
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002278 ret = 1; /* Keep old FQS timing. */
2279 j = jiffies;
2280 if (time_after(jiffies, rsp->jiffies_force_qs))
2281 j = 1;
2282 else
2283 j = rsp->jiffies_force_qs - j;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002284 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002285 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002286
2287 /* Handle grace-period end. */
Paul E. McKenney319362c2015-05-19 14:16:52 -07002288 rsp->gp_state = RCU_GP_CLEANUP;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002289 rcu_gp_cleanup(rsp);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002290 rsp->gp_state = RCU_GP_CLEANED;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002291 }
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002292}
2293
2294/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002295 * Start a new RCU grace period if warranted, re-initializing the hierarchy
2296 * in preparation for detecting the next grace period. The caller must hold
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002297 * the root node's ->lock and hard irqs must be disabled.
Paul E. McKenneye5601402012-01-07 11:03:57 -08002298 *
2299 * Note that it is legal for a dying CPU (which is marked as offline) to
2300 * invoke this function. This can happen when the dying CPU reports its
2301 * quiescent state.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002302 *
2303 * Returns true if the grace-period kthread must be awakened.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002304 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002305static bool
Paul E. McKenney910ee452012-12-31 02:24:21 -08002306rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
2307 struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002308{
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002309 if (!rsp->gp_kthread || !cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002310 /*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002311 * Either we have not yet spawned the grace-period
Paul E. McKenney62da1922012-09-20 16:02:49 -07002312 * task, this CPU does not need another grace period,
2313 * or a grace period is already in progress.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002314 * Either way, don't start a new grace period.
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002315 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002316 return false;
Paul E. McKenneyafe24b12011-08-24 16:52:09 -07002317 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002318 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
2319 trace_rcu_grace_period(rsp->name, READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002320 TPS("newreq"));
Paul E. McKenney62da1922012-09-20 16:02:49 -07002321
Steven Rostedt016a8d52013-05-28 17:32:53 -04002322 /*
2323 * We can't do wakeups while holding the rnp->lock, as that
Paul E. McKenney1eafd312013-06-20 13:50:40 -07002324 * could cause possible deadlocks with the rq->lock. Defer
Paul E. McKenney48a76392014-03-11 13:02:16 -07002325 * the wakeup to our caller.
Steven Rostedt016a8d52013-05-28 17:32:53 -04002326 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002327 return true;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002328}
2329
2330/*
Paul E. McKenney910ee452012-12-31 02:24:21 -08002331 * Similar to rcu_start_gp_advanced(), but also advance the calling CPU's
2332 * callbacks. Note that rcu_start_gp_advanced() cannot do this because it
2333 * is invoked indirectly from rcu_advance_cbs(), which would result in
2334 * endless recursion -- or would do so if it wasn't for the self-deadlock
2335 * that is encountered beforehand.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002336 *
2337 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenney910ee452012-12-31 02:24:21 -08002338 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002339static bool rcu_start_gp(struct rcu_state *rsp)
Paul E. McKenney910ee452012-12-31 02:24:21 -08002340{
2341 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
2342 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002343 bool ret = false;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002344
2345 /*
2346 * If there is no grace period in progress right now, any
2347 * callbacks we have up to this point will be satisfied by the
2348 * next grace period. Also, advancing the callbacks reduces the
2349 * probability of false positives from cpu_needs_another_gp()
2350 * resulting in pointless grace periods. So, advance callbacks
2351 * then start the grace period!
2352 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002353 ret = rcu_advance_cbs(rsp, rnp, rdp) || ret;
2354 ret = rcu_start_gp_advanced(rsp, rnp, rdp) || ret;
2355 return ret;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002356}
2357
2358/*
Paul E. McKenney89945152015-12-10 09:59:43 -08002359 * Report a full set of quiescent states to the specified rcu_state data
2360 * structure. Invoke rcu_gp_kthread_wake() to awaken the grace-period
2361 * kthread if another grace period is required. Whether we wake
2362 * the grace-period kthread or it awakens itself for the next round
2363 * of quiescent-state forcing, that kthread will clean up after the
2364 * just-completed grace period. Note that the caller must hold rnp->lock,
2365 * which is released before return.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002366 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002367static void rcu_report_qs_rsp(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07002368 __releases(rcu_get_root(rsp)->lock)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002369{
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07002370 WARN_ON_ONCE(!rcu_gp_in_progress(rsp));
Paul E. McKenneycd73ca22015-03-16 11:53:52 -07002371 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002372 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Jisheng Zhang94d44772016-06-22 17:19:27 +08002373 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002374}
2375
2376/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002377 * Similar to rcu_report_qs_rdp(), for which it is a helper function.
2378 * Allows quiescent states for a group of CPUs to be reported at one go
2379 * to the specified rcu_node structure, though all the CPUs in the group
Paul E. McKenney654e9532015-03-15 09:19:35 -07002380 * must be represented by the same rcu_node structure (which need not be a
2381 * leaf rcu_node structure, though it often will be). The gps parameter
2382 * is the grace-period snapshot, which means that the quiescent states
2383 * are valid only if rnp->gpnum is equal to gps. That structure's lock
2384 * must be held upon entry, and it is released before return.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002385 */
2386static void
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002387rcu_report_qs_rnp(unsigned long mask, struct rcu_state *rsp,
Paul E. McKenney654e9532015-03-15 09:19:35 -07002388 struct rcu_node *rnp, unsigned long gps, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002389 __releases(rnp->lock)
2390{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002391 unsigned long oldmask = 0;
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002392 struct rcu_node *rnp_c;
2393
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002394 /* Walk up the rcu_node hierarchy. */
2395 for (;;) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002396 if (!(rnp->qsmask & mask) || rnp->gpnum != gps) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002397
Paul E. McKenney654e9532015-03-15 09:19:35 -07002398 /*
2399 * Our bit has already been cleared, or the
2400 * relevant grace period is already over, so done.
2401 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002402 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002403 return;
2404 }
Paul E. McKenney654e9532015-03-15 09:19:35 -07002405 WARN_ON_ONCE(oldmask); /* Any child must be all zeroed! */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002406 rnp->qsmask &= ~mask;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07002407 trace_rcu_quiescent_state_report(rsp->name, rnp->gpnum,
2408 mask, rnp->qsmask, rnp->level,
2409 rnp->grplo, rnp->grphi,
2410 !!rnp->gp_tasks);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002411 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002412
2413 /* Other bits still set at this level, so done. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002414 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002415 return;
2416 }
2417 mask = rnp->grpmask;
2418 if (rnp->parent == NULL) {
2419
2420 /* No more levels. Exit loop holding root lock. */
2421
2422 break;
2423 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002424 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002425 rnp_c = rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002426 rnp = rnp->parent;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002427 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney654e9532015-03-15 09:19:35 -07002428 oldmask = rnp_c->qsmask;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002429 }
2430
2431 /*
2432 * Get here if we are the last CPU to pass through a quiescent
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002433 * state for this grace period. Invoke rcu_report_qs_rsp()
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002434 * to clean up and start the next grace period if one is needed.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002435 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002436 rcu_report_qs_rsp(rsp, flags); /* releases rnp->lock. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002437}
2438
2439/*
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002440 * Record a quiescent state for all tasks that were previously queued
2441 * on the specified rcu_node structure and that were blocking the current
2442 * RCU grace period. The caller must hold the specified rnp->lock with
2443 * irqs disabled, and this lock is released upon return, but irqs remain
2444 * disabled.
2445 */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002446static void rcu_report_unblock_qs_rnp(struct rcu_state *rsp,
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002447 struct rcu_node *rnp, unsigned long flags)
2448 __releases(rnp->lock)
2449{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002450 unsigned long gps;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002451 unsigned long mask;
2452 struct rcu_node *rnp_p;
2453
Paul E. McKenneya77da142015-03-08 14:52:27 -07002454 if (rcu_state_p == &rcu_sched_state || rsp != rcu_state_p ||
2455 rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002456 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002457 return; /* Still need more quiescent states! */
2458 }
2459
2460 rnp_p = rnp->parent;
2461 if (rnp_p == NULL) {
2462 /*
Paul E. McKenneya77da142015-03-08 14:52:27 -07002463 * Only one rcu_node structure in the tree, so don't
2464 * try to report up to its nonexistent parent!
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002465 */
2466 rcu_report_qs_rsp(rsp, flags);
2467 return;
2468 }
2469
Paul E. McKenney654e9532015-03-15 09:19:35 -07002470 /* Report up the rest of the hierarchy, tracking current ->gpnum. */
2471 gps = rnp->gpnum;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002472 mask = rnp->grpmask;
Boqun Feng67c583a72015-12-29 12:18:47 +08002473 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002474 raw_spin_lock_rcu_node(rnp_p); /* irqs already disabled. */
Paul E. McKenney654e9532015-03-15 09:19:35 -07002475 rcu_report_qs_rnp(mask, rsp, rnp_p, gps, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002476}
2477
2478/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002479 * Record a quiescent state for the specified CPU to that CPU's rcu_data
Paul E. McKenney4b455dc2016-01-27 22:44:45 -08002480 * structure. This must be called from the specified CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002481 */
2482static void
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002483rcu_report_qs_rdp(int cpu, struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002484{
2485 unsigned long flags;
2486 unsigned long mask;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002487 bool needwake;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002488 struct rcu_node *rnp;
2489
2490 rnp = rdp->mynode;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002491 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002492 if ((rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002493 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) ||
2494 rdp->gpnum != rnp->gpnum || rnp->completed == rnp->gpnum ||
2495 rdp->gpwrap) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002496
2497 /*
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -07002498 * The grace period in which this quiescent state was
2499 * recorded has ended, so don't report it upwards.
2500 * We will instead need a new quiescent state that lies
2501 * within the current grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002502 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002503 rdp->cpu_no_qs.b.norm = true; /* need qs for new gp. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002504 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Boqun Feng67c583a72015-12-29 12:18:47 +08002505 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002506 return;
2507 }
2508 mask = rdp->grpmask;
2509 if ((rnp->qsmask & mask) == 0) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002510 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002511 } else {
Paul E. McKenneybb53e412015-12-10 09:30:12 -08002512 rdp->core_needs_qs = false;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002513
2514 /*
2515 * This GP can't end until cpu checks in, so all of our
2516 * callbacks can be processed during the next GP.
2517 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002518 needwake = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002519
Paul E. McKenney654e9532015-03-15 09:19:35 -07002520 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
2521 /* ^^^ Released rnp->lock */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002522 if (needwake)
2523 rcu_gp_kthread_wake(rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002524 }
2525}
2526
2527/*
2528 * Check to see if there is a new grace period of which this CPU
2529 * is not yet aware, and if so, set up local rcu_data state for it.
2530 * Otherwise, see if this CPU has just passed through its first
2531 * quiescent state for this grace period, and record that fact if so.
2532 */
2533static void
2534rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp)
2535{
Paul E. McKenney05eb5522013-03-19 12:38:24 -07002536 /* Check for grace-period ends and beginnings. */
2537 note_gp_changes(rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002538
2539 /*
2540 * Does this CPU still need to do its part for current grace period?
2541 * If no, return and let the other CPUs do their part as well.
2542 */
Paul E. McKenney97c668b2015-08-06 11:31:51 -07002543 if (!rdp->core_needs_qs)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002544 return;
2545
2546 /*
2547 * Was there a quiescent state since the beginning of the grace
2548 * period? If no, then exit and wait for the next call.
2549 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002550 if (rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002551 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002552 return;
2553
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002554 /*
2555 * Tell RCU we are done (but rcu_report_qs_rdp() will be the
2556 * judge of that).
2557 */
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002558 rcu_report_qs_rdp(rdp->cpu, rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002559}
2560
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002561/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002562 * Send the specified CPU's RCU callbacks to the orphanage. The
2563 * specified CPU must be offline, and the caller must hold the
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002564 * ->orphan_lock.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002565 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002566static void
2567rcu_send_cbs_to_orphanage(int cpu, struct rcu_state *rsp,
2568 struct rcu_node *rnp, struct rcu_data *rdp)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002569{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002570 /* No-CBs CPUs do not have orphanable callbacks. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002571 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) || rcu_is_nocb_cpu(rdp->cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002572 return;
2573
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002574 /*
2575 * Orphan the callbacks. First adjust the counts. This is safe
Paul E. McKenneyabfd6e52012-09-20 16:59:47 -07002576 * because _rcu_barrier() excludes CPU-hotplug operations, so it
2577 * cannot be running now. Thus no memory barrier is required.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002578 */
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002579 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002580 rsp->qlen_lazy += rdp->qlen_lazy;
2581 rsp->qlen += rdp->qlen;
2582 rdp->n_cbs_orphaned += rdp->qlen;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002583 rdp->qlen_lazy = 0;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002584 WRITE_ONCE(rdp->qlen, 0);
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002585 }
2586
2587 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002588 * Next, move those callbacks still needing a grace period to
2589 * the orphanage, where some other CPU will pick them up.
2590 * Some of the callbacks might have gone partway through a grace
2591 * period, but that is too bad. They get to start over because we
2592 * cannot assume that grace periods are synchronized across CPUs.
2593 * We don't bother updating the ->nxttail[] array yet, instead
2594 * we just reset the whole thing later on.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002595 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002596 if (*rdp->nxttail[RCU_DONE_TAIL] != NULL) {
2597 *rsp->orphan_nxttail = *rdp->nxttail[RCU_DONE_TAIL];
2598 rsp->orphan_nxttail = rdp->nxttail[RCU_NEXT_TAIL];
2599 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002600 }
2601
2602 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002603 * Then move the ready-to-invoke callbacks to the orphanage,
2604 * where some other CPU will pick them up. These will not be
2605 * required to pass though another grace period: They are done.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002606 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002607 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002608 *rsp->orphan_donetail = rdp->nxtlist;
2609 rsp->orphan_donetail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneye5601402012-01-07 11:03:57 -08002610 }
Lai Jiangshan29494be2010-10-20 14:13:06 +08002611
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002612 /*
2613 * Finally, initialize the rcu_data structure's list to empty and
2614 * disallow further callbacks on this CPU.
2615 */
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07002616 init_callback_list(rdp);
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002617 rdp->nxttail[RCU_NEXT_TAIL] = NULL;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002618}
2619
2620/*
2621 * Adopt the RCU callbacks from the specified rcu_state structure's
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002622 * orphanage. The caller must hold the ->orphan_lock.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002623 */
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002624static void rcu_adopt_orphan_cbs(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002625{
2626 int i;
Christoph Lameterfa07a582014-04-15 12:20:12 -07002627 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002628
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002629 /* No-CBs CPUs are handled specially. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002630 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2631 rcu_nocb_adopt_orphan_cbs(rsp, rdp, flags))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002632 return;
2633
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002634 /* Do the accounting first. */
2635 rdp->qlen_lazy += rsp->qlen_lazy;
2636 rdp->qlen += rsp->qlen;
2637 rdp->n_cbs_adopted += rsp->qlen;
Paul E. McKenney8f5af6f2012-05-04 08:31:53 -07002638 if (rsp->qlen_lazy != rsp->qlen)
2639 rcu_idle_count_callbacks_posted();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002640 rsp->qlen_lazy = 0;
2641 rsp->qlen = 0;
2642
2643 /*
2644 * We do not need a memory barrier here because the only way we
2645 * can get here if there is an rcu_barrier() in flight is if
2646 * we are the task doing the rcu_barrier().
2647 */
2648
2649 /* First adopt the ready-to-invoke callbacks. */
2650 if (rsp->orphan_donelist != NULL) {
2651 *rsp->orphan_donetail = *rdp->nxttail[RCU_DONE_TAIL];
2652 *rdp->nxttail[RCU_DONE_TAIL] = rsp->orphan_donelist;
2653 for (i = RCU_NEXT_SIZE - 1; i >= RCU_DONE_TAIL; i--)
2654 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2655 rdp->nxttail[i] = rsp->orphan_donetail;
2656 rsp->orphan_donelist = NULL;
2657 rsp->orphan_donetail = &rsp->orphan_donelist;
2658 }
2659
2660 /* And then adopt the callbacks that still need a grace period. */
2661 if (rsp->orphan_nxtlist != NULL) {
2662 *rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxtlist;
2663 rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxttail;
2664 rsp->orphan_nxtlist = NULL;
2665 rsp->orphan_nxttail = &rsp->orphan_nxtlist;
2666 }
2667}
2668
2669/*
2670 * Trace the fact that this CPU is going offline.
2671 */
2672static void rcu_cleanup_dying_cpu(struct rcu_state *rsp)
2673{
2674 RCU_TRACE(unsigned long mask);
2675 RCU_TRACE(struct rcu_data *rdp = this_cpu_ptr(rsp->rda));
2676 RCU_TRACE(struct rcu_node *rnp = rdp->mynode);
2677
Paul E. McKenneyea463512015-03-03 14:05:26 -08002678 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2679 return;
2680
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002681 RCU_TRACE(mask = rdp->grpmask);
Paul E. McKenneye5601402012-01-07 11:03:57 -08002682 trace_rcu_grace_period(rsp->name,
2683 rnp->gpnum + 1 - !!(rnp->qsmask & mask),
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002684 TPS("cpuofl"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002685}
2686
2687/*
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002688 * All CPUs for the specified rcu_node structure have gone offline,
2689 * and all tasks that were preempted within an RCU read-side critical
2690 * section while running on one of those CPUs have since exited their RCU
2691 * read-side critical section. Some other CPU is reporting this fact with
2692 * the specified rcu_node structure's ->lock held and interrupts disabled.
2693 * This function therefore goes up the tree of rcu_node structures,
2694 * clearing the corresponding bits in the ->qsmaskinit fields. Note that
2695 * the leaf rcu_node structure's ->qsmaskinit field has already been
2696 * updated
2697 *
2698 * This function does check that the specified rcu_node structure has
2699 * all CPUs offline and no blocked tasks, so it is OK to invoke it
2700 * prematurely. That said, invoking it after the fact will cost you
2701 * a needless lock acquisition. So once it has done its work, don't
2702 * invoke it again.
2703 */
2704static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf)
2705{
2706 long mask;
2707 struct rcu_node *rnp = rnp_leaf;
2708
Paul E. McKenneyea463512015-03-03 14:05:26 -08002709 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2710 rnp->qsmaskinit || rcu_preempt_has_tasks(rnp))
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002711 return;
2712 for (;;) {
2713 mask = rnp->grpmask;
2714 rnp = rnp->parent;
2715 if (!rnp)
2716 break;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002717 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002718 rnp->qsmaskinit &= ~mask;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002719 rnp->qsmask &= ~mask;
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002720 if (rnp->qsmaskinit) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002721 raw_spin_unlock_rcu_node(rnp);
2722 /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002723 return;
2724 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002725 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002726 }
2727}
2728
2729/*
Paul E. McKenneye5601402012-01-07 11:03:57 -08002730 * The CPU has been completely removed, and some other CPU is reporting
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002731 * this fact from process context. Do the remainder of the cleanup,
2732 * including orphaning the outgoing CPU's RCU callbacks, and also
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07002733 * adopting them. There can only be one CPU hotplug operation at a time,
2734 * so no other CPU can be attempting to update rcu_cpu_kthread_task.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002735 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002736static void rcu_cleanup_dead_cpu(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002737{
Paul E. McKenney2036d942012-01-30 17:02:47 -08002738 unsigned long flags;
Paul E. McKenneye5601402012-01-07 11:03:57 -08002739 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002740 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002741
Paul E. McKenneyea463512015-03-03 14:05:26 -08002742 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2743 return;
2744
Paul E. McKenney2036d942012-01-30 17:02:47 -08002745 /* Adjust any no-longer-needed kthreads. */
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00002746 rcu_boost_kthread_setaffinity(rnp, -1);
Paul E. McKenney2036d942012-01-30 17:02:47 -08002747
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002748 /* Orphan the dead CPU's callbacks, and adopt them if appropriate. */
Paul E. McKenney78043c42015-01-18 17:46:24 -08002749 raw_spin_lock_irqsave(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002750 rcu_send_cbs_to_orphanage(cpu, rsp, rnp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002751 rcu_adopt_orphan_cbs(rsp, flags);
Paul E. McKenneya8f4cba2014-10-31 13:48:41 -07002752 raw_spin_unlock_irqrestore(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002753
Paul E. McKenneycf015372012-06-21 11:26:42 -07002754 WARN_ONCE(rdp->qlen != 0 || rdp->nxtlist != NULL,
2755 "rcu_cleanup_dead_cpu: Callbacks on offline CPU %d: qlen=%lu, nxtlist=%p\n",
2756 cpu, rdp->qlen, rdp->nxtlist);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002757}
2758
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002759/*
2760 * Invoke any RCU callbacks that have made it to the end of their grace
2761 * period. Thottle as specified by rdp->blimit.
2762 */
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002763static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002764{
2765 unsigned long flags;
2766 struct rcu_head *next, *list, **tail;
Eric Dumazet878d7432012-10-18 04:55:36 -07002767 long bl, count, count_lazy;
2768 int i;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002769
Paul E. McKenneydc35c892012-12-03 13:52:00 -08002770 /* If no callbacks are ready, just return. */
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002771 if (!cpu_has_callbacks_ready_to_invoke(rdp)) {
Paul E. McKenney486e2592012-01-06 14:11:30 -08002772 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, 0);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002773 trace_rcu_batch_end(rsp->name, 0, !!READ_ONCE(rdp->nxtlist),
Paul E. McKenney4968c302011-12-07 16:32:40 -08002774 need_resched(), is_idle_task(current),
2775 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002776 return;
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002777 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002778
2779 /*
2780 * Extract the list of ready callbacks, disabling to prevent
2781 * races with call_rcu() from interrupt handlers.
2782 */
2783 local_irq_save(flags);
Paul E. McKenney8146c4e22012-01-10 14:23:29 -08002784 WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002785 bl = rdp->blimit;
Paul E. McKenney486e2592012-01-06 14:11:30 -08002786 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, bl);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002787 list = rdp->nxtlist;
2788 rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL];
2789 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
2790 tail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002791 for (i = RCU_NEXT_SIZE - 1; i >= 0; i--)
2792 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2793 rdp->nxttail[i] = &rdp->nxtlist;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002794 local_irq_restore(flags);
2795
2796 /* Invoke callbacks. */
Paul E. McKenney486e2592012-01-06 14:11:30 -08002797 count = count_lazy = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002798 while (list) {
2799 next = list->next;
2800 prefetch(next);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -04002801 debug_rcu_head_unqueue(list);
Paul E. McKenney486e2592012-01-06 14:11:30 -08002802 if (__rcu_reclaim(rsp->name, list))
2803 count_lazy++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002804 list = next;
Paul E. McKenneydff16722011-11-29 15:57:13 -08002805 /* Stop only if limit reached and CPU has something to do. */
2806 if (++count >= bl &&
2807 (need_resched() ||
2808 (!is_idle_task(current) && !rcu_is_callbacks_kthread())))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002809 break;
2810 }
2811
2812 local_irq_save(flags);
Paul E. McKenney4968c302011-12-07 16:32:40 -08002813 trace_rcu_batch_end(rsp->name, count, !!list, need_resched(),
2814 is_idle_task(current),
2815 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002816
2817 /* Update count, and requeue any remaining callbacks. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002818 if (list != NULL) {
2819 *tail = rdp->nxtlist;
2820 rdp->nxtlist = list;
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002821 for (i = 0; i < RCU_NEXT_SIZE; i++)
2822 if (&rdp->nxtlist == rdp->nxttail[i])
2823 rdp->nxttail[i] = tail;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002824 else
2825 break;
2826 }
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002827 smp_mb(); /* List handling before counting for rcu_barrier(). */
2828 rdp->qlen_lazy -= count_lazy;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002829 WRITE_ONCE(rdp->qlen, rdp->qlen - count);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002830 rdp->n_cbs_invoked += count;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002831
2832 /* Reinstate batch limit if we have worked down the excess. */
2833 if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark)
2834 rdp->blimit = blimit;
2835
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002836 /* Reset ->qlen_last_fqs_check trigger if enough CBs have drained. */
2837 if (rdp->qlen == 0 && rdp->qlen_last_fqs_check != 0) {
2838 rdp->qlen_last_fqs_check = 0;
2839 rdp->n_force_qs_snap = rsp->n_force_qs;
2840 } else if (rdp->qlen < rdp->qlen_last_fqs_check - qhimark)
2841 rdp->qlen_last_fqs_check = rdp->qlen;
Paul E. McKenneycfca9272012-06-25 12:54:17 -07002842 WARN_ON_ONCE((rdp->nxtlist == NULL) != (rdp->qlen == 0));
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002843
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002844 local_irq_restore(flags);
2845
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002846 /* Re-invoke RCU core processing if there are callbacks remaining. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002847 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002848 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002849}
2850
2851/*
2852 * Check to see if this CPU is in a non-context-switch quiescent state
2853 * (user mode or idle loop for rcu, non-softirq execution for rcu_bh).
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002854 * Also schedule RCU core processing.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002855 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002856 * This function must be called from hardirq context. It is normally
Paul E. McKenney5403d362016-09-01 05:04:24 -07002857 * invoked from the scheduling-clock interrupt.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002858 */
Paul E. McKenneyc3377c2d2014-10-21 07:53:02 -07002859void rcu_check_callbacks(int user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002860{
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002861 trace_rcu_utilization(TPS("Start scheduler-tick"));
Paul E. McKenneya858af22012-01-16 13:29:10 -08002862 increment_cpu_stall_ticks();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002863 if (user || rcu_is_cpu_rrupt_from_idle()) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002864
2865 /*
2866 * Get here if this CPU took its interrupt from user
2867 * mode or from the idle loop, and if this is not a
2868 * nested interrupt. In this case, the CPU is in
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002869 * a quiescent state, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002870 *
2871 * No memory barrier is required here because both
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002872 * rcu_sched_qs() and rcu_bh_qs() reference only CPU-local
2873 * variables that other CPUs neither access nor modify,
2874 * at least not while the corresponding CPU is online.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002875 */
2876
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002877 rcu_sched_qs();
2878 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002879
2880 } else if (!in_softirq()) {
2881
2882 /*
2883 * Get here if this CPU did not take its interrupt from
2884 * softirq, in other words, if it is not interrupting
2885 * a rcu_bh read-side critical section. This is an _bh
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002886 * critical section, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002887 */
2888
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002889 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002890 }
Paul E. McKenney86aea0e2014-10-21 08:12:00 -07002891 rcu_preempt_check_callbacks();
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07002892 if (rcu_pending())
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002893 invoke_rcu_core();
Paul E. McKenney8315f422014-06-27 13:42:20 -07002894 if (user)
2895 rcu_note_voluntary_context_switch(current);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002896 trace_rcu_utilization(TPS("End scheduler-tick"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002897}
2898
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002899/*
2900 * Scan the leaf rcu_node structures, processing dyntick state for any that
2901 * have not yet encountered a quiescent state, using the function specified.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002902 * Also initiate boosting for any threads blocked on the root rcu_node.
2903 *
Paul E. McKenneyee47eb92010-01-04 15:09:07 -08002904 * The caller must have suppressed start of new grace periods.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002905 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002906static void force_qs_rnp(struct rcu_state *rsp,
2907 int (*f)(struct rcu_data *rsp, bool *isidle,
2908 unsigned long *maxj),
2909 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002910{
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002911 int cpu;
2912 unsigned long flags;
2913 unsigned long mask;
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002914 struct rcu_node *rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002915
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002916 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002917 cond_resched_rcu_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002918 mask = 0;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002919 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002920 if (rnp->qsmask == 0) {
Paul E. McKenneya77da142015-03-08 14:52:27 -07002921 if (rcu_state_p == &rcu_sched_state ||
2922 rsp != rcu_state_p ||
2923 rcu_preempt_blocked_readers_cgp(rnp)) {
2924 /*
2925 * No point in scanning bits because they
2926 * are all zero. But we might need to
2927 * priority-boost blocked readers.
2928 */
2929 rcu_initiate_boost(rnp, flags);
2930 /* rcu_initiate_boost() releases rnp->lock */
2931 continue;
2932 }
2933 if (rnp->parent &&
2934 (rnp->parent->qsmask & rnp->grpmask)) {
2935 /*
2936 * Race between grace-period
2937 * initialization and task exiting RCU
2938 * read-side critical section: Report.
2939 */
2940 rcu_report_unblock_qs_rnp(rsp, rnp, flags);
2941 /* rcu_report_unblock_qs_rnp() rlses ->lock */
2942 continue;
2943 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002944 }
Mark Rutlandbc75e992016-06-03 15:20:04 +01002945 for_each_leaf_node_possible_cpu(rnp, cpu) {
2946 unsigned long bit = leaf_node_cpu_bit(rnp, cpu);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002947 if ((rnp->qsmask & bit) != 0) {
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002948 if (f(per_cpu_ptr(rsp->rda, cpu), isidle, maxj))
2949 mask |= bit;
2950 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002951 }
Paul E. McKenney45f014c52e2010-01-04 15:09:08 -08002952 if (mask != 0) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002953 /* Idle/offline CPUs, report (releases rnp->lock. */
2954 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002955 } else {
2956 /* Nothing to do here, so just drop the lock. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002957 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002958 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002959 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002960}
2961
2962/*
2963 * Force quiescent states on reluctant CPUs, and also detect which
2964 * CPUs are in dyntick-idle mode.
2965 */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002966static void force_quiescent_state(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002967{
2968 unsigned long flags;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002969 bool ret;
2970 struct rcu_node *rnp;
2971 struct rcu_node *rnp_old = NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002972
Paul E. McKenney394f2762012-06-26 17:00:35 -07002973 /* Funnel through hierarchy to reduce memory contention. */
Shan Weid860d402014-06-19 14:12:44 -07002974 rnp = __this_cpu_read(rsp->rda->mynode);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002975 for (; rnp != NULL; rnp = rnp->parent) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002976 ret = (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) ||
Paul E. McKenney394f2762012-06-26 17:00:35 -07002977 !raw_spin_trylock(&rnp->fqslock);
2978 if (rnp_old != NULL)
2979 raw_spin_unlock(&rnp_old->fqslock);
2980 if (ret) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002981 rsp->n_force_qs_lh++;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002982 return;
2983 }
2984 rnp_old = rnp;
2985 }
2986 /* rnp_old == rcu_get_root(rsp), rnp == NULL. */
2987
2988 /* Reached the root of the rcu_node tree, acquire lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002989 raw_spin_lock_irqsave_rcu_node(rnp_old, flags);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002990 raw_spin_unlock(&rnp_old->fqslock);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002991 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002992 rsp->n_force_qs_lh++;
Boqun Feng67c583a72015-12-29 12:18:47 +08002993 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002994 return; /* Someone beat us to it. */
Paul E. McKenney46a1e342010-01-04 15:09:09 -08002995 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002996 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002997 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Jisheng Zhang94d44772016-06-22 17:19:27 +08002998 rcu_gp_kthread_wake(rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002999}
3000
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003001/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003002 * This does the RCU core processing work for the specified rcu_state
3003 * and rcu_data structures. This may be called only from the CPU to
3004 * whom the rdp belongs.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003005 */
3006static void
Paul E. McKenney1bca8cf2012-06-12 09:40:38 -07003007__rcu_process_callbacks(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003008{
3009 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07003010 bool needwake;
Christoph Lameterfa07a582014-04-15 12:20:12 -07003011 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003012
Paul E. McKenney2e597552009-08-15 09:53:48 -07003013 WARN_ON_ONCE(rdp->beenonline == 0);
3014
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003015 /* Update RCU state based on any recent quiescent states. */
3016 rcu_check_quiescent_state(rsp, rdp);
3017
3018 /* Does this CPU require a not-yet-started grace period? */
Paul E. McKenneydc35c892012-12-03 13:52:00 -08003019 local_irq_save(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003020 if (cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003021 raw_spin_lock_rcu_node(rcu_get_root(rsp)); /* irqs disabled. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07003022 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003023 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003024 if (needwake)
3025 rcu_gp_kthread_wake(rsp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08003026 } else {
3027 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003028 }
3029
3030 /* If there are callbacks ready, invoke them. */
Shaohua Li09223372011-06-14 13:26:25 +08003031 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003032 invoke_rcu_callbacks(rsp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07003033
3034 /* Do any needed deferred wakeups of rcuo kthreads. */
3035 do_nocb_deferred_wakeup(rdp);
Shaohua Li09223372011-06-14 13:26:25 +08003036}
3037
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003038/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003039 * Do RCU core processing for the current CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003040 */
Emese Revfy0766f782016-06-20 20:42:34 +02003041static __latent_entropy void rcu_process_callbacks(struct softirq_action *unused)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003042{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003043 struct rcu_state *rsp;
3044
Paul E. McKenneybfa00b42012-06-21 09:54:10 -07003045 if (cpu_is_offline(smp_processor_id()))
3046 return;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003047 trace_rcu_utilization(TPS("Start RCU core"));
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003048 for_each_rcu_flavor(rsp)
3049 __rcu_process_callbacks(rsp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003050 trace_rcu_utilization(TPS("End RCU core"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003051}
3052
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003053/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003054 * Schedule RCU callback invocation. If the specified type of RCU
3055 * does not support RCU priority boosting, just do a direct call,
3056 * otherwise wake up the per-CPU kernel kthread. Note that because we
Paul E. McKenney924df8a2014-10-29 15:37:58 -07003057 * are running on the current CPU with softirqs disabled, the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003058 * rcu_cpu_kthread_task cannot disappear out from under us.
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003059 */
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003060static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003061{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003062 if (unlikely(!READ_ONCE(rcu_scheduler_fully_active)))
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07003063 return;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003064 if (likely(!rsp->boost)) {
3065 rcu_do_batch(rsp, rdp);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003066 return;
3067 }
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003068 invoke_rcu_callbacks_kthread();
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003069}
3070
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003071static void invoke_rcu_core(void)
Shaohua Li09223372011-06-14 13:26:25 +08003072{
Paul E. McKenneyb0f74032013-02-04 12:14:24 -08003073 if (cpu_online(smp_processor_id()))
3074 raise_softirq(RCU_SOFTIRQ);
Shaohua Li09223372011-06-14 13:26:25 +08003075}
3076
Paul E. McKenney29154c52012-05-30 03:21:48 -07003077/*
3078 * Handle any core-RCU processing required by a call_rcu() invocation.
3079 */
3080static void __call_rcu_core(struct rcu_state *rsp, struct rcu_data *rdp,
3081 struct rcu_head *head, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003082{
Paul E. McKenney48a76392014-03-11 13:02:16 -07003083 bool needwake;
3084
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003085 /*
Paul E. McKenney29154c52012-05-30 03:21:48 -07003086 * If called from an extended quiescent state, invoke the RCU
3087 * core in order to force a re-evaluation of RCU's idleness.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003088 */
Yao Dongdong9910aff2015-02-25 17:09:46 +08003089 if (!rcu_is_watching())
Paul E. McKenney29154c52012-05-30 03:21:48 -07003090 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003091
Paul E. McKenney29154c52012-05-30 03:21:48 -07003092 /* If interrupts were disabled or CPU offline, don't invoke RCU core. */
3093 if (irqs_disabled_flags(flags) || cpu_is_offline(smp_processor_id()))
Paul E. McKenney2655d572011-04-07 22:47:23 -07003094 return;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003095
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003096 /*
3097 * Force the grace period if too many callbacks or too long waiting.
3098 * Enforce hysteresis, and don't invoke force_quiescent_state()
3099 * if some other CPU has recently done so. Also, don't bother
3100 * invoking force_quiescent_state() if the newly enqueued callback
3101 * is the only one waiting for a grace period to complete.
3102 */
Paul E. McKenney2655d572011-04-07 22:47:23 -07003103 if (unlikely(rdp->qlen > rdp->qlen_last_fqs_check + qhimark)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003104
3105 /* Are we ignoring a completed grace period? */
Paul E. McKenney470716f2013-03-19 11:32:11 -07003106 note_gp_changes(rsp, rdp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003107
3108 /* Start a new grace period if one not already started. */
3109 if (!rcu_gp_in_progress(rsp)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003110 struct rcu_node *rnp_root = rcu_get_root(rsp);
3111
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003112 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003113 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003114 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003115 if (needwake)
3116 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003117 } else {
3118 /* Give the grace period a kick. */
3119 rdp->blimit = LONG_MAX;
3120 if (rsp->n_force_qs == rdp->n_force_qs_snap &&
3121 *rdp->nxttail[RCU_DONE_TAIL] != head)
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07003122 force_quiescent_state(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003123 rdp->n_force_qs_snap = rsp->n_force_qs;
3124 rdp->qlen_last_fqs_check = rdp->qlen;
3125 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07003126 }
Paul E. McKenney29154c52012-05-30 03:21:48 -07003127}
3128
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003129/*
Paul E. McKenneyae150182013-04-23 13:20:57 -07003130 * RCU callback function to leak a callback.
3131 */
3132static void rcu_leak_callback(struct rcu_head *rhp)
3133{
3134}
3135
3136/*
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003137 * Helper function for call_rcu() and friends. The cpu argument will
3138 * normally be -1, indicating "currently running CPU". It may specify
3139 * a CPU only if that CPU is a no-CBs CPU. Currently, only _rcu_barrier()
3140 * is expected to specify a CPU.
3141 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003142static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003143__call_rcu(struct rcu_head *head, rcu_callback_t func,
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003144 struct rcu_state *rsp, int cpu, bool lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003145{
3146 unsigned long flags;
3147 struct rcu_data *rdp;
3148
Paul E. McKenneyb8f2ed52016-08-23 06:51:47 -07003149 /* Misaligned rcu_head! */
3150 WARN_ON_ONCE((unsigned long)head & (sizeof(void *) - 1));
3151
Paul E. McKenneyae150182013-04-23 13:20:57 -07003152 if (debug_rcu_head_queue(head)) {
3153 /* Probable double call_rcu(), so leak the callback. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003154 WRITE_ONCE(head->func, rcu_leak_callback);
Paul E. McKenneyae150182013-04-23 13:20:57 -07003155 WARN_ONCE(1, "__call_rcu(): Leaked duplicate callback\n");
3156 return;
3157 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003158 head->func = func;
3159 head->next = NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003160 local_irq_save(flags);
3161 rdp = this_cpu_ptr(rsp->rda);
3162
3163 /* Add the callback to our list. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003164 if (unlikely(rdp->nxttail[RCU_NEXT_TAIL] == NULL) || cpu != -1) {
3165 int offline;
3166
3167 if (cpu != -1)
3168 rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003169 if (likely(rdp->mynode)) {
3170 /* Post-boot, so this should be for a no-CBs CPU. */
3171 offline = !__call_rcu_nocb(rdp, head, lazy, flags);
3172 WARN_ON_ONCE(offline);
3173 /* Offline CPU, _call_rcu() illegal, leak callback. */
3174 local_irq_restore(flags);
3175 return;
3176 }
3177 /*
3178 * Very early boot, before rcu_init(). Initialize if needed
3179 * and then drop through to queue the callback.
3180 */
3181 BUG_ON(cpu != -1);
Paul E. McKenney34404ca2015-01-19 20:39:20 -08003182 WARN_ON_ONCE(!rcu_is_watching());
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003183 if (!likely(rdp->nxtlist))
3184 init_default_callback_list(rdp);
Paul E. McKenney0d8ee372012-08-03 13:16:15 -07003185 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003186 WRITE_ONCE(rdp->qlen, rdp->qlen + 1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003187 if (lazy)
3188 rdp->qlen_lazy++;
3189 else
3190 rcu_idle_count_callbacks_posted();
3191 smp_mb(); /* Count before adding callback for rcu_barrier(). */
3192 *rdp->nxttail[RCU_NEXT_TAIL] = head;
3193 rdp->nxttail[RCU_NEXT_TAIL] = &head->next;
3194
3195 if (__is_kfree_rcu_offset((unsigned long)func))
3196 trace_rcu_kfree_callback(rsp->name, head, (unsigned long)func,
3197 rdp->qlen_lazy, rdp->qlen);
3198 else
3199 trace_rcu_callback(rsp->name, head, rdp->qlen_lazy, rdp->qlen);
3200
Paul E. McKenney29154c52012-05-30 03:21:48 -07003201 /* Go handle any RCU core processing required. */
3202 __call_rcu_core(rsp, rdp, head, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003203 local_irq_restore(flags);
3204}
3205
3206/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003207 * Queue an RCU-sched callback for invocation after a grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003208 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003209void call_rcu_sched(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003210{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003211 __call_rcu(head, func, &rcu_sched_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003212}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003213EXPORT_SYMBOL_GPL(call_rcu_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003214
3215/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08003216 * Queue an RCU callback for invocation after a quicker grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003217 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003218void call_rcu_bh(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003219{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003220 __call_rcu(head, func, &rcu_bh_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003221}
3222EXPORT_SYMBOL_GPL(call_rcu_bh);
3223
Paul E. McKenney6d813392012-02-23 13:30:16 -08003224/*
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003225 * Queue an RCU callback for lazy invocation after a grace period.
3226 * This will likely be later named something like "call_rcu_lazy()",
3227 * but this change will require some way of tagging the lazy RCU
3228 * callbacks in the list of pending callbacks. Until then, this
3229 * function may only be called from __kfree_rcu().
3230 */
3231void kfree_call_rcu(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003232 rcu_callback_t func)
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003233{
Uma Sharmae5341652014-03-23 22:32:09 -07003234 __call_rcu(head, func, rcu_state_p, -1, 1);
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003235}
3236EXPORT_SYMBOL_GPL(kfree_call_rcu);
3237
3238/*
Paul E. McKenney6d813392012-02-23 13:30:16 -08003239 * Because a context switch is a grace period for RCU-sched and RCU-bh,
3240 * any blocking grace-period wait automatically implies a grace period
3241 * if there is only one CPU online at any point time during execution
3242 * of either synchronize_sched() or synchronize_rcu_bh(). It is OK to
3243 * occasionally incorrectly indicate that there are multiple CPUs online
3244 * when there was in fact only one the whole time, as this just adds
3245 * some overhead: RCU still operates correctly.
Paul E. McKenney6d813392012-02-23 13:30:16 -08003246 */
3247static inline int rcu_blocking_is_gp(void)
3248{
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003249 int ret;
3250
Paul E. McKenney6d813392012-02-23 13:30:16 -08003251 might_sleep(); /* Check for RCU read-side critical section. */
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003252 preempt_disable();
3253 ret = num_online_cpus() <= 1;
3254 preempt_enable();
3255 return ret;
Paul E. McKenney6d813392012-02-23 13:30:16 -08003256}
3257
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003258/**
3259 * synchronize_sched - wait until an rcu-sched grace period has elapsed.
3260 *
3261 * Control will return to the caller some time after a full rcu-sched
3262 * grace period has elapsed, in other words after all currently executing
3263 * rcu-sched read-side critical sections have completed. These read-side
3264 * critical sections are delimited by rcu_read_lock_sched() and
3265 * rcu_read_unlock_sched(), and may be nested. Note that preempt_disable(),
3266 * local_irq_disable(), and so on may be used in place of
3267 * rcu_read_lock_sched().
3268 *
3269 * This means that all preempt_disable code sequences, including NMI and
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003270 * non-threaded hardware-interrupt handlers, in progress on entry will
3271 * have completed before this primitive returns. However, this does not
3272 * guarantee that softirq handlers will have completed, since in some
3273 * kernels, these handlers can run in process context, and can block.
3274 *
3275 * Note that this guarantee implies further memory-ordering guarantees.
3276 * On systems with more than one CPU, when synchronize_sched() returns,
3277 * each CPU is guaranteed to have executed a full memory barrier since the
3278 * end of its last RCU-sched read-side critical section whose beginning
3279 * preceded the call to synchronize_sched(). In addition, each CPU having
3280 * an RCU read-side critical section that extends beyond the return from
3281 * synchronize_sched() is guaranteed to have executed a full memory barrier
3282 * after the beginning of synchronize_sched() and before the beginning of
3283 * that RCU read-side critical section. Note that these guarantees include
3284 * CPUs that are offline, idle, or executing in user mode, as well as CPUs
3285 * that are executing in the kernel.
3286 *
3287 * Furthermore, if CPU A invoked synchronize_sched(), which returned
3288 * to its caller on CPU B, then both CPU A and CPU B are guaranteed
3289 * to have executed a full memory barrier during the execution of
3290 * synchronize_sched() -- even if CPU A and CPU B are the same CPU (but
3291 * again only if the system has more than one CPU).
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003292 *
3293 * This primitive provides the guarantees made by the (now removed)
3294 * synchronize_kernel() API. In contrast, synchronize_rcu() only
3295 * guarantees that rcu_read_lock() sections will have completed.
3296 * In "classic RCU", these two guarantees happen to be one and
3297 * the same, but can differ in realtime RCU implementations.
3298 */
3299void synchronize_sched(void)
3300{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003301 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3302 lock_is_held(&rcu_lock_map) ||
3303 lock_is_held(&rcu_sched_lock_map),
3304 "Illegal synchronize_sched() in RCU-sched read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003305 if (rcu_blocking_is_gp())
3306 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003307 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003308 synchronize_sched_expedited();
3309 else
3310 wait_rcu_gp(call_rcu_sched);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003311}
3312EXPORT_SYMBOL_GPL(synchronize_sched);
3313
3314/**
3315 * synchronize_rcu_bh - wait until an rcu_bh grace period has elapsed.
3316 *
3317 * Control will return to the caller some time after a full rcu_bh grace
3318 * period has elapsed, in other words after all currently executing rcu_bh
3319 * read-side critical sections have completed. RCU read-side critical
3320 * sections are delimited by rcu_read_lock_bh() and rcu_read_unlock_bh(),
3321 * and may be nested.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003322 *
3323 * See the description of synchronize_sched() for more detailed information
3324 * on memory ordering guarantees.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003325 */
3326void synchronize_rcu_bh(void)
3327{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003328 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3329 lock_is_held(&rcu_lock_map) ||
3330 lock_is_held(&rcu_sched_lock_map),
3331 "Illegal synchronize_rcu_bh() in RCU-bh read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003332 if (rcu_blocking_is_gp())
3333 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003334 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003335 synchronize_rcu_bh_expedited();
3336 else
3337 wait_rcu_gp(call_rcu_bh);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003338}
3339EXPORT_SYMBOL_GPL(synchronize_rcu_bh);
3340
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003341/**
3342 * get_state_synchronize_rcu - Snapshot current RCU state
3343 *
3344 * Returns a cookie that is used by a later call to cond_synchronize_rcu()
3345 * to determine whether or not a full grace period has elapsed in the
3346 * meantime.
3347 */
3348unsigned long get_state_synchronize_rcu(void)
3349{
3350 /*
3351 * Any prior manipulation of RCU-protected data must happen
3352 * before the load from ->gpnum.
3353 */
3354 smp_mb(); /* ^^^ */
3355
3356 /*
3357 * Make sure this load happens before the purportedly
3358 * time-consuming work between get_state_synchronize_rcu()
3359 * and cond_synchronize_rcu().
3360 */
Uma Sharmae5341652014-03-23 22:32:09 -07003361 return smp_load_acquire(&rcu_state_p->gpnum);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003362}
3363EXPORT_SYMBOL_GPL(get_state_synchronize_rcu);
3364
3365/**
3366 * cond_synchronize_rcu - Conditionally wait for an RCU grace period
3367 *
3368 * @oldstate: return value from earlier call to get_state_synchronize_rcu()
3369 *
3370 * If a full RCU grace period has elapsed since the earlier call to
3371 * get_state_synchronize_rcu(), just return. Otherwise, invoke
3372 * synchronize_rcu() to wait for a full grace period.
3373 *
3374 * Yes, this function does not take counter wrap into account. But
3375 * counter wrap is harmless. If the counter wraps, we have waited for
3376 * more than 2 billion grace periods (and way more on a 64-bit system!),
3377 * so waiting for one additional grace period should be just fine.
3378 */
3379void cond_synchronize_rcu(unsigned long oldstate)
3380{
3381 unsigned long newstate;
3382
3383 /*
3384 * Ensure that this load happens before any RCU-destructive
3385 * actions the caller might carry out after we return.
3386 */
Uma Sharmae5341652014-03-23 22:32:09 -07003387 newstate = smp_load_acquire(&rcu_state_p->completed);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003388 if (ULONG_CMP_GE(oldstate, newstate))
3389 synchronize_rcu();
3390}
3391EXPORT_SYMBOL_GPL(cond_synchronize_rcu);
3392
Paul E. McKenney24560052015-05-30 10:11:24 -07003393/**
3394 * get_state_synchronize_sched - Snapshot current RCU-sched state
3395 *
3396 * Returns a cookie that is used by a later call to cond_synchronize_sched()
3397 * to determine whether or not a full grace period has elapsed in the
3398 * meantime.
3399 */
3400unsigned long get_state_synchronize_sched(void)
3401{
3402 /*
3403 * Any prior manipulation of RCU-protected data must happen
3404 * before the load from ->gpnum.
3405 */
3406 smp_mb(); /* ^^^ */
3407
3408 /*
3409 * Make sure this load happens before the purportedly
3410 * time-consuming work between get_state_synchronize_sched()
3411 * and cond_synchronize_sched().
3412 */
3413 return smp_load_acquire(&rcu_sched_state.gpnum);
3414}
3415EXPORT_SYMBOL_GPL(get_state_synchronize_sched);
3416
3417/**
3418 * cond_synchronize_sched - Conditionally wait for an RCU-sched grace period
3419 *
3420 * @oldstate: return value from earlier call to get_state_synchronize_sched()
3421 *
3422 * If a full RCU-sched grace period has elapsed since the earlier call to
3423 * get_state_synchronize_sched(), just return. Otherwise, invoke
3424 * synchronize_sched() to wait for a full grace period.
3425 *
3426 * Yes, this function does not take counter wrap into account. But
3427 * counter wrap is harmless. If the counter wraps, we have waited for
3428 * more than 2 billion grace periods (and way more on a 64-bit system!),
3429 * so waiting for one additional grace period should be just fine.
3430 */
3431void cond_synchronize_sched(unsigned long oldstate)
3432{
3433 unsigned long newstate;
3434
3435 /*
3436 * Ensure that this load happens before any RCU-destructive
3437 * actions the caller might carry out after we return.
3438 */
3439 newstate = smp_load_acquire(&rcu_sched_state.completed);
3440 if (ULONG_CMP_GE(oldstate, newstate))
3441 synchronize_sched();
3442}
3443EXPORT_SYMBOL_GPL(cond_synchronize_sched);
3444
Paul E. McKenney28f00762015-06-25 15:00:58 -07003445/* Adjust sequence number for start of update-side operation. */
3446static void rcu_seq_start(unsigned long *sp)
3447{
3448 WRITE_ONCE(*sp, *sp + 1);
3449 smp_mb(); /* Ensure update-side operation after counter increment. */
3450 WARN_ON_ONCE(!(*sp & 0x1));
3451}
3452
3453/* Adjust sequence number for end of update-side operation. */
3454static void rcu_seq_end(unsigned long *sp)
3455{
3456 smp_mb(); /* Ensure update-side operation before counter increment. */
3457 WRITE_ONCE(*sp, *sp + 1);
3458 WARN_ON_ONCE(*sp & 0x1);
3459}
3460
3461/* Take a snapshot of the update side's sequence number. */
3462static unsigned long rcu_seq_snap(unsigned long *sp)
3463{
3464 unsigned long s;
3465
Paul E. McKenney28f00762015-06-25 15:00:58 -07003466 s = (READ_ONCE(*sp) + 3) & ~0x1;
3467 smp_mb(); /* Above access must not bleed into critical section. */
3468 return s;
3469}
3470
3471/*
3472 * Given a snapshot from rcu_seq_snap(), determine whether or not a
3473 * full update-side operation has occurred.
3474 */
3475static bool rcu_seq_done(unsigned long *sp, unsigned long s)
3476{
3477 return ULONG_CMP_GE(READ_ONCE(*sp), s);
3478}
3479
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003480/*
3481 * Check to see if there is any immediate RCU-related work to be done
3482 * by the current CPU, for the specified type of RCU, returning 1 if so.
3483 * The checks are in order of increasing expense: checks that can be
3484 * carried out against CPU-local state are performed first. However,
3485 * we must check for CPU stalls first, else we might not get a chance.
3486 */
3487static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
3488{
Paul E. McKenney2f51f982009-11-13 19:51:39 -08003489 struct rcu_node *rnp = rdp->mynode;
3490
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003491 rdp->n_rcu_pending++;
3492
3493 /* Check for CPU stalls, if enabled. */
3494 check_cpu_stall(rsp, rdp);
3495
Paul E. McKenneya0969322013-11-08 09:03:10 -08003496 /* Is this CPU a NO_HZ_FULL CPU that should ignore RCU? */
3497 if (rcu_nohz_full_cpu(rsp))
3498 return 0;
3499
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003500 /* Is the RCU core waiting for a quiescent state from this CPU? */
Paul E. McKenney5c51dd72011-08-04 06:59:03 -07003501 if (rcu_scheduler_fully_active &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003502 rdp->core_needs_qs && rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003503 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) {
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003504 rdp->n_rp_core_needs_qs++;
3505 } else if (rdp->core_needs_qs &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003506 (!rdp->cpu_no_qs.b.norm ||
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003507 rdp->rcu_qs_ctr_snap != __this_cpu_read(rcu_qs_ctr))) {
Paul E. McKenneyd21670a2010-04-14 17:39:26 -07003508 rdp->n_rp_report_qs++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003509 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003510 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003511
3512 /* Does this CPU have callbacks ready to invoke? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003513 if (cpu_has_callbacks_ready_to_invoke(rdp)) {
3514 rdp->n_rp_cb_ready++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003515 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003516 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003517
3518 /* Has RCU gone idle with this CPU needing another grace period? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003519 if (cpu_needs_another_gp(rsp, rdp)) {
3520 rdp->n_rp_cpu_needs_gp++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003521 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003522 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003523
3524 /* Has another RCU grace period completed? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003525 if (READ_ONCE(rnp->completed) != rdp->completed) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003526 rdp->n_rp_gp_completed++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003527 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003528 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003529
3530 /* Has a new RCU grace period started? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003531 if (READ_ONCE(rnp->gpnum) != rdp->gpnum ||
3532 unlikely(READ_ONCE(rdp->gpwrap))) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003533 rdp->n_rp_gp_started++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003534 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003535 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003536
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07003537 /* Does this CPU need a deferred NOCB wakeup? */
3538 if (rcu_nocb_need_deferred_wakeup(rdp)) {
3539 rdp->n_rp_nocb_defer_wakeup++;
3540 return 1;
3541 }
3542
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003543 /* nothing to do */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003544 rdp->n_rp_need_nothing++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003545 return 0;
3546}
3547
3548/*
3549 * Check to see if there is any immediate RCU-related work to be done
3550 * by the current CPU, returning 1 if so. This function is part of the
3551 * RCU implementation; it is -not- an exported member of the RCU API.
3552 */
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003553static int rcu_pending(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003554{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003555 struct rcu_state *rsp;
3556
3557 for_each_rcu_flavor(rsp)
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003558 if (__rcu_pending(rsp, this_cpu_ptr(rsp->rda)))
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003559 return 1;
3560 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003561}
3562
3563/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003564 * Return true if the specified CPU has any callback. If all_lazy is
3565 * non-NULL, store an indication of whether all callbacks are lazy.
3566 * (If there are no callbacks, all of them are deemed to be lazy.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003567 */
Nicholas Mc Guire82072c42015-05-11 18:12:27 +02003568static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003569{
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003570 bool al = true;
3571 bool hc = false;
3572 struct rcu_data *rdp;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003573 struct rcu_state *rsp;
3574
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003575 for_each_rcu_flavor(rsp) {
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07003576 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003577 if (!rdp->nxtlist)
3578 continue;
3579 hc = true;
3580 if (rdp->qlen != rdp->qlen_lazy || !all_lazy) {
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003581 al = false;
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003582 break;
3583 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003584 }
3585 if (all_lazy)
3586 *all_lazy = al;
3587 return hc;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003588}
3589
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003590/*
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003591 * Helper function for _rcu_barrier() tracing. If tracing is disabled,
3592 * the compiler is expected to optimize this away.
3593 */
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04003594static void _rcu_barrier_trace(struct rcu_state *rsp, const char *s,
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003595 int cpu, unsigned long done)
3596{
3597 trace_rcu_barrier(rsp->name, s, cpu,
3598 atomic_read(&rsp->barrier_cpu_count), done);
3599}
3600
3601/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003602 * RCU callback function for _rcu_barrier(). If we are last, wake
3603 * up the task executing _rcu_barrier().
3604 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003605static void rcu_barrier_callback(struct rcu_head *rhp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003606{
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003607 struct rcu_data *rdp = container_of(rhp, struct rcu_data, barrier_head);
3608 struct rcu_state *rsp = rdp->rsp;
3609
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003610 if (atomic_dec_and_test(&rsp->barrier_cpu_count)) {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003611 _rcu_barrier_trace(rsp, "LastCB", -1, rsp->barrier_sequence);
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003612 complete(&rsp->barrier_completion);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003613 } else {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003614 _rcu_barrier_trace(rsp, "CB", -1, rsp->barrier_sequence);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003615 }
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003616}
3617
3618/*
3619 * Called with preemption disabled, and from cross-cpu IRQ context.
3620 */
3621static void rcu_barrier_func(void *type)
3622{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003623 struct rcu_state *rsp = type;
Christoph Lameterfa07a582014-04-15 12:20:12 -07003624 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003625
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003626 _rcu_barrier_trace(rsp, "IRQ", -1, rsp->barrier_sequence);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003627 atomic_inc(&rsp->barrier_cpu_count);
Paul E. McKenney06668ef2012-05-28 23:57:46 -07003628 rsp->call(&rdp->barrier_head, rcu_barrier_callback);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003629}
3630
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003631/*
3632 * Orchestrate the specified type of RCU barrier, waiting for all
3633 * RCU callbacks of the specified type to complete.
3634 */
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003635static void _rcu_barrier(struct rcu_state *rsp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003636{
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003637 int cpu;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003638 struct rcu_data *rdp;
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003639 unsigned long s = rcu_seq_snap(&rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003640
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003641 _rcu_barrier_trace(rsp, "Begin", -1, s);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003642
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07003643 /* Take mutex to serialize concurrent rcu_barrier() requests. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003644 mutex_lock(&rsp->barrier_mutex);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003645
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003646 /* Did someone else do our work for us? */
3647 if (rcu_seq_done(&rsp->barrier_sequence, s)) {
3648 _rcu_barrier_trace(rsp, "EarlyExit", -1, rsp->barrier_sequence);
Paul E. McKenneycf3a9c42012-05-29 14:56:46 -07003649 smp_mb(); /* caller's subsequent code after above check. */
3650 mutex_unlock(&rsp->barrier_mutex);
3651 return;
3652 }
3653
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003654 /* Mark the start of the barrier operation. */
3655 rcu_seq_start(&rsp->barrier_sequence);
3656 _rcu_barrier_trace(rsp, "Inc1", -1, rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003657
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003658 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003659 * Initialize the count to one rather than to zero in order to
3660 * avoid a too-soon return to zero in case of a short grace period
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003661 * (or preemption of this task). Exclude CPU-hotplug operations
3662 * to ensure that no offline CPU has callbacks queued.
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003663 */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003664 init_completion(&rsp->barrier_completion);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003665 atomic_set(&rsp->barrier_cpu_count, 1);
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003666 get_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003667
3668 /*
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003669 * Force each CPU with callbacks to register a new callback.
3670 * When that callback is invoked, we will know that all of the
3671 * corresponding CPU's preceding callbacks have been invoked.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003672 */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003673 for_each_possible_cpu(cpu) {
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003674 if (!cpu_online(cpu) && !rcu_is_nocb_cpu(cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003675 continue;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003676 rdp = per_cpu_ptr(rsp->rda, cpu);
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003677 if (rcu_is_nocb_cpu(cpu)) {
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003678 if (!rcu_nocb_cpu_needs_barrier(rsp, cpu)) {
3679 _rcu_barrier_trace(rsp, "OfflineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003680 rsp->barrier_sequence);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003681 } else {
3682 _rcu_barrier_trace(rsp, "OnlineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003683 rsp->barrier_sequence);
Paul E. McKenney41050a02014-12-18 12:31:27 -08003684 smp_mb__before_atomic();
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003685 atomic_inc(&rsp->barrier_cpu_count);
3686 __call_rcu(&rdp->barrier_head,
3687 rcu_barrier_callback, rsp, cpu, 0);
3688 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003689 } else if (READ_ONCE(rdp->qlen)) {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003690 _rcu_barrier_trace(rsp, "OnlineQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003691 rsp->barrier_sequence);
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003692 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003693 } else {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003694 _rcu_barrier_trace(rsp, "OnlineNQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003695 rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003696 }
3697 }
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003698 put_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003699
3700 /*
3701 * Now that we have an rcu_barrier_callback() callback on each
3702 * CPU, and thus each counted, remove the initial count.
3703 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003704 if (atomic_dec_and_test(&rsp->barrier_cpu_count))
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003705 complete(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003706
3707 /* Wait for all rcu_barrier_callback() callbacks to be invoked. */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003708 wait_for_completion(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003709
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003710 /* Mark the end of the barrier operation. */
3711 _rcu_barrier_trace(rsp, "Inc2", -1, rsp->barrier_sequence);
3712 rcu_seq_end(&rsp->barrier_sequence);
3713
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003714 /* Other rcu_barrier() invocations can now safely proceed. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003715 mutex_unlock(&rsp->barrier_mutex);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003716}
3717
3718/**
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003719 * rcu_barrier_bh - Wait until all in-flight call_rcu_bh() callbacks complete.
3720 */
3721void rcu_barrier_bh(void)
3722{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003723 _rcu_barrier(&rcu_bh_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003724}
3725EXPORT_SYMBOL_GPL(rcu_barrier_bh);
3726
3727/**
3728 * rcu_barrier_sched - Wait for in-flight call_rcu_sched() callbacks.
3729 */
3730void rcu_barrier_sched(void)
3731{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003732 _rcu_barrier(&rcu_sched_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003733}
3734EXPORT_SYMBOL_GPL(rcu_barrier_sched);
3735
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003736/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003737 * Propagate ->qsinitmask bits up the rcu_node tree to account for the
3738 * first CPU in a given leaf rcu_node structure coming online. The caller
3739 * must hold the corresponding leaf rcu_node ->lock with interrrupts
3740 * disabled.
3741 */
3742static void rcu_init_new_rnp(struct rcu_node *rnp_leaf)
3743{
3744 long mask;
3745 struct rcu_node *rnp = rnp_leaf;
3746
3747 for (;;) {
3748 mask = rnp->grpmask;
3749 rnp = rnp->parent;
3750 if (rnp == NULL)
3751 return;
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003752 raw_spin_lock_rcu_node(rnp); /* Interrupts already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003753 rnp->qsmaskinit |= mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003754 raw_spin_unlock_rcu_node(rnp); /* Interrupts remain disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003755 }
3756}
3757
3758/*
Paul E. McKenney27569622009-08-15 09:53:46 -07003759 * Do boot-time initialization of a CPU's per-CPU RCU data.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003760 */
Paul E. McKenney27569622009-08-15 09:53:46 -07003761static void __init
3762rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003763{
3764 unsigned long flags;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003765 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07003766 struct rcu_node *rnp = rcu_get_root(rsp);
3767
3768 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003769 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Mark Rutlandbc75e992016-06-03 15:20:04 +01003770 rdp->grpmask = leaf_node_cpu_bit(rdp->mynode, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07003771 rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003772 WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07003773 WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
Paul E. McKenney27569622009-08-15 09:53:46 -07003774 rdp->cpu = cpu;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07003775 rdp->rsp = rsp;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003776 rcu_boot_init_nocb_percpu_data(rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003777 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07003778}
3779
3780/*
3781 * Initialize a CPU's per-CPU RCU data. Note that only one online or
3782 * offline event can be happening at a given time. Note also that we
3783 * can accept some slop in the rsp->completed access due to the fact
3784 * that this CPU cannot possibly have any RCU callbacks in flight yet.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003785 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04003786static void
Iulia Manda9b671222014-03-11 13:18:22 +02003787rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003788{
3789 unsigned long flags;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003790 unsigned long mask;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003791 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003792 struct rcu_node *rnp = rcu_get_root(rsp);
3793
3794 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003795 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003796 rdp->qlen_last_fqs_check = 0;
3797 rdp->n_force_qs_snap = rsp->n_force_qs;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003798 rdp->blimit = blimit;
Paul E. McKenney39c8d312015-01-20 23:42:38 -08003799 if (!rdp->nxtlist)
3800 init_callback_list(rdp); /* Re-enable callbacks on this CPU. */
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003801 rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Paul E. McKenney23332102013-06-21 12:34:33 -07003802 rcu_sysidle_init_percpu_data(rdp->dynticks);
Paul E. McKenneyc92b1312011-11-23 13:38:58 -08003803 atomic_set(&rdp->dynticks->dynticks,
3804 (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
Boqun Feng67c583a72015-12-29 12:18:47 +08003805 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003806
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003807 /*
3808 * Add CPU to leaf rcu_node pending-online bitmask. Any needed
3809 * propagation up the rcu_node tree will happen at the beginning
3810 * of the next grace period.
3811 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003812 rnp = rdp->mynode;
3813 mask = rdp->grpmask;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003814 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003815 if (!rdp->beenonline)
3816 WRITE_ONCE(rsp->ncpus, READ_ONCE(rsp->ncpus) + 1);
3817 rdp->beenonline = true; /* We have now been online. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003818 rdp->gpnum = rnp->completed; /* Make CPU later note any new GP. */
3819 rdp->completed = rnp->completed;
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003820 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenneya738eec2015-03-10 14:53:29 -07003821 rdp->rcu_qs_ctr_snap = per_cpu(rcu_qs_ctr, cpu);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003822 rdp->core_needs_qs = false;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003823 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuonl"));
Boqun Feng67c583a72015-12-29 12:18:47 +08003824 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003825}
3826
Thomas Gleixner4df83742016-07-13 17:17:03 +00003827int rcutree_prepare_cpu(unsigned int cpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003828{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003829 struct rcu_state *rsp;
3830
3831 for_each_rcu_flavor(rsp)
Iulia Manda9b671222014-03-11 13:18:22 +02003832 rcu_init_percpu_data(cpu, rsp);
Thomas Gleixner4df83742016-07-13 17:17:03 +00003833
3834 rcu_prepare_kthreads(cpu);
3835 rcu_spawn_all_nocb_kthreads(cpu);
3836
3837 return 0;
3838}
3839
3840static void rcutree_affinity_setting(unsigned int cpu, int outgoing)
3841{
3842 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
3843
3844 rcu_boost_kthread_setaffinity(rdp->mynode, outgoing);
3845}
3846
3847int rcutree_online_cpu(unsigned int cpu)
3848{
3849 sync_sched_exp_online_cleanup(cpu);
3850 rcutree_affinity_setting(cpu, -1);
3851 return 0;
3852}
3853
3854int rcutree_offline_cpu(unsigned int cpu)
3855{
3856 rcutree_affinity_setting(cpu, cpu);
3857 return 0;
3858}
3859
3860
3861int rcutree_dying_cpu(unsigned int cpu)
3862{
3863 struct rcu_state *rsp;
3864
3865 for_each_rcu_flavor(rsp)
3866 rcu_cleanup_dying_cpu(rsp);
3867 return 0;
3868}
3869
3870int rcutree_dead_cpu(unsigned int cpu)
3871{
3872 struct rcu_state *rsp;
3873
3874 for_each_rcu_flavor(rsp) {
3875 rcu_cleanup_dead_cpu(cpu, rsp);
3876 do_nocb_deferred_wakeup(per_cpu_ptr(rsp->rda, cpu));
3877 }
3878 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003879}
3880
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07003881/*
3882 * Mark the specified CPU as being online so that subsequent grace periods
3883 * (both expedited and normal) will wait on it. Note that this means that
3884 * incoming CPUs are not allowed to use RCU read-side critical sections
3885 * until this function is called. Failing to observe this restriction
3886 * will result in lockdep splats.
3887 */
3888void rcu_cpu_starting(unsigned int cpu)
3889{
3890 unsigned long flags;
3891 unsigned long mask;
3892 struct rcu_data *rdp;
3893 struct rcu_node *rnp;
3894 struct rcu_state *rsp;
3895
3896 for_each_rcu_flavor(rsp) {
3897 rdp = this_cpu_ptr(rsp->rda);
3898 rnp = rdp->mynode;
3899 mask = rdp->grpmask;
3900 raw_spin_lock_irqsave_rcu_node(rnp, flags);
3901 rnp->qsmaskinitnext |= mask;
3902 rnp->expmaskinitnext |= mask;
3903 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
3904 }
3905}
3906
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003907#ifdef CONFIG_HOTPLUG_CPU
3908/*
3909 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3910 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3911 * bit masks.
Linus Torvalds710d60c2016-03-15 13:50:29 -07003912 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3913 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3914 * bit masks.
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003915 */
3916static void rcu_cleanup_dying_idle_cpu(int cpu, struct rcu_state *rsp)
3917{
3918 unsigned long flags;
3919 unsigned long mask;
3920 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
3921 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
3922
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003923 /* Remove outgoing CPU from mask in the leaf rcu_node structure. */
3924 mask = rdp->grpmask;
3925 raw_spin_lock_irqsave_rcu_node(rnp, flags); /* Enforce GP memory-order guarantee. */
3926 rnp->qsmaskinitnext &= ~mask;
Linus Torvalds710d60c2016-03-15 13:50:29 -07003927 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003928}
3929
3930void rcu_report_dead(unsigned int cpu)
3931{
3932 struct rcu_state *rsp;
3933
3934 /* QS for any half-done expedited RCU-sched GP. */
3935 preempt_disable();
3936 rcu_report_exp_rdp(&rcu_sched_state,
3937 this_cpu_ptr(rcu_sched_state.rda), true);
3938 preempt_enable();
3939 for_each_rcu_flavor(rsp)
3940 rcu_cleanup_dying_idle_cpu(cpu, rsp);
3941}
3942#endif
3943
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003944static int rcu_pm_notify(struct notifier_block *self,
3945 unsigned long action, void *hcpu)
3946{
3947 switch (action) {
3948 case PM_HIBERNATION_PREPARE:
3949 case PM_SUSPEND_PREPARE:
3950 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
Paul E. McKenney5afff482015-02-18 16:39:09 -08003951 rcu_expedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003952 break;
3953 case PM_POST_HIBERNATION:
3954 case PM_POST_SUSPEND:
Paul E. McKenney5afff482015-02-18 16:39:09 -08003955 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
3956 rcu_unexpedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003957 break;
3958 default:
3959 break;
3960 }
3961 return NOTIFY_OK;
3962}
3963
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003964/*
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003965 * Spawn the kthreads that handle each RCU flavor's grace periods.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003966 */
3967static int __init rcu_spawn_gp_kthread(void)
3968{
3969 unsigned long flags;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003970 int kthread_prio_in = kthread_prio;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003971 struct rcu_node *rnp;
3972 struct rcu_state *rsp;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003973 struct sched_param sp;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003974 struct task_struct *t;
3975
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003976 /* Force priority into range. */
3977 if (IS_ENABLED(CONFIG_RCU_BOOST) && kthread_prio < 1)
3978 kthread_prio = 1;
3979 else if (kthread_prio < 0)
3980 kthread_prio = 0;
3981 else if (kthread_prio > 99)
3982 kthread_prio = 99;
3983 if (kthread_prio != kthread_prio_in)
3984 pr_alert("rcu_spawn_gp_kthread(): Limited prio to %d from %d\n",
3985 kthread_prio, kthread_prio_in);
3986
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003987 rcu_scheduler_fully_active = 1;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003988 for_each_rcu_flavor(rsp) {
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003989 t = kthread_create(rcu_gp_kthread, rsp, "%s", rsp->name);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003990 BUG_ON(IS_ERR(t));
3991 rnp = rcu_get_root(rsp);
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003992 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003993 rsp->gp_kthread = t;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003994 if (kthread_prio) {
3995 sp.sched_priority = kthread_prio;
3996 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
3997 }
Boqun Feng67c583a72015-12-29 12:18:47 +08003998 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Peter Zijlstrae11f1332015-11-04 08:22:05 -08003999 wake_up_process(t);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004000 }
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07004001 rcu_spawn_nocb_kthreads();
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07004002 rcu_spawn_boost_kthreads();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004003 return 0;
4004}
4005early_initcall(rcu_spawn_gp_kthread);
4006
4007/*
Paul E. McKenney52d7e482017-01-10 02:28:26 -08004008 * This function is invoked towards the end of the scheduler's
4009 * initialization process. Before this is called, the idle task might
4010 * contain synchronous grace-period primitives (during which time, this idle
4011 * task is booting the system, and such primitives are no-ops). After this
4012 * function is called, any synchronous grace-period primitives are run as
4013 * expedited, with the requesting task driving the grace period forward.
4014 * A later core_initcall() rcu_exp_runtime_mode() will switch to full
4015 * runtime RCU functionality.
Paul E. McKenneybbad9372010-04-02 16:17:17 -07004016 */
4017void rcu_scheduler_starting(void)
4018{
4019 WARN_ON(num_online_cpus() != 1);
4020 WARN_ON(nr_context_switches() > 0);
Paul E. McKenney52d7e482017-01-10 02:28:26 -08004021 rcu_test_sync_prims();
4022 rcu_scheduler_active = RCU_SCHEDULER_INIT;
4023 rcu_test_sync_prims();
Paul E. McKenneybbad9372010-04-02 16:17:17 -07004024}
4025
4026/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004027 * Compute the per-level fanout, either using the exact fanout specified
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004028 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004029 */
Alexander Gordeev199977b2015-06-03 08:18:29 +02004030static void __init rcu_init_levelspread(int *levelspread, const int *levelcnt)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004031{
4032 int i;
4033
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004034 if (rcu_fanout_exact) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004035 levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
Paul E. McKenney66292402015-01-19 19:16:38 -08004036 for (i = rcu_num_lvls - 2; i >= 0; i--)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004037 levelspread[i] = RCU_FANOUT;
Paul E. McKenney66292402015-01-19 19:16:38 -08004038 } else {
4039 int ccur;
4040 int cprv;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004041
Paul E. McKenney66292402015-01-19 19:16:38 -08004042 cprv = nr_cpu_ids;
4043 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004044 ccur = levelcnt[i];
4045 levelspread[i] = (cprv + ccur - 1) / ccur;
Paul E. McKenney66292402015-01-19 19:16:38 -08004046 cprv = ccur;
4047 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004048 }
4049}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004050
4051/*
4052 * Helper function for rcu_init() that initializes one rcu_state structure.
4053 */
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004054static void __init rcu_init_one(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004055{
Alexander Gordeevcb007102015-06-03 08:18:30 +02004056 static const char * const buf[] = RCU_NODE_NAME_INIT;
4057 static const char * const fqs[] = RCU_FQS_NAME_INIT;
Paul E. McKenney3dc5dbe2015-09-26 14:51:24 -07004058 static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
4059 static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004060 static u8 fl_mask = 0x1;
Alexander Gordeev199977b2015-06-03 08:18:29 +02004061
4062 int levelcnt[RCU_NUM_LVLS]; /* # nodes in each level. */
4063 int levelspread[RCU_NUM_LVLS]; /* kids/node in each level. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004064 int cpustride = 1;
4065 int i;
4066 int j;
4067 struct rcu_node *rnp;
4068
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004069 BUILD_BUG_ON(RCU_NUM_LVLS > ARRAY_SIZE(buf)); /* Fix buf[] init! */
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004070
Paul E. McKenney3eaaaf6c2015-03-09 16:51:17 -07004071 /* Silence gcc 4.8 false positive about array index out of range. */
4072 if (rcu_num_lvls <= 0 || rcu_num_lvls > RCU_NUM_LVLS)
4073 panic("rcu_init_one: rcu_num_lvls out of range");
Paul E. McKenney49305212012-11-29 13:49:00 -08004074
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004075 /* Initialize the level-tracking arrays. */
4076
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004077 for (i = 0; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004078 levelcnt[i] = num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004079 for (i = 1; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004080 rsp->level[i] = rsp->level[i - 1] + levelcnt[i - 1];
4081 rcu_init_levelspread(levelspread, levelcnt);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004082 rsp->flavor_mask = fl_mask;
4083 fl_mask <<= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004084
4085 /* Initialize the elements themselves, starting from the leaves. */
4086
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004087 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004088 cpustride *= levelspread[i];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004089 rnp = rsp->level[i];
Alexander Gordeev199977b2015-06-03 08:18:29 +02004090 for (j = 0; j < levelcnt[i]; j++, rnp++) {
Boqun Feng67c583a72015-12-29 12:18:47 +08004091 raw_spin_lock_init(&ACCESS_PRIVATE(rnp, lock));
4092 lockdep_set_class_and_name(&ACCESS_PRIVATE(rnp, lock),
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004093 &rcu_node_class[i], buf[i]);
Paul E. McKenney394f2762012-06-26 17:00:35 -07004094 raw_spin_lock_init(&rnp->fqslock);
4095 lockdep_set_class_and_name(&rnp->fqslock,
4096 &rcu_fqs_class[i], fqs[i]);
Paul E. McKenney25d30cf2012-07-11 05:23:18 -07004097 rnp->gpnum = rsp->gpnum;
4098 rnp->completed = rsp->completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004099 rnp->qsmask = 0;
4100 rnp->qsmaskinit = 0;
4101 rnp->grplo = j * cpustride;
4102 rnp->grphi = (j + 1) * cpustride - 1;
Himangi Saraogi595f3902014-03-18 22:52:26 +05304103 if (rnp->grphi >= nr_cpu_ids)
4104 rnp->grphi = nr_cpu_ids - 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004105 if (i == 0) {
4106 rnp->grpnum = 0;
4107 rnp->grpmask = 0;
4108 rnp->parent = NULL;
4109 } else {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004110 rnp->grpnum = j % levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004111 rnp->grpmask = 1UL << rnp->grpnum;
4112 rnp->parent = rsp->level[i - 1] +
Alexander Gordeev199977b2015-06-03 08:18:29 +02004113 j / levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004114 }
4115 rnp->level = i;
Paul E. McKenney12f5f522010-11-29 21:56:39 -08004116 INIT_LIST_HEAD(&rnp->blkd_tasks);
Paul E. McKenneydae6e642013-02-10 20:48:58 -08004117 rcu_init_one_nocb(rnp);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004118 init_waitqueue_head(&rnp->exp_wq[0]);
4119 init_waitqueue_head(&rnp->exp_wq[1]);
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07004120 init_waitqueue_head(&rnp->exp_wq[2]);
4121 init_waitqueue_head(&rnp->exp_wq[3]);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004122 spin_lock_init(&rnp->exp_lock);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004123 }
4124 }
Lai Jiangshan0c340292010-03-28 11:12:30 +08004125
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01004126 init_swait_queue_head(&rsp->gp_wq);
4127 init_swait_queue_head(&rsp->expedited_wq);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004128 rnp = rsp->level[rcu_num_lvls - 1];
Lai Jiangshan0c340292010-03-28 11:12:30 +08004129 for_each_possible_cpu(i) {
Paul E. McKenney4a90a062010-04-14 16:48:11 -07004130 while (i > rnp->grphi)
Lai Jiangshan0c340292010-03-28 11:12:30 +08004131 rnp++;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004132 per_cpu_ptr(rsp->rda, i)->mynode = rnp;
Lai Jiangshan0c340292010-03-28 11:12:30 +08004133 rcu_boot_init_percpu_data(i, rsp);
4134 }
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004135 list_add(&rsp->flavors, &rcu_struct_flavors);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004136}
4137
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004138/*
4139 * Compute the rcu_node tree geometry from kernel parameters. This cannot
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004140 * replace the definitions in tree.h because those are needed to size
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004141 * the ->node array in the rcu_state structure.
4142 */
4143static void __init rcu_init_geometry(void)
4144{
Paul E. McKenney026ad282013-04-03 22:14:11 -07004145 ulong d;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004146 int i;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004147 int rcu_capacity[RCU_NUM_LVLS];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004148
Paul E. McKenney026ad282013-04-03 22:14:11 -07004149 /*
4150 * Initialize any unspecified boot parameters.
4151 * The default values of jiffies_till_first_fqs and
4152 * jiffies_till_next_fqs are set to the RCU_JIFFIES_TILL_FORCE_QS
4153 * value, which is a function of HZ, then adding one for each
4154 * RCU_JIFFIES_FQS_DIV CPUs that might be on the system.
4155 */
4156 d = RCU_JIFFIES_TILL_FORCE_QS + nr_cpu_ids / RCU_JIFFIES_FQS_DIV;
4157 if (jiffies_till_first_fqs == ULONG_MAX)
4158 jiffies_till_first_fqs = d;
4159 if (jiffies_till_next_fqs == ULONG_MAX)
4160 jiffies_till_next_fqs = d;
4161
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004162 /* If the compile-time values are accurate, just leave. */
Paul E. McKenney47d631a2015-04-21 09:12:13 -07004163 if (rcu_fanout_leaf == RCU_FANOUT_LEAF &&
Paul E. McKenneyb17c7032012-09-06 15:38:02 -07004164 nr_cpu_ids == NR_CPUS)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004165 return;
Paul E. McKenney39479092013-10-09 15:20:33 -07004166 pr_info("RCU: Adjusting geometry for rcu_fanout_leaf=%d, nr_cpu_ids=%d\n",
4167 rcu_fanout_leaf, nr_cpu_ids);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004168
4169 /*
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004170 * The boot-time rcu_fanout_leaf parameter must be at least two
4171 * and cannot exceed the number of bits in the rcu_node masks.
4172 * Complain and fall back to the compile-time values if this
4173 * limit is exceeded.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004174 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004175 if (rcu_fanout_leaf < 2 ||
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004176 rcu_fanout_leaf > sizeof(unsigned long) * 8) {
Paul E. McKenney13bd64942015-06-04 10:06:01 -07004177 rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004178 WARN_ON(1);
4179 return;
4180 }
4181
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004182 /*
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004183 * Compute number of nodes that can be handled an rcu_node tree
Alexander Gordeev96181382015-06-03 08:18:26 +02004184 * with the given number of levels.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004185 */
Alexander Gordeev96181382015-06-03 08:18:26 +02004186 rcu_capacity[0] = rcu_fanout_leaf;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004187 for (i = 1; i < RCU_NUM_LVLS; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004188 rcu_capacity[i] = rcu_capacity[i - 1] * RCU_FANOUT;
4189
4190 /*
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004191 * The tree must be able to accommodate the configured number of CPUs.
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004192 * If this limit is exceeded, fall back to the compile-time values.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004193 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004194 if (nr_cpu_ids > rcu_capacity[RCU_NUM_LVLS - 1]) {
4195 rcu_fanout_leaf = RCU_FANOUT_LEAF;
4196 WARN_ON(1);
4197 return;
4198 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004199
Alexander Gordeev679f9852015-06-03 08:18:25 +02004200 /* Calculate the number of levels in the tree. */
Alexander Gordeev96181382015-06-03 08:18:26 +02004201 for (i = 0; nr_cpu_ids > rcu_capacity[i]; i++) {
Alexander Gordeev679f9852015-06-03 08:18:25 +02004202 }
Alexander Gordeev96181382015-06-03 08:18:26 +02004203 rcu_num_lvls = i + 1;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004204
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004205 /* Calculate the number of rcu_nodes at each level of the tree. */
Alexander Gordeev679f9852015-06-03 08:18:25 +02004206 for (i = 0; i < rcu_num_lvls; i++) {
Alexander Gordeev96181382015-06-03 08:18:26 +02004207 int cap = rcu_capacity[(rcu_num_lvls - 1) - i];
Alexander Gordeev679f9852015-06-03 08:18:25 +02004208 num_rcu_lvl[i] = DIV_ROUND_UP(nr_cpu_ids, cap);
4209 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004210
4211 /* Calculate the total number of rcu_node structures. */
4212 rcu_num_nodes = 0;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004213 for (i = 0; i < rcu_num_lvls; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004214 rcu_num_nodes += num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004215}
4216
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004217/*
4218 * Dump out the structure of the rcu_node combining tree associated
4219 * with the rcu_state structure referenced by rsp.
4220 */
4221static void __init rcu_dump_rcu_node_tree(struct rcu_state *rsp)
4222{
4223 int level = 0;
4224 struct rcu_node *rnp;
4225
4226 pr_info("rcu_node tree layout dump\n");
4227 pr_info(" ");
4228 rcu_for_each_node_breadth_first(rsp, rnp) {
4229 if (rnp->level != level) {
4230 pr_cont("\n");
4231 pr_info(" ");
4232 level = rnp->level;
4233 }
4234 pr_cont("%d:%d ^%d ", rnp->grplo, rnp->grphi, rnp->grpnum);
4235 }
4236 pr_cont("\n");
4237}
4238
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004239void __init rcu_init(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004240{
Paul E. McKenney017c4262010-01-14 16:10:58 -08004241 int cpu;
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004242
Paul E. McKenney47627672015-01-19 21:10:21 -08004243 rcu_early_boot_tests();
4244
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004245 rcu_bootup_announce();
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004246 rcu_init_geometry();
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004247 rcu_init_one(&rcu_bh_state);
4248 rcu_init_one(&rcu_sched_state);
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004249 if (dump_tree)
4250 rcu_dump_rcu_node_tree(&rcu_sched_state);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004251 __rcu_init_preempt();
Jiang Fangb5b39362013-02-02 14:13:42 -08004252 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004253
4254 /*
4255 * We don't need protection against CPU-hotplug here because
4256 * this is called early in boot, before either interrupts
4257 * or the scheduler are operational.
4258 */
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004259 pm_notifier(rcu_pm_notify, 0);
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07004260 for_each_online_cpu(cpu) {
Thomas Gleixner4df83742016-07-13 17:17:03 +00004261 rcutree_prepare_cpu(cpu);
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07004262 rcu_cpu_starting(cpu);
4263 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004264}
4265
Paul E. McKenney3549c2b2016-04-15 16:35:29 -07004266#include "tree_exp.h"
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004267#include "tree_plugin.h"