blob: 7fd74ef51a2b45305f62c3e486d5daa465a3537a [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. */
Channagoud Kadabi2eada802017-03-10 16:30:47 -0800127int sysctl_panic_on_rcu_stall __read_mostly = CONFIG_RCU_PANIC_ON_STALL;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700128
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700129/*
Paul E. McKenney90687fc2017-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. McKenney90687fc2017-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. McKenneyfc2219d2009-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. McKenneyfc2219d2009-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. McKenney5cd37192014-12-13 20:32:04 -0800284DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, rcu_qs_ctr);
285EXPORT_PER_CPU_SYMBOL_GPL(rcu_qs_ctr);
286
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700287/*
288 * Let the RCU core know that this CPU has gone through the scheduler,
289 * which is a quiescent state. This is called when the need for a
290 * quiescent state is urgent, so we burn an atomic operation and full
291 * memory barriers to let the RCU core know about it, regardless of what
292 * this CPU might (or might not) do in the near future.
293 *
294 * We inform the RCU core by emulating a zero-duration dyntick-idle
295 * period, which we in turn do by incrementing the ->dynticks counter
296 * by two.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700297 *
298 * The caller must have disabled interrupts.
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700299 */
300static void rcu_momentary_dyntick_idle(void)
301{
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700302 struct rcu_data *rdp;
303 struct rcu_dynticks *rdtp;
304 int resched_mask;
305 struct rcu_state *rsp;
306
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700307 /*
308 * Yes, we can lose flag-setting operations. This is OK, because
309 * the flag will be set again after some delay.
310 */
311 resched_mask = raw_cpu_read(rcu_sched_qs_mask);
312 raw_cpu_write(rcu_sched_qs_mask, 0);
313
314 /* Find the flavor that needs a quiescent state. */
315 for_each_rcu_flavor(rsp) {
316 rdp = raw_cpu_ptr(rsp->rda);
317 if (!(resched_mask & rsp->flavor_mask))
318 continue;
319 smp_mb(); /* rcu_sched_qs_mask before cond_resched_completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800320 if (READ_ONCE(rdp->mynode->completed) !=
321 READ_ONCE(rdp->cond_resched_completed))
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700322 continue;
323
324 /*
325 * Pretend to be momentarily idle for the quiescent state.
326 * This allows the grace-period kthread to record the
327 * quiescent state, with no need for this CPU to do anything
328 * further.
329 */
330 rdtp = this_cpu_ptr(&rcu_dynticks);
331 smp_mb__before_atomic(); /* Earlier stuff before QS. */
332 atomic_add(2, &rdtp->dynticks); /* QS. */
333 smp_mb__after_atomic(); /* Later stuff after QS. */
334 break;
335 }
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700336}
337
Paul E. McKenney25502a62010-04-01 17:37:01 -0700338/*
339 * Note a context switch. This is a quiescent state for RCU-sched,
340 * and requires special handling for preemptible RCU.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700341 * The caller must have disabled interrupts.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700342 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700343void rcu_note_context_switch(void)
Paul E. McKenney25502a62010-04-01 17:37:01 -0700344{
Boqun Fengbb73c522015-07-30 16:55:38 -0700345 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400346 trace_rcu_utilization(TPS("Start context switch"));
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700347 rcu_sched_qs();
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700348 rcu_preempt_note_context_switch();
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700349 if (unlikely(raw_cpu_read(rcu_sched_qs_mask)))
350 rcu_momentary_dyntick_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400351 trace_rcu_utilization(TPS("End context switch"));
Boqun Fengbb73c522015-07-30 16:55:38 -0700352 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney25502a62010-04-01 17:37:01 -0700353}
Gleb Natapov29ce8312011-05-04 16:31:03 +0300354EXPORT_SYMBOL_GPL(rcu_note_context_switch);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700355
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800356/*
Paul E. McKenney1925d192015-01-18 17:45:05 -0800357 * Register a quiescent state for all RCU flavors. If there is an
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800358 * emergency, invoke rcu_momentary_dyntick_idle() to do a heavy-weight
359 * dyntick-idle quiescent state visible to other CPUs (but only for those
Paul E. McKenney1925d192015-01-18 17:45:05 -0800360 * RCU flavors in desperate need of a quiescent state, which will normally
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800361 * be none of them). Either way, do a lightweight quiescent state for
362 * all RCU flavors.
Boqun Fengbb73c522015-07-30 16:55:38 -0700363 *
364 * The barrier() calls are redundant in the common case when this is
365 * called externally, but just in case this is called from within this
366 * file.
367 *
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800368 */
369void rcu_all_qs(void)
370{
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700371 unsigned long flags;
372
Boqun Fengbb73c522015-07-30 16:55:38 -0700373 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700374 if (unlikely(raw_cpu_read(rcu_sched_qs_mask))) {
375 local_irq_save(flags);
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800376 rcu_momentary_dyntick_idle();
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700377 local_irq_restore(flags);
378 }
Paul E. McKenneya1e12242016-01-13 13:57:54 -0800379 if (unlikely(raw_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))) {
380 /*
381 * Yes, we just checked a per-CPU variable with preemption
382 * enabled, so we might be migrated to some other CPU at
383 * this point. That is OK because in that case, the
384 * migration will supply the needed quiescent state.
385 * We might end up needlessly disabling preemption and
386 * invoking rcu_sched_qs() on the destination CPU, but
387 * the probability and cost are both quite low, so this
388 * should not be a problem in practice.
389 */
390 preempt_disable();
391 rcu_sched_qs();
392 preempt_enable();
393 }
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800394 this_cpu_inc(rcu_qs_ctr);
Boqun Fengbb73c522015-07-30 16:55:38 -0700395 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800396}
397EXPORT_SYMBOL_GPL(rcu_all_qs);
398
Eric Dumazet878d7432012-10-18 04:55:36 -0700399static long blimit = 10; /* Maximum callbacks per rcu_do_batch. */
400static long qhimark = 10000; /* If this many pending, ignore blimit. */
401static long qlowmark = 100; /* Once only this many pending, use blimit. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100402
Eric Dumazet878d7432012-10-18 04:55:36 -0700403module_param(blimit, long, 0444);
404module_param(qhimark, long, 0444);
405module_param(qlowmark, long, 0444);
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700406
Paul E. McKenney026ad282013-04-03 22:14:11 -0700407static ulong jiffies_till_first_fqs = ULONG_MAX;
408static ulong jiffies_till_next_fqs = ULONG_MAX;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800409static bool rcu_kick_kthreads;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700410
411module_param(jiffies_till_first_fqs, ulong, 0644);
412module_param(jiffies_till_next_fqs, ulong, 0644);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800413module_param(rcu_kick_kthreads, bool, 0644);
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700414
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700415/*
416 * How long the grace period must be before we start recruiting
417 * quiescent-state help from rcu_note_context_switch().
418 */
419static ulong jiffies_till_sched_qs = HZ / 20;
420module_param(jiffies_till_sched_qs, ulong, 0644);
421
Paul E. McKenney48a76392014-03-11 13:02:16 -0700422static bool rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenney910ee452012-12-31 02:24:21 -0800423 struct rcu_data *rdp);
Paul E. McKenney217af2a2013-06-21 15:39:06 -0700424static void force_qs_rnp(struct rcu_state *rsp,
425 int (*f)(struct rcu_data *rsp, bool *isidle,
426 unsigned long *maxj),
427 bool *isidle, unsigned long *maxj);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -0700428static void force_quiescent_state(struct rcu_state *rsp);
Paul E. McKenneye3950ec2014-10-21 08:03:57 -0700429static int rcu_pending(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100430
431/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800432 * Return the number of RCU batches started thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100433 */
Paul E. McKenney917963d2014-11-21 17:10:16 -0800434unsigned long rcu_batches_started(void)
435{
436 return rcu_state_p->gpnum;
437}
438EXPORT_SYMBOL_GPL(rcu_batches_started);
439
440/*
441 * Return the number of RCU-sched batches started thus far for debug & stats.
442 */
443unsigned long rcu_batches_started_sched(void)
444{
445 return rcu_sched_state.gpnum;
446}
447EXPORT_SYMBOL_GPL(rcu_batches_started_sched);
448
449/*
450 * Return the number of RCU BH batches started thus far for debug & stats.
451 */
452unsigned long rcu_batches_started_bh(void)
453{
454 return rcu_bh_state.gpnum;
455}
456EXPORT_SYMBOL_GPL(rcu_batches_started_bh);
457
458/*
459 * Return the number of RCU batches completed thus far for debug & stats.
460 */
461unsigned long rcu_batches_completed(void)
462{
463 return rcu_state_p->completed;
464}
465EXPORT_SYMBOL_GPL(rcu_batches_completed);
466
467/*
468 * Return the number of RCU-sched batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100469 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800470unsigned long rcu_batches_completed_sched(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100471{
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700472 return rcu_sched_state.completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100473}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700474EXPORT_SYMBOL_GPL(rcu_batches_completed_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100475
476/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800477 * Return the number of RCU BH batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100478 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800479unsigned long rcu_batches_completed_bh(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100480{
481 return rcu_bh_state.completed;
482}
483EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
484
485/*
Paul E. McKenney291783b2016-01-12 13:43:30 -0800486 * Return the number of RCU expedited batches completed thus far for
487 * debug & stats. Odd numbers mean that a batch is in progress, even
488 * numbers mean idle. The value returned will thus be roughly double
489 * the cumulative batches since boot.
490 */
491unsigned long rcu_exp_batches_completed(void)
492{
493 return rcu_state_p->expedited_sequence;
494}
495EXPORT_SYMBOL_GPL(rcu_exp_batches_completed);
496
497/*
498 * Return the number of RCU-sched expedited batches completed thus far
499 * for debug & stats. Similar to rcu_exp_batches_completed().
500 */
501unsigned long rcu_exp_batches_completed_sched(void)
502{
503 return rcu_sched_state.expedited_sequence;
504}
505EXPORT_SYMBOL_GPL(rcu_exp_batches_completed_sched);
506
507/*
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200508 * Force a quiescent state.
509 */
510void rcu_force_quiescent_state(void)
511{
Uma Sharmae5341652014-03-23 22:32:09 -0700512 force_quiescent_state(rcu_state_p);
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200513}
514EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
515
516/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800517 * Force a quiescent state for RCU BH.
518 */
519void rcu_bh_force_quiescent_state(void)
520{
Paul E. McKenney4cdfc172012-06-22 17:06:26 -0700521 force_quiescent_state(&rcu_bh_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800522}
523EXPORT_SYMBOL_GPL(rcu_bh_force_quiescent_state);
524
525/*
Paul E. McKenneye7580f32015-02-24 14:23:39 -0800526 * Force a quiescent state for RCU-sched.
527 */
528void rcu_sched_force_quiescent_state(void)
529{
530 force_quiescent_state(&rcu_sched_state);
531}
532EXPORT_SYMBOL_GPL(rcu_sched_force_quiescent_state);
533
534/*
Paul E. McKenneyafea2272014-03-12 07:10:41 -0700535 * Show the state of the grace-period kthreads.
536 */
537void show_rcu_gp_kthreads(void)
538{
539 struct rcu_state *rsp;
540
541 for_each_rcu_flavor(rsp) {
542 pr_info("%s: wait state: %d ->state: %#lx\n",
543 rsp->name, rsp->gp_state, rsp->gp_kthread->state);
544 /* sched_show_task(rsp->gp_kthread); */
545 }
546}
547EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
548
549/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700550 * Record the number of times rcutorture tests have been initiated and
551 * terminated. This information allows the debugfs tracing stats to be
552 * correlated to the rcutorture messages, even when the rcutorture module
553 * is being repeatedly loaded and unloaded. In other words, we cannot
554 * store this state in rcutorture itself.
555 */
556void rcutorture_record_test_transition(void)
557{
558 rcutorture_testseq++;
559 rcutorture_vernum = 0;
560}
561EXPORT_SYMBOL_GPL(rcutorture_record_test_transition);
562
563/*
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800564 * Send along grace-period-related data for rcutorture diagnostics.
565 */
566void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
567 unsigned long *gpnum, unsigned long *completed)
568{
569 struct rcu_state *rsp = NULL;
570
571 switch (test_type) {
572 case RCU_FLAVOR:
Uma Sharmae5341652014-03-23 22:32:09 -0700573 rsp = rcu_state_p;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800574 break;
575 case RCU_BH_FLAVOR:
576 rsp = &rcu_bh_state;
577 break;
578 case RCU_SCHED_FLAVOR:
579 rsp = &rcu_sched_state;
580 break;
581 default:
582 break;
583 }
584 if (rsp != NULL) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800585 *flags = READ_ONCE(rsp->gp_flags);
586 *gpnum = READ_ONCE(rsp->gpnum);
587 *completed = READ_ONCE(rsp->completed);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800588 return;
589 }
590 *flags = 0;
591 *gpnum = 0;
592 *completed = 0;
593}
594EXPORT_SYMBOL_GPL(rcutorture_get_gp_data);
595
596/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700597 * Record the number of writer passes through the current rcutorture test.
598 * This is also used to correlate debugfs tracing stats with the rcutorture
599 * messages.
600 */
601void rcutorture_record_progress(unsigned long vernum)
602{
603 rcutorture_vernum++;
604}
605EXPORT_SYMBOL_GPL(rcutorture_record_progress);
606
607/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100608 * Does the CPU have callbacks ready to be invoked?
609 */
610static int
611cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
612{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700613 return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL] &&
614 rdp->nxttail[RCU_DONE_TAIL] != NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100615}
616
617/*
Paul E. McKenney365187f2014-03-10 10:55:52 -0700618 * Return the root node of the specified rcu_state structure.
619 */
620static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
621{
622 return &rsp->node[0];
623}
624
625/*
626 * Is there any need for future grace periods?
627 * Interrupts must be disabled. If the caller does not hold the root
628 * rnp_node structure's ->lock, the results are advisory only.
629 */
630static int rcu_future_needs_gp(struct rcu_state *rsp)
631{
632 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800633 int idx = (READ_ONCE(rnp->completed) + 1) & 0x1;
Paul E. McKenney365187f2014-03-10 10:55:52 -0700634 int *fp = &rnp->need_future_gp[idx];
635
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800636 return READ_ONCE(*fp);
Paul E. McKenney365187f2014-03-10 10:55:52 -0700637}
638
639/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800640 * Does the current CPU require a not-yet-started grace period?
641 * The caller must have disabled interrupts to prevent races with
642 * normal callback registry.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100643 */
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700644static bool
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100645cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
646{
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800647 int i;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700648
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800649 if (rcu_gp_in_progress(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700650 return false; /* No, a grace period is already in progress. */
Paul E. McKenney365187f2014-03-10 10:55:52 -0700651 if (rcu_future_needs_gp(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700652 return true; /* Yes, a no-CBs CPU needs one. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800653 if (!rdp->nxttail[RCU_NEXT_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700654 return false; /* No, this is a no-CBs (or offline) CPU. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800655 if (*rdp->nxttail[RCU_NEXT_READY_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700656 return true; /* Yes, CPU has newly registered callbacks. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800657 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++)
658 if (rdp->nxttail[i - 1] != rdp->nxttail[i] &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800659 ULONG_CMP_LT(READ_ONCE(rsp->completed),
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800660 rdp->nxtcompleted[i]))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700661 return true; /* Yes, CBs for future grace period. */
662 return false; /* No grace period needed. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100663}
664
665/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700666 * rcu_eqs_enter_common - current CPU is moving towards extended quiescent state
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100667 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700668 * If the new value of the ->dynticks_nesting counter now is zero,
669 * we really have entered idle, and must do the appropriate accounting.
670 * The caller must have disabled interrupts.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100671 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700672static void rcu_eqs_enter_common(long long oldval, bool user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100673{
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700674 struct rcu_state *rsp;
675 struct rcu_data *rdp;
Christoph Lameter28ced792014-09-02 14:13:44 -0700676 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700677
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400678 trace_rcu_dyntick(TPS("Start"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700679 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
680 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700681 struct task_struct *idle __maybe_unused =
682 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700683
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400684 trace_rcu_dyntick(TPS("Error on entry: not idle task"), oldval, 0);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700685 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700686 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
687 current->pid, current->comm,
688 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700689 }
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700690 for_each_rcu_flavor(rsp) {
691 rdp = this_cpu_ptr(rsp->rda);
692 do_nocb_deferred_wakeup(rdp);
693 }
Paul E. McKenney198bbf82014-10-22 15:03:43 -0700694 rcu_prepare_for_idle();
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700695 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100696 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700697 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100698 smp_mb__after_atomic(); /* Force ordering with next sojourn. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700699 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
700 atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700701 rcu_dynticks_task_enter();
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800702
703 /*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700704 * It is illegal to enter an extended quiescent state while
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800705 * in an RCU read-side critical section.
706 */
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700707 RCU_LOCKDEP_WARN(lock_is_held(&rcu_lock_map),
708 "Illegal idle entry in RCU read-side critical section.");
709 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map),
710 "Illegal idle entry in RCU-bh read-side critical section.");
711 RCU_LOCKDEP_WARN(lock_is_held(&rcu_sched_lock_map),
712 "Illegal idle entry in RCU-sched read-side critical section.");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100713}
714
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700715/*
716 * Enter an RCU extended quiescent state, which can be either the
717 * idle loop or adaptive-tickless usermode execution.
718 */
719static void rcu_eqs_enter(bool user)
720{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700721 long long oldval;
722 struct rcu_dynticks *rdtp;
723
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700724 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700725 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700726 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
727 (oldval & DYNTICK_TASK_NEST_MASK) == 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700728 if ((oldval & DYNTICK_TASK_NEST_MASK) == DYNTICK_TASK_NEST_VALUE) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700729 rdtp->dynticks_nesting = 0;
Christoph Lameter28ced792014-09-02 14:13:44 -0700730 rcu_eqs_enter_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700731 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700732 rdtp->dynticks_nesting -= DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700733 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700734}
735
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700736/**
737 * rcu_idle_enter - inform RCU that current CPU is entering idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100738 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700739 * Enter idle mode, in other words, -leave- the mode in which RCU
740 * read-side critical sections can occur. (Though RCU read-side
741 * critical sections can occur in irq handlers in idle, a possibility
742 * handled by irq_enter() and irq_exit().)
743 *
744 * We crowbar the ->dynticks_nesting field to zero to allow for
745 * the possibility of usermode upcalls having messed up our count
746 * of interrupt nesting level during the prior busy period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100747 */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700748void rcu_idle_enter(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100749{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200750 unsigned long flags;
751
752 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700753 rcu_eqs_enter(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700754 rcu_sysidle_enter(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200755 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700756}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800757EXPORT_SYMBOL_GPL(rcu_idle_enter);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700758
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700759#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700760/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700761 * rcu_user_enter - inform RCU that we are resuming userspace.
762 *
763 * Enter RCU idle mode right before resuming userspace. No use of RCU
764 * is permitted between this call and rcu_user_exit(). This way the
765 * CPU doesn't need to maintain the tick for RCU maintenance purposes
766 * when the CPU runs in userspace.
767 */
768void rcu_user_enter(void)
769{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100770 rcu_eqs_enter(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700771}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700772#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700773
774/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700775 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
776 *
777 * Exit from an interrupt handler, which might possibly result in entering
778 * idle mode, in other words, leaving the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700779 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700780 *
781 * This code assumes that the idle loop never does anything that might
782 * result in unbalanced calls to irq_enter() and irq_exit(). If your
783 * architecture violates this assumption, RCU will give you what you
784 * deserve, good and hard. But very infrequently and irreproducibly.
785 *
786 * Use things like work queues to work around this limitation.
787 *
788 * You have been warned.
789 */
790void rcu_irq_exit(void)
791{
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700792 long long oldval;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700793 struct rcu_dynticks *rdtp;
794
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700795 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney97535792017-09-22 14:10:22 -0700796
797 /* Page faults can happen in NMI handlers, so check... */
798 if (READ_ONCE(rdtp->dynticks_nmi_nesting))
799 return;
800
801 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!");
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700802 oldval = rdtp->dynticks_nesting;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700803 rdtp->dynticks_nesting--;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700804 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
805 rdtp->dynticks_nesting < 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800806 if (rdtp->dynticks_nesting)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400807 trace_rcu_dyntick(TPS("--="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800808 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700809 rcu_eqs_enter_common(oldval, true);
810 rcu_sysidle_enter(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700811}
812
813/*
814 * Wrapper for rcu_irq_exit() where interrupts are enabled.
815 */
816void rcu_irq_exit_irqson(void)
817{
818 unsigned long flags;
819
820 local_irq_save(flags);
821 rcu_irq_exit();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700822 local_irq_restore(flags);
823}
824
825/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700826 * rcu_eqs_exit_common - current CPU moving away from extended quiescent state
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700827 *
828 * If the new value of the ->dynticks_nesting counter was previously zero,
829 * we really have exited idle, and must do the appropriate accounting.
830 * The caller must have disabled interrupts.
831 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700832static void rcu_eqs_exit_common(long long oldval, int user)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700833{
Christoph Lameter28ced792014-09-02 14:13:44 -0700834 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
835
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700836 rcu_dynticks_task_exit();
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100837 smp_mb__before_atomic(); /* Force ordering w/previous sojourn. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700838 atomic_inc(&rdtp->dynticks);
839 /* CPUs seeing atomic_inc() must see later RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100840 smp_mb__after_atomic(); /* See above. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700841 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
842 !(atomic_read(&rdtp->dynticks) & 0x1));
Paul E. McKenney8fa78452014-10-22 15:07:37 -0700843 rcu_cleanup_after_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400844 trace_rcu_dyntick(TPS("End"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700845 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
846 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700847 struct task_struct *idle __maybe_unused =
848 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700849
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400850 trace_rcu_dyntick(TPS("Error on exit: not idle task"),
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700851 oldval, rdtp->dynticks_nesting);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700852 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700853 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
854 current->pid, current->comm,
855 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700856 }
857}
858
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700859/*
860 * Exit an RCU extended quiescent state, which can be either the
861 * idle loop or adaptive-tickless usermode execution.
862 */
863static void rcu_eqs_exit(bool user)
864{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700865 struct rcu_dynticks *rdtp;
866 long long oldval;
867
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700868 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700869 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700870 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && oldval < 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700871 if (oldval & DYNTICK_TASK_NEST_MASK) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700872 rdtp->dynticks_nesting += DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700873 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700874 rdtp->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Christoph Lameter28ced792014-09-02 14:13:44 -0700875 rcu_eqs_exit_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700876 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700877}
878
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700879/**
880 * rcu_idle_exit - inform RCU that current CPU is leaving idle
881 *
882 * Exit idle mode, in other words, -enter- the mode in which RCU
883 * read-side critical sections can occur.
884 *
Paul E. McKenney29e37d82011-11-17 16:55:56 -0800885 * We crowbar the ->dynticks_nesting field to DYNTICK_TASK_NEST to
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700886 * allow for the possibility of usermode upcalls messing up our count
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700887 * of interrupt nesting level during the busy period that is just
888 * now starting.
889 */
890void rcu_idle_exit(void)
891{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200892 unsigned long flags;
893
894 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700895 rcu_eqs_exit(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700896 rcu_sysidle_exit(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200897 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700898}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800899EXPORT_SYMBOL_GPL(rcu_idle_exit);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700900
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700901#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700902/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700903 * rcu_user_exit - inform RCU that we are exiting userspace.
904 *
905 * Exit RCU idle mode while entering the kernel because it can
906 * run a RCU read side critical section anytime.
907 */
908void rcu_user_exit(void)
909{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100910 rcu_eqs_exit(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700911}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700912#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700913
914/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700915 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle
916 *
917 * Enter an interrupt handler, which might possibly result in exiting
918 * idle mode, in other words, entering the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700919 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700920 *
921 * Note that the Linux kernel is fully capable of entering an interrupt
922 * handler that it never exits, for example when doing upcalls to
923 * user mode! This code assumes that the idle loop never does upcalls to
924 * user mode. If your architecture does do upcalls from the idle loop (or
925 * does anything else that results in unbalanced calls to the irq_enter()
926 * and irq_exit() functions), RCU will give you what you deserve, good
927 * and hard. But very infrequently and irreproducibly.
928 *
929 * Use things like work queues to work around this limitation.
930 *
931 * You have been warned.
932 */
933void rcu_irq_enter(void)
934{
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700935 struct rcu_dynticks *rdtp;
936 long long oldval;
937
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700938 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney97535792017-09-22 14:10:22 -0700939
940 /* Page faults can happen in NMI handlers, so check... */
941 if (READ_ONCE(rdtp->dynticks_nmi_nesting))
942 return;
943
944 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!");
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700945 oldval = rdtp->dynticks_nesting;
946 rdtp->dynticks_nesting++;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700947 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
948 rdtp->dynticks_nesting == 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800949 if (oldval)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400950 trace_rcu_dyntick(TPS("++="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800951 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700952 rcu_eqs_exit_common(oldval, true);
953 rcu_sysidle_exit(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700954}
955
956/*
957 * Wrapper for rcu_irq_enter() where interrupts are enabled.
958 */
959void rcu_irq_enter_irqson(void)
960{
961 unsigned long flags;
962
963 local_irq_save(flags);
964 rcu_irq_enter();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100965 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100966}
967
968/**
969 * rcu_nmi_enter - inform RCU of entry to NMI context
970 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800971 * If the CPU was idle from RCU's viewpoint, update rdtp->dynticks and
972 * rdtp->dynticks_nmi_nesting to let the RCU grace-period handling know
973 * that the CPU is active. This implementation permits nested NMIs, as
974 * long as the nesting level does not overflow an int. (You will probably
975 * run out of stack space first.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100976 */
977void rcu_nmi_enter(void)
978{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700979 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney734d1682014-11-21 14:45:12 -0800980 int incby = 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100981
Paul E. McKenney734d1682014-11-21 14:45:12 -0800982 /* Complain about underflow. */
983 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting < 0);
984
985 /*
986 * If idle from RCU viewpoint, atomically increment ->dynticks
987 * to mark non-idle and increment ->dynticks_nmi_nesting by one.
988 * Otherwise, increment ->dynticks_nmi_nesting by two. This means
989 * if ->dynticks_nmi_nesting is equal to one, we are guaranteed
990 * to be in the outermost NMI handler that interrupted an RCU-idle
991 * period (observation due to Andy Lutomirski).
992 */
993 if (!(atomic_read(&rdtp->dynticks) & 0x1)) {
994 smp_mb__before_atomic(); /* Force delay from prior write. */
995 atomic_inc(&rdtp->dynticks);
996 /* atomic_inc() before later RCU read-side crit sects */
997 smp_mb__after_atomic(); /* See above. */
998 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
999 incby = 1;
1000 }
1001 rdtp->dynticks_nmi_nesting += incby;
1002 barrier();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001003}
1004
1005/**
1006 * rcu_nmi_exit - inform RCU of exit from NMI context
1007 *
Paul E. McKenney734d1682014-11-21 14:45:12 -08001008 * If we are returning from the outermost NMI handler that interrupted an
1009 * RCU-idle period, update rdtp->dynticks and rdtp->dynticks_nmi_nesting
1010 * to let the RCU grace-period handling know that the CPU is back to
1011 * being RCU-idle.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001012 */
1013void rcu_nmi_exit(void)
1014{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001015 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001016
Paul E. McKenney734d1682014-11-21 14:45:12 -08001017 /*
1018 * Check for ->dynticks_nmi_nesting underflow and bad ->dynticks.
1019 * (We are exiting an NMI handler, so RCU better be paying attention
1020 * to us!)
1021 */
1022 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting <= 0);
1023 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1024
1025 /*
1026 * If the nesting level is not 1, the CPU wasn't RCU-idle, so
1027 * leave it in non-RCU-idle state.
1028 */
1029 if (rdtp->dynticks_nmi_nesting != 1) {
1030 rdtp->dynticks_nmi_nesting -= 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001031 return;
Paul E. McKenney734d1682014-11-21 14:45:12 -08001032 }
1033
1034 /* This NMI interrupted an RCU-idle CPU, restore RCU-idleness. */
1035 rdtp->dynticks_nmi_nesting = 0;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001036 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001037 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001038 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001039 smp_mb__after_atomic(); /* Force delay to next write. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001040 WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001041}
1042
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001043/**
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001044 * __rcu_is_watching - are RCU read-side critical sections safe?
1045 *
1046 * Return true if RCU is watching the running CPU, which means that
1047 * this CPU can safely enter RCU read-side critical sections. Unlike
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001048 * rcu_is_watching(), the caller of __rcu_is_watching() must have at
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001049 * least disabled preemption.
1050 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001051bool notrace __rcu_is_watching(void)
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001052{
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001053 return atomic_read(this_cpu_ptr(&rcu_dynticks.dynticks)) & 0x1;
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001054}
1055
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001056/**
1057 * rcu_is_watching - see if RCU thinks that the current CPU is idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001058 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001059 * If the current CPU is in its idle loop and is neither in an interrupt
Paul E. McKenney34240692011-10-03 11:38:52 -07001060 * or NMI handler, return true.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001061 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001062bool notrace rcu_is_watching(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001063{
Pranith Kumarf534ed12014-07-08 18:26:11 -04001064 bool ret;
Paul E. McKenney34240692011-10-03 11:38:52 -07001065
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001066 preempt_disable_notrace();
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001067 ret = __rcu_is_watching();
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001068 preempt_enable_notrace();
Paul E. McKenney34240692011-10-03 11:38:52 -07001069 return ret;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001070}
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001071EXPORT_SYMBOL_GPL(rcu_is_watching);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001072
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001073#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001074
1075/*
1076 * Is the current CPU online? Disable preemption to avoid false positives
1077 * that could otherwise happen due to the current CPU number being sampled,
1078 * this task being preempted, its old CPU being taken offline, resuming
1079 * on some other CPU, then determining that its old CPU is now offline.
1080 * It is OK to use RCU on an offline processor during initial boot, hence
Paul E. McKenney2036d942012-01-30 17:02:47 -08001081 * the check for rcu_scheduler_fully_active. Note also that it is OK
1082 * for a CPU coming online to use RCU for one jiffy prior to marking itself
1083 * online in the cpu_online_mask. Similarly, it is OK for a CPU going
1084 * offline to continue to use RCU for one jiffy after marking itself
1085 * offline in the cpu_online_mask. This leniency is necessary given the
1086 * non-atomic nature of the online and offline processing, for example,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001087 * the fact that a CPU enters the scheduler after completing the teardown
1088 * of the CPU.
Paul E. McKenney2036d942012-01-30 17:02:47 -08001089 *
Thomas Gleixner4df83742016-07-13 17:17:03 +00001090 * This is also why RCU internally marks CPUs online during in the
1091 * preparation phase and offline after the CPU has been taken down.
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001092 *
1093 * Disable checking if in an NMI handler because we cannot safely report
1094 * errors from NMI handlers anyway.
1095 */
1096bool rcu_lockdep_current_cpu_online(void)
1097{
Paul E. McKenney2036d942012-01-30 17:02:47 -08001098 struct rcu_data *rdp;
1099 struct rcu_node *rnp;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001100 bool ret;
1101
1102 if (in_nmi())
Fengguang Wuf6f7ee92013-10-10 11:08:33 -07001103 return true;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001104 preempt_disable();
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001105 rdp = this_cpu_ptr(&rcu_sched_data);
Paul E. McKenney2036d942012-01-30 17:02:47 -08001106 rnp = rdp->mynode;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001107 ret = (rdp->grpmask & rcu_rnp_online_cpus(rnp)) ||
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001108 !rcu_scheduler_fully_active;
1109 preempt_enable();
1110 return ret;
1111}
1112EXPORT_SYMBOL_GPL(rcu_lockdep_current_cpu_online);
1113
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001114#endif /* #if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001115
1116/**
1117 * rcu_is_cpu_rrupt_from_idle - see if idle or immediately interrupted from idle
1118 *
1119 * If the current CPU is idle or running at a first-level (not nested)
1120 * interrupt from idle, return true. The caller must have at least
1121 * disabled preemption.
1122 */
Josh Triplett62e3cb12012-11-20 09:55:26 -08001123static int rcu_is_cpu_rrupt_from_idle(void)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001124{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001125 return __this_cpu_read(rcu_dynticks.dynticks_nesting) <= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001126}
1127
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001128/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001129 * Snapshot the specified CPU's dynticks counter so that we can later
1130 * credit them with an implicit quiescent state. Return 1 if this CPU
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001131 * is in dynticks idle mode, which is an extended quiescent state.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001132 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001133static int dyntick_save_progress_counter(struct rcu_data *rdp,
1134 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001135{
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001136 rdp->dynticks_snap = atomic_add_return(0, &rdp->dynticks->dynticks);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07001137 rcu_sysidle_check_cpu(rdp, isidle, maxj);
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001138 if ((rdp->dynticks_snap & 0x1) == 0) {
1139 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001140 if (ULONG_CMP_LT(READ_ONCE(rdp->gpnum) + ULONG_MAX / 4,
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001141 rdp->mynode->gpnum))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001142 WRITE_ONCE(rdp->gpwrap, true);
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001143 return 1;
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001144 }
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001145 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001146}
1147
1148/*
1149 * Return true if the specified CPU has passed through a quiescent
1150 * state by virtue of being in or having passed through an dynticks
1151 * idle state since the last call to dyntick_save_progress_counter()
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001152 * for this same CPU, or by virtue of having been offline.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001153 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001154static int rcu_implicit_dynticks_qs(struct rcu_data *rdp,
1155 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001156{
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001157 unsigned int curr;
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001158 int *rcrmp;
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001159 unsigned int snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001160
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001161 curr = (unsigned int)atomic_add_return(0, &rdp->dynticks->dynticks);
1162 snap = (unsigned int)rdp->dynticks_snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001163
1164 /*
1165 * If the CPU passed through or entered a dynticks idle phase with
1166 * no active irq/NMI handlers, then we can safely pretend that the CPU
1167 * already acknowledged the request to pass through a quiescent
1168 * state. Either way, that CPU cannot possibly be in an RCU
1169 * read-side critical section that started before the beginning
1170 * of the current RCU grace period.
1171 */
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001172 if ((curr & 0x1) == 0 || UINT_CMP_GE(curr, snap + 2)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001173 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001174 rdp->dynticks_fqs++;
1175 return 1;
1176 }
1177
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001178 /*
1179 * Check for the CPU being offline, but only if the grace period
1180 * is old enough. We don't need to worry about the CPU changing
1181 * state: If we see it offline even once, it has been through a
1182 * quiescent state.
1183 *
1184 * The reason for insisting that the grace period be at least
1185 * one jiffy old is that CPUs that are not quite online and that
1186 * have just gone offline can still execute RCU read-side critical
1187 * sections.
1188 */
1189 if (ULONG_CMP_GE(rdp->rsp->gp_start + 2, jiffies))
1190 return 0; /* Grace period is not old enough. */
1191 barrier();
1192 if (cpu_is_offline(rdp->cpu)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001193 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("ofl"));
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001194 rdp->offline_fqs++;
1195 return 1;
1196 }
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001197
1198 /*
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001199 * A CPU running for an extended time within the kernel can
1200 * delay RCU grace periods. When the CPU is in NO_HZ_FULL mode,
1201 * even context-switching back and forth between a pair of
1202 * in-kernel CPU-bound tasks cannot advance grace periods.
1203 * So if the grace period is old enough, make the CPU pay attention.
1204 * Note that the unsynchronized assignments to the per-CPU
1205 * rcu_sched_qs_mask variable are safe. Yes, setting of
1206 * bits can be lost, but they will be set again on the next
1207 * force-quiescent-state pass. So lost bit sets do not result
1208 * in incorrect behavior, merely in a grace period lasting
1209 * a few jiffies longer than it might otherwise. Because
1210 * there are at most four threads involved, and because the
1211 * updates are only once every few jiffies, the probability of
1212 * lossage (and thus of slight grace-period extension) is
1213 * quite low.
1214 *
1215 * Note that if the jiffies_till_sched_qs boot/sysfs parameter
1216 * is set too high, we override with half of the RCU CPU stall
1217 * warning delay.
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001218 */
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001219 rcrmp = &per_cpu(rcu_sched_qs_mask, rdp->cpu);
1220 if (ULONG_CMP_GE(jiffies,
1221 rdp->rsp->gp_start + jiffies_till_sched_qs) ||
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001222 ULONG_CMP_GE(jiffies, rdp->rsp->jiffies_resched)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001223 if (!(READ_ONCE(*rcrmp) & rdp->rsp->flavor_mask)) {
1224 WRITE_ONCE(rdp->cond_resched_completed,
1225 READ_ONCE(rdp->mynode->completed));
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001226 smp_mb(); /* ->cond_resched_completed before *rcrmp. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001227 WRITE_ONCE(*rcrmp,
1228 READ_ONCE(*rcrmp) + rdp->rsp->flavor_mask);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001229 }
Paul E. McKenney49149502015-12-11 13:48:43 -08001230 rdp->rsp->jiffies_resched += 5; /* Re-enable beating. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001231 }
1232
Paul E. McKenney49149502015-12-11 13:48:43 -08001233 /* And if it has been a really long time, kick the CPU as well. */
1234 if (ULONG_CMP_GE(jiffies,
1235 rdp->rsp->gp_start + 2 * jiffies_till_sched_qs) ||
1236 ULONG_CMP_GE(jiffies, rdp->rsp->gp_start + jiffies_till_sched_qs))
1237 resched_cpu(rdp->cpu); /* Force CPU into scheduler. */
1238
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001239 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001240}
1241
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001242static void record_gp_stall_check_time(struct rcu_state *rsp)
1243{
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001244 unsigned long j = jiffies;
Paul E. McKenney6193c762013-09-23 13:57:18 -07001245 unsigned long j1;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001246
1247 rsp->gp_start = j;
1248 smp_wmb(); /* Record start time before stall time. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001249 j1 = rcu_jiffies_till_stall_check();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001250 WRITE_ONCE(rsp->jiffies_stall, j + j1);
Paul E. McKenney6193c762013-09-23 13:57:18 -07001251 rsp->jiffies_resched = j + j1 / 2;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001252 rsp->n_force_qs_gpstart = READ_ONCE(rsp->n_force_qs);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001253}
1254
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001255/*
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001256 * Convert a ->gp_state value to a character string.
1257 */
1258static const char *gp_state_getname(short gs)
1259{
1260 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
1261 return "???";
1262 return gp_state_names[gs];
1263}
1264
1265/*
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001266 * Complain about starvation of grace-period kthread.
1267 */
1268static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp)
1269{
1270 unsigned long gpa;
1271 unsigned long j;
1272
1273 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001274 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001275 if (j - gpa > 2 * HZ) {
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001276 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 -07001277 rsp->name, j - gpa,
Paul E. McKenney319362c2015-05-19 14:16:52 -07001278 rsp->gpnum, rsp->completed,
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001279 rsp->gp_flags,
1280 gp_state_getname(rsp->gp_state), rsp->gp_state,
Paul E. McKenneya0e3a3a2015-12-05 17:34:10 -08001281 rsp->gp_kthread ? rsp->gp_kthread->state : ~0);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001282 if (rsp->gp_kthread) {
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001283 sched_show_task(rsp->gp_kthread);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001284 wake_up_process(rsp->gp_kthread);
1285 }
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001286 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001287}
1288
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001289/*
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001290 * Dump stacks of all tasks running on stalled CPUs.
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001291 */
1292static void rcu_dump_cpu_stacks(struct rcu_state *rsp)
1293{
1294 int cpu;
1295 unsigned long flags;
1296 struct rcu_node *rnp;
1297
1298 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001299 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001300 if (rnp->qsmask != 0) {
Mark Rutlandbc75e992016-06-03 15:20:04 +01001301 for_each_leaf_node_possible_cpu(rnp, cpu)
1302 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu))
1303 dump_cpu_task(cpu);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001304 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001305 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001306 }
1307}
1308
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001309/*
1310 * If too much time has passed in the current grace period, and if
1311 * so configured, go kick the relevant kthreads.
1312 */
1313static void rcu_stall_kick_kthreads(struct rcu_state *rsp)
1314{
1315 unsigned long j;
1316
1317 if (!rcu_kick_kthreads)
1318 return;
1319 j = READ_ONCE(rsp->jiffies_kick_kthreads);
1320 if (time_after(jiffies, j) && rsp->gp_kthread) {
1321 WARN_ONCE(1, "Kicking %s grace-period kthread\n", rsp->name);
Paul E. McKenney5dffed12016-02-17 11:54:28 -08001322 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001323 wake_up_process(rsp->gp_kthread);
1324 WRITE_ONCE(rsp->jiffies_kick_kthreads, j + HZ);
1325 }
1326}
1327
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001328static inline void panic_on_rcu_stall(void)
1329{
1330 if (sysctl_panic_on_rcu_stall)
1331 panic("RCU Stall\n");
1332}
1333
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001334static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gpnum)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001335{
1336 int cpu;
1337 long delta;
1338 unsigned long flags;
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001339 unsigned long gpa;
1340 unsigned long j;
Paul E. McKenney285fe292012-05-09 08:45:12 -07001341 int ndetected = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001342 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001343 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001344
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001345 /* Kick and suppress, if so configured. */
1346 rcu_stall_kick_kthreads(rsp);
1347 if (rcu_cpu_stall_suppress)
1348 return;
1349
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001350 /* Only let one CPU complain about others per time interval. */
1351
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001352 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001353 delta = jiffies - READ_ONCE(rsp->jiffies_stall);
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -07001354 if (delta < RCU_STALL_RAT_DELAY || !rcu_gp_in_progress(rsp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08001355 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001356 return;
1357 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001358 WRITE_ONCE(rsp->jiffies_stall,
1359 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001360 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001361
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001362 /*
1363 * OK, time to rat on our buddy...
1364 * See Documentation/RCU/stallwarn.txt for info on how to debug
1365 * RCU CPU stall warnings.
1366 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001367 pr_err("INFO: %s detected stalls on CPUs/tasks:",
Paul E. McKenney4300aa62010-04-13 16:18:22 -07001368 rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001369 print_cpu_stall_info_begin();
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07001370 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001371 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001372 ndetected += rcu_print_task_stall(rnp);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001373 if (rnp->qsmask != 0) {
Mark Rutlandbc75e992016-06-03 15:20:04 +01001374 for_each_leaf_node_possible_cpu(rnp, cpu)
1375 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) {
1376 print_cpu_stall_info(rsp, cpu);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001377 ndetected++;
1378 }
1379 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001380 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001381 }
Paul E. McKenneya858af22012-01-16 13:29:10 -08001382
Paul E. McKenneya858af22012-01-16 13:29:10 -08001383 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001384 for_each_possible_cpu(cpu)
1385 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001386 pr_cont("(detected by %d, t=%ld jiffies, g=%ld, c=%ld, q=%lu)\n",
Paul E. McKenneyeee05882012-09-21 14:15:05 -07001387 smp_processor_id(), (long)(jiffies - rsp->gp_start),
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001388 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001389 if (ndetected) {
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001390 rcu_dump_cpu_stacks(rsp);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001391 } else {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001392 if (READ_ONCE(rsp->gpnum) != gpnum ||
1393 READ_ONCE(rsp->completed) == gpnum) {
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001394 pr_err("INFO: Stall ended before state dump start\n");
1395 } else {
1396 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001397 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001398 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 -08001399 rsp->name, j - gpa, j, gpa,
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001400 jiffies_till_next_fqs,
1401 rcu_get_root(rsp)->qsmask);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001402 /* In this case, the current CPU might be at fault. */
1403 sched_show_task(current);
1404 }
1405 }
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001406
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07001407 /* Complain about tasks blocking the grace period. */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001408 rcu_print_detail_task_stall(rsp);
1409
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001410 rcu_check_gp_kthread_starvation(rsp);
1411
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001412 panic_on_rcu_stall();
1413
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07001414 force_quiescent_state(rsp); /* Kick them all. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001415}
1416
1417static void print_cpu_stall(struct rcu_state *rsp)
1418{
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001419 int cpu;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001420 unsigned long flags;
1421 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001422 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001423
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001424 /* Kick and suppress, if so configured. */
1425 rcu_stall_kick_kthreads(rsp);
1426 if (rcu_cpu_stall_suppress)
1427 return;
1428
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001429 /*
1430 * OK, time to rat on ourselves...
1431 * See Documentation/RCU/stallwarn.txt for info on how to debug
1432 * RCU CPU stall warnings.
1433 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001434 pr_err("INFO: %s self-detected stall on CPU", rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001435 print_cpu_stall_info_begin();
1436 print_cpu_stall_info(rsp, smp_processor_id());
1437 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001438 for_each_possible_cpu(cpu)
1439 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001440 pr_cont(" (t=%lu jiffies g=%ld c=%ld q=%lu)\n",
1441 jiffies - rsp->gp_start,
1442 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001443
1444 rcu_check_gp_kthread_starvation(rsp);
1445
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001446 rcu_dump_cpu_stacks(rsp);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001447
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001448 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001449 if (ULONG_CMP_GE(jiffies, READ_ONCE(rsp->jiffies_stall)))
1450 WRITE_ONCE(rsp->jiffies_stall,
1451 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001452 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001453
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001454 panic_on_rcu_stall();
1455
Peter Zijlstrab021fe32013-09-17 09:30:55 +02001456 /*
1457 * Attempt to revive the RCU machinery by forcing a context switch.
1458 *
1459 * A context switch would normally allow the RCU state machine to make
1460 * progress and it could be we're stuck in kernel space without context
1461 * switches for an entirely unreasonable amount of time.
1462 */
1463 resched_cpu(smp_processor_id());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001464}
1465
1466static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
1467{
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001468 unsigned long completed;
1469 unsigned long gpnum;
1470 unsigned long gps;
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001471 unsigned long j;
1472 unsigned long js;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001473 struct rcu_node *rnp;
1474
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001475 if ((rcu_cpu_stall_suppress && !rcu_kick_kthreads) ||
1476 !rcu_gp_in_progress(rsp))
Paul E. McKenneyc68de202010-04-15 10:12:40 -07001477 return;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001478 rcu_stall_kick_kthreads(rsp);
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001479 j = jiffies;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001480
1481 /*
1482 * Lots of memory barriers to reject false positives.
1483 *
1484 * The idea is to pick up rsp->gpnum, then rsp->jiffies_stall,
1485 * then rsp->gp_start, and finally rsp->completed. These values
1486 * are updated in the opposite order with memory barriers (or
1487 * equivalent) during grace-period initialization and cleanup.
1488 * Now, a false positive can occur if we get an new value of
1489 * rsp->gp_start and a old value of rsp->jiffies_stall. But given
1490 * the memory barriers, the only way that this can happen is if one
1491 * grace period ends and another starts between these two fetches.
1492 * Detect this by comparing rsp->completed with the previous fetch
1493 * from rsp->gpnum.
1494 *
1495 * Given this check, comparisons of jiffies, rsp->jiffies_stall,
1496 * and rsp->gp_start suffice to forestall false positives.
1497 */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001498 gpnum = READ_ONCE(rsp->gpnum);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001499 smp_rmb(); /* Pick up ->gpnum first... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001500 js = READ_ONCE(rsp->jiffies_stall);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001501 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001502 gps = READ_ONCE(rsp->gp_start);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001503 smp_rmb(); /* ...and finally ->gp_start before ->completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001504 completed = READ_ONCE(rsp->completed);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001505 if (ULONG_CMP_GE(completed, gpnum) ||
1506 ULONG_CMP_LT(j, js) ||
1507 ULONG_CMP_GE(gps, js))
1508 return; /* No stall or GP completed since entering function. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001509 rnp = rdp->mynode;
Paul E. McKenneyc96ea7c2012-08-13 11:17:06 -07001510 if (rcu_gp_in_progress(rsp) &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001511 (READ_ONCE(rnp->qsmask) & rdp->grpmask)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001512
1513 /* We haven't checked in, so go dump stack. */
1514 print_cpu_stall(rsp);
1515
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001516 } else if (rcu_gp_in_progress(rsp) &&
1517 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001518
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001519 /* They had a few time units to dump stack, so complain. */
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001520 print_other_cpu_stall(rsp, gpnum);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001521 }
1522}
1523
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001524/**
1525 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
1526 *
1527 * Set the stall-warning timeout way off into the future, thus preventing
1528 * any RCU CPU stall-warning messages from appearing in the current set of
1529 * RCU grace periods.
1530 *
1531 * The caller must disable hard irqs.
1532 */
1533void rcu_cpu_stall_reset(void)
1534{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07001535 struct rcu_state *rsp;
1536
1537 for_each_rcu_flavor(rsp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001538 WRITE_ONCE(rsp->jiffies_stall, jiffies + ULONG_MAX / 2);
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001539}
1540
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001541/*
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001542 * Initialize the specified rcu_data structure's default callback list
1543 * to empty. The default callback list is the one that is not used by
1544 * no-callbacks CPUs.
1545 */
1546static void init_default_callback_list(struct rcu_data *rdp)
1547{
1548 int i;
1549
1550 rdp->nxtlist = NULL;
1551 for (i = 0; i < RCU_NEXT_SIZE; i++)
1552 rdp->nxttail[i] = &rdp->nxtlist;
1553}
1554
1555/*
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001556 * Initialize the specified rcu_data structure's callback list to empty.
1557 */
1558static void init_callback_list(struct rcu_data *rdp)
1559{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001560 if (init_nocb_callback_list(rdp))
1561 return;
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001562 init_default_callback_list(rdp);
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001563}
1564
1565/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001566 * Determine the value that ->completed will have at the end of the
1567 * next subsequent grace period. This is used to tag callbacks so that
1568 * a CPU can invoke callbacks in a timely fashion even if that CPU has
1569 * been dyntick-idle for an extended period with callbacks under the
1570 * influence of RCU_FAST_NO_HZ.
1571 *
1572 * The caller must hold rnp->lock with interrupts disabled.
1573 */
1574static unsigned long rcu_cbs_completed(struct rcu_state *rsp,
1575 struct rcu_node *rnp)
1576{
1577 /*
1578 * If RCU is idle, we just wait for the next grace period.
1579 * But we can only be sure that RCU is idle if we are looking
1580 * at the root rcu_node structure -- otherwise, a new grace
1581 * period might have started, but just not yet gotten around
1582 * to initializing the current non-root rcu_node structure.
1583 */
1584 if (rcu_get_root(rsp) == rnp && rnp->gpnum == rnp->completed)
1585 return rnp->completed + 1;
1586
1587 /*
1588 * Otherwise, wait for a possible partial grace period and
1589 * then the subsequent full grace period.
1590 */
1591 return rnp->completed + 2;
1592}
1593
1594/*
Paul E. McKenney0446be42012-12-30 15:21:01 -08001595 * Trace-event helper function for rcu_start_future_gp() and
1596 * rcu_nocb_wait_gp().
1597 */
1598static void trace_rcu_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001599 unsigned long c, const char *s)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001600{
1601 trace_rcu_future_grace_period(rdp->rsp->name, rnp->gpnum,
1602 rnp->completed, c, rnp->level,
1603 rnp->grplo, rnp->grphi, s);
1604}
1605
1606/*
1607 * Start some future grace period, as needed to handle newly arrived
1608 * callbacks. The required future grace periods are recorded in each
Paul E. McKenney48a76392014-03-11 13:02:16 -07001609 * rcu_node structure's ->need_future_gp field. Returns true if there
1610 * is reason to awaken the grace-period kthread.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001611 *
1612 * The caller must hold the specified rcu_node structure's ->lock.
1613 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001614static bool __maybe_unused
1615rcu_start_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
1616 unsigned long *c_out)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001617{
1618 unsigned long c;
1619 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001620 bool ret = false;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001621 struct rcu_node *rnp_root = rcu_get_root(rdp->rsp);
1622
1623 /*
1624 * Pick up grace-period number for new callbacks. If this
1625 * grace period is already marked as needed, return to the caller.
1626 */
1627 c = rcu_cbs_completed(rdp->rsp, rnp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001628 trace_rcu_future_gp(rnp, rdp, c, TPS("Startleaf"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001629 if (rnp->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001630 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001631 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001632 }
1633
1634 /*
1635 * If either this rcu_node structure or the root rcu_node structure
1636 * believe that a grace period is in progress, then we must wait
1637 * for the one following, which is in "c". Because our request
1638 * will be noticed at the end of the current grace period, we don't
Pranith Kumar48bd8e92014-06-11 10:32:47 -07001639 * need to explicitly start one. We only do the lockless check
1640 * of rnp_root's fields if the current rcu_node structure thinks
1641 * there is no grace period in flight, and because we hold rnp->lock,
1642 * the only possible change is when rnp_root's two fields are
1643 * equal, in which case rnp_root->gpnum might be concurrently
1644 * incremented. But that is OK, as it will just result in our
1645 * doing some extra useless work.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001646 */
1647 if (rnp->gpnum != rnp->completed ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001648 READ_ONCE(rnp_root->gpnum) != READ_ONCE(rnp_root->completed)) {
Paul E. McKenney0446be42012-12-30 15:21:01 -08001649 rnp->need_future_gp[c & 0x1]++;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001650 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001651 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001652 }
1653
1654 /*
1655 * There might be no grace period in progress. If we don't already
1656 * hold it, acquire the root rcu_node structure's lock in order to
1657 * start one (if needed).
1658 */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001659 if (rnp != rnp_root)
1660 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001661
1662 /*
1663 * Get a new grace-period number. If there really is no grace
1664 * period in progress, it will be smaller than the one we obtained
1665 * earlier. Adjust callbacks as needed. Note that even no-CBs
1666 * CPUs have a ->nxtcompleted[] array, so no no-CBs checks needed.
1667 */
1668 c = rcu_cbs_completed(rdp->rsp, rnp_root);
1669 for (i = RCU_DONE_TAIL; i < RCU_NEXT_TAIL; i++)
1670 if (ULONG_CMP_LT(c, rdp->nxtcompleted[i]))
1671 rdp->nxtcompleted[i] = c;
1672
1673 /*
1674 * If the needed for the required grace period is already
1675 * recorded, trace and leave.
1676 */
1677 if (rnp_root->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001678 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartedroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001679 goto unlock_out;
1680 }
1681
1682 /* Record the need for the future grace period. */
1683 rnp_root->need_future_gp[c & 0x1]++;
1684
1685 /* If a grace period is not already in progress, start one. */
1686 if (rnp_root->gpnum != rnp_root->completed) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001687 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleafroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001688 } else {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001689 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedroot"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001690 ret = rcu_start_gp_advanced(rdp->rsp, rnp_root, rdp);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001691 }
1692unlock_out:
1693 if (rnp != rnp_root)
Boqun Feng67c583a72015-12-29 12:18:47 +08001694 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001695out:
1696 if (c_out != NULL)
1697 *c_out = c;
1698 return ret;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001699}
1700
1701/*
1702 * Clean up any old requests for the just-ended grace period. Also return
1703 * whether any additional grace periods have been requested. Also invoke
1704 * rcu_nocb_gp_cleanup() in order to wake up any no-callbacks kthreads
1705 * waiting for this grace period to complete.
1706 */
1707static int rcu_future_gp_cleanup(struct rcu_state *rsp, struct rcu_node *rnp)
1708{
1709 int c = rnp->completed;
1710 int needmore;
1711 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
1712
Paul E. McKenney0446be42012-12-30 15:21:01 -08001713 rnp->need_future_gp[c & 0x1] = 0;
1714 needmore = rnp->need_future_gp[(c + 1) & 0x1];
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001715 trace_rcu_future_gp(rnp, rdp, c,
1716 needmore ? TPS("CleanupMore") : TPS("Cleanup"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001717 return needmore;
1718}
1719
1720/*
Zhang, Jun3b2bbd12018-12-18 06:55:01 -08001721 * Awaken the grace-period kthread. Don't do a self-awaken (unless in
1722 * an interrupt or softirq handler), and don't bother awakening when there
1723 * is nothing for the grace-period kthread to do (as in several CPUs raced
1724 * to awaken, and we lost), and finally don't try to awaken a kthread that
1725 * has not yet been created. If all those checks are passed, track some
1726 * debug information and awaken.
1727 *
1728 * So why do the self-wakeup when in an interrupt or softirq handler
1729 * in the grace-period kthread's context? Because the kthread might have
1730 * been interrupted just as it was going to sleep, and just after the final
1731 * pre-sleep check of the awaken condition. In this case, a wakeup really
1732 * is required, and is therefore supplied.
Paul E. McKenney48a76392014-03-11 13:02:16 -07001733 */
1734static void rcu_gp_kthread_wake(struct rcu_state *rsp)
1735{
Zhang, Jun3b2bbd12018-12-18 06:55:01 -08001736 if ((current == rsp->gp_kthread &&
1737 !in_interrupt() && !in_serving_softirq()) ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001738 !READ_ONCE(rsp->gp_flags) ||
Paul E. McKenney48a76392014-03-11 13:02:16 -07001739 !rsp->gp_kthread)
1740 return;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001741 swake_up(&rsp->gp_wq);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001742}
1743
1744/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001745 * If there is room, assign a ->completed number to any callbacks on
1746 * this CPU that have not already been assigned. Also accelerate any
1747 * callbacks that were previously assigned a ->completed number that has
1748 * since proven to be too conservative, which can happen if callbacks get
1749 * assigned a ->completed number while RCU is idle, but with reference to
1750 * a non-root rcu_node structure. This function is idempotent, so it does
Paul E. McKenney48a76392014-03-11 13:02:16 -07001751 * not hurt to call it repeatedly. Returns an flag saying that we should
1752 * awaken the RCU grace-period kthread.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001753 *
1754 * The caller must hold rnp->lock with interrupts disabled.
1755 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001756static bool rcu_accelerate_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001757 struct rcu_data *rdp)
1758{
1759 unsigned long c;
1760 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001761 bool ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001762
1763 /* If the CPU has no callbacks, nothing to do. */
1764 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001765 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001766
1767 /*
1768 * Starting from the sublist containing the callbacks most
1769 * recently assigned a ->completed number and working down, find the
1770 * first sublist that is not assignable to an upcoming grace period.
1771 * Such a sublist has something in it (first two tests) and has
1772 * a ->completed number assigned that will complete sooner than
1773 * the ->completed number for newly arrived callbacks (last test).
1774 *
1775 * The key point is that any later sublist can be assigned the
1776 * same ->completed number as the newly arrived callbacks, which
1777 * means that the callbacks in any of these later sublist can be
1778 * grouped into a single sublist, whether or not they have already
1779 * been assigned a ->completed number.
1780 */
1781 c = rcu_cbs_completed(rsp, rnp);
1782 for (i = RCU_NEXT_TAIL - 1; i > RCU_DONE_TAIL; i--)
1783 if (rdp->nxttail[i] != rdp->nxttail[i - 1] &&
1784 !ULONG_CMP_GE(rdp->nxtcompleted[i], c))
1785 break;
1786
1787 /*
1788 * If there are no sublist for unassigned callbacks, leave.
1789 * At the same time, advance "i" one sublist, so that "i" will
1790 * index into the sublist where all the remaining callbacks should
1791 * be grouped into.
1792 */
1793 if (++i >= RCU_NEXT_TAIL)
Paul E. McKenney48a76392014-03-11 13:02:16 -07001794 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001795
1796 /*
1797 * Assign all subsequent callbacks' ->completed number to the next
1798 * full grace period and group them all in the sublist initially
1799 * indexed by "i".
1800 */
1801 for (; i <= RCU_NEXT_TAIL; i++) {
1802 rdp->nxttail[i] = rdp->nxttail[RCU_NEXT_TAIL];
1803 rdp->nxtcompleted[i] = c;
1804 }
Paul E. McKenney910ee452012-12-31 02:24:21 -08001805 /* Record any needed additional grace periods. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001806 ret = rcu_start_future_gp(rnp, rdp, NULL);
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001807
1808 /* Trace depending on how much we were able to accelerate. */
1809 if (!*rdp->nxttail[RCU_WAIT_TAIL])
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001810 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccWaitCB"));
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001811 else
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001812 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccReadyCB"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001813 return ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001814}
1815
1816/*
1817 * Move any callbacks whose grace period has completed to the
1818 * RCU_DONE_TAIL sublist, then compact the remaining sublists and
1819 * assign ->completed numbers to any callbacks in the RCU_NEXT_TAIL
1820 * sublist. This function is idempotent, so it does not hurt to
1821 * invoke it repeatedly. As long as it is not invoked -too- often...
Paul E. McKenney48a76392014-03-11 13:02:16 -07001822 * Returns true if the RCU grace-period kthread needs to be awakened.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001823 *
1824 * The caller must hold rnp->lock with interrupts disabled.
1825 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001826static bool rcu_advance_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001827 struct rcu_data *rdp)
1828{
1829 int i, j;
1830
1831 /* If the CPU has no callbacks, nothing to do. */
1832 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001833 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001834
1835 /*
1836 * Find all callbacks whose ->completed numbers indicate that they
1837 * are ready to invoke, and put them into the RCU_DONE_TAIL sublist.
1838 */
1839 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++) {
1840 if (ULONG_CMP_LT(rnp->completed, rdp->nxtcompleted[i]))
1841 break;
1842 rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[i];
1843 }
1844 /* Clean up any sublist tail pointers that were misordered above. */
1845 for (j = RCU_WAIT_TAIL; j < i; j++)
1846 rdp->nxttail[j] = rdp->nxttail[RCU_DONE_TAIL];
1847
1848 /* Copy down callbacks to fill in empty sublists. */
1849 for (j = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++, j++) {
1850 if (rdp->nxttail[j] == rdp->nxttail[RCU_NEXT_TAIL])
1851 break;
1852 rdp->nxttail[j] = rdp->nxttail[i];
1853 rdp->nxtcompleted[j] = rdp->nxtcompleted[i];
1854 }
1855
1856 /* Classify any remaining callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001857 return rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001858}
1859
1860/*
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001861 * Update CPU-local rcu_data state to record the beginnings and ends of
1862 * grace periods. The caller must hold the ->lock of the leaf rcu_node
1863 * structure corresponding to the current CPU, and must have irqs disabled.
Paul E. McKenney48a76392014-03-11 13:02:16 -07001864 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001865 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001866static bool __note_gp_changes(struct rcu_state *rsp, struct rcu_node *rnp,
1867 struct rcu_data *rdp)
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001868{
Paul E. McKenney48a76392014-03-11 13:02:16 -07001869 bool ret;
Paul E. McKenney3563a432016-07-28 09:39:11 -07001870 bool need_gp;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001871
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001872 /* Handle the ends of any preceding grace periods first. */
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001873 if (rdp->completed == rnp->completed &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001874 !unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001875
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001876 /* No grace period end, so just accelerate recent callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001877 ret = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001878
1879 } else {
1880
1881 /* Advance callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001882 ret = rcu_advance_cbs(rsp, rnp, rdp);
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001883
1884 /* Remember that we saw this grace-period completion. */
1885 rdp->completed = rnp->completed;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001886 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuend"));
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001887 }
Paul E. McKenney398ebe62013-03-19 10:53:14 -07001888
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001889 if (rdp->gpnum != rnp->gpnum || unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001890 /*
1891 * If the current grace period is waiting for this CPU,
1892 * set up to detect a quiescent state, otherwise don't
1893 * go looking for one.
1894 */
1895 rdp->gpnum = rnp->gpnum;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001896 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpustart"));
Paul E. McKenney3563a432016-07-28 09:39:11 -07001897 need_gp = !!(rnp->qsmask & rdp->grpmask);
1898 rdp->cpu_no_qs.b.norm = need_gp;
Paul E. McKenney5cd37192014-12-13 20:32:04 -08001899 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Paul E. McKenney3563a432016-07-28 09:39:11 -07001900 rdp->core_needs_qs = need_gp;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001901 zero_cpu_stall_ticks(rdp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001902 WRITE_ONCE(rdp->gpwrap, false);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001903 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001904 return ret;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001905}
1906
Paul E. McKenneyd34ea322013-03-19 11:10:43 -07001907static void note_gp_changes(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001908{
1909 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001910 bool needwake;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001911 struct rcu_node *rnp;
1912
1913 local_irq_save(flags);
1914 rnp = rdp->mynode;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001915 if ((rdp->gpnum == READ_ONCE(rnp->gpnum) &&
1916 rdp->completed == READ_ONCE(rnp->completed) &&
1917 !unlikely(READ_ONCE(rdp->gpwrap))) || /* w/out lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001918 !raw_spin_trylock_rcu_node(rnp)) { /* irqs already off, so later. */
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001919 local_irq_restore(flags);
1920 return;
1921 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001922 needwake = __note_gp_changes(rsp, rnp, rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001923 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001924 if (needwake)
1925 rcu_gp_kthread_wake(rsp);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001926}
1927
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001928static void rcu_gp_slow(struct rcu_state *rsp, int delay)
1929{
1930 if (delay > 0 &&
1931 !(rsp->gpnum % (rcu_num_nodes * PER_RCU_NODE_PERIOD * delay)))
1932 schedule_timeout_uninterruptible(delay);
1933}
1934
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001935/*
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001936 * Initialize a new grace period. Return false if no grace period required.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001937 */
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001938static bool rcu_gp_init(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001939{
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001940 unsigned long oldmask;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001941 struct rcu_data *rdp;
1942 struct rcu_node *rnp = rcu_get_root(rsp);
1943
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001944 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001945 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001946 if (!READ_ONCE(rsp->gp_flags)) {
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001947 /* Spurious wakeup, tell caller to go back to sleep. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001948 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001949 return false;
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001950 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001951 WRITE_ONCE(rsp->gp_flags, 0); /* Clear all flags: New grace period. */
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001952
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001953 if (WARN_ON_ONCE(rcu_gp_in_progress(rsp))) {
1954 /*
1955 * Grace period already in progress, don't start another.
1956 * Not supposed to be able to happen.
1957 */
Boqun Feng67c583a72015-12-29 12:18:47 +08001958 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001959 return false;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001960 }
1961
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001962 /* Advance to a new grace period and initialize state. */
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001963 record_gp_stall_check_time(rsp);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07001964 /* Record GP times before starting GP, hence smp_store_release(). */
1965 smp_store_release(&rsp->gpnum, rsp->gpnum + 1);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001966 trace_rcu_grace_period(rsp->name, rsp->gpnum, TPS("start"));
Boqun Feng67c583a72015-12-29 12:18:47 +08001967 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001968
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001969 /*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001970 * Apply per-leaf buffered online and offline operations to the
1971 * rcu_node tree. Note that this new grace period need not wait
1972 * for subsequent online CPUs, and that quiescent-state forcing
1973 * will handle subsequent offline CPUs.
1974 */
1975 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001976 rcu_gp_slow(rsp, gp_preinit_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001977 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001978 if (rnp->qsmaskinit == rnp->qsmaskinitnext &&
1979 !rnp->wait_blkd_tasks) {
1980 /* Nothing to do on this leaf rcu_node structure. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001981 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001982 continue;
1983 }
1984
1985 /* Record old state, apply changes to ->qsmaskinit field. */
1986 oldmask = rnp->qsmaskinit;
1987 rnp->qsmaskinit = rnp->qsmaskinitnext;
1988
1989 /* If zero-ness of ->qsmaskinit changed, propagate up tree. */
1990 if (!oldmask != !rnp->qsmaskinit) {
1991 if (!oldmask) /* First online CPU for this rcu_node. */
1992 rcu_init_new_rnp(rnp);
1993 else if (rcu_preempt_has_tasks(rnp)) /* blocked tasks */
1994 rnp->wait_blkd_tasks = true;
1995 else /* Last offline CPU and can propagate. */
1996 rcu_cleanup_dead_rnp(rnp);
1997 }
1998
1999 /*
2000 * If all waited-on tasks from prior grace period are
2001 * done, and if all this rcu_node structure's CPUs are
2002 * still offline, propagate up the rcu_node tree and
2003 * clear ->wait_blkd_tasks. Otherwise, if one of this
2004 * rcu_node structure's CPUs has since come back online,
2005 * simply clear ->wait_blkd_tasks (but rcu_cleanup_dead_rnp()
2006 * checks for this, so just call it unconditionally).
2007 */
2008 if (rnp->wait_blkd_tasks &&
2009 (!rcu_preempt_has_tasks(rnp) ||
2010 rnp->qsmaskinit)) {
2011 rnp->wait_blkd_tasks = false;
2012 rcu_cleanup_dead_rnp(rnp);
2013 }
2014
Boqun Feng67c583a72015-12-29 12:18:47 +08002015 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002016 }
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002017
2018 /*
2019 * Set the quiescent-state-needed bits in all the rcu_node
2020 * structures for all currently online CPUs in breadth-first order,
2021 * starting from the root rcu_node structure, relying on the layout
2022 * of the tree within the rsp->node[] array. Note that other CPUs
2023 * will access only the leaves of the hierarchy, thus seeing that no
2024 * grace period is in progress, at least until the corresponding
Paul E. McKenney590d1752016-04-10 08:23:24 -07002025 * leaf node has been initialized.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002026 *
2027 * The grace period cannot complete until the initialization
2028 * process finishes, because this kthread handles both.
2029 */
2030 rcu_for_each_node_breadth_first(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07002031 rcu_gp_slow(rsp, gp_init_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002032 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002033 rdp = this_cpu_ptr(rsp->rda);
2034 rcu_preempt_check_blocked_tasks(rnp);
2035 rnp->qsmask = rnp->qsmaskinit;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002036 WRITE_ONCE(rnp->gpnum, rsp->gpnum);
Lai Jiangshan3f47da02015-01-13 15:30:34 +08002037 if (WARN_ON_ONCE(rnp->completed != rsp->completed))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002038 WRITE_ONCE(rnp->completed, rsp->completed);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002039 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002040 (void)__note_gp_changes(rsp, rnp, rdp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002041 rcu_preempt_boost_start_gp(rnp);
2042 trace_rcu_grace_period_init(rsp->name, rnp->gpnum,
2043 rnp->level, rnp->grplo,
2044 rnp->grphi, rnp->qsmask);
Boqun Feng67c583a72015-12-29 12:18:47 +08002045 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002046 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002047 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002048 }
2049
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08002050 return true;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002051}
2052
2053/*
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002054 * Helper function for wait_event_interruptible_timeout() wakeup
2055 * at force-quiescent-state time.
2056 */
2057static bool rcu_gp_fqs_check_wake(struct rcu_state *rsp, int *gfp)
2058{
2059 struct rcu_node *rnp = rcu_get_root(rsp);
2060
2061 /* Someone like call_rcu() requested a force-quiescent-state scan. */
2062 *gfp = READ_ONCE(rsp->gp_flags);
2063 if (*gfp & RCU_GP_FLAG_FQS)
2064 return true;
2065
2066 /* The current grace period has completed. */
2067 if (!READ_ONCE(rnp->qsmask) && !rcu_preempt_blocked_readers_cgp(rnp))
2068 return true;
2069
2070 return false;
2071}
2072
2073/*
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002074 * Do one round of quiescent-state forcing.
2075 */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002076static void rcu_gp_fqs(struct rcu_state *rsp, bool first_time)
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002077{
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002078 bool isidle = false;
2079 unsigned long maxj;
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002080 struct rcu_node *rnp = rcu_get_root(rsp);
2081
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002082 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002083 rsp->n_force_qs++;
Petr Mladek77f81fe2015-09-09 12:09:49 -07002084 if (first_time) {
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002085 /* Collect dyntick-idle snapshots. */
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002086 if (is_sysidle_rcu_state(rsp)) {
Pranith Kumare02b2ed2014-07-09 00:08:17 -04002087 isidle = true;
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002088 maxj = jiffies - ULONG_MAX / 4;
2089 }
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002090 force_qs_rnp(rsp, dyntick_save_progress_counter,
2091 &isidle, &maxj);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002092 rcu_sysidle_report_gp(rsp, isidle, maxj);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002093 } else {
2094 /* Handle dyntick-idle and offline CPUs. */
Paul E. McKenney675da672015-02-23 15:57:07 -08002095 isidle = true;
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002096 force_qs_rnp(rsp, rcu_implicit_dynticks_qs, &isidle, &maxj);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002097 }
2098 /* Clear flag to prevent immediate re-entry. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002099 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002100 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002101 WRITE_ONCE(rsp->gp_flags,
2102 READ_ONCE(rsp->gp_flags) & ~RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002103 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002104 }
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002105}
2106
2107/*
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002108 * Clean up after the old grace period.
2109 */
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002110static void rcu_gp_cleanup(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002111{
2112 unsigned long gp_duration;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002113 bool needgp = false;
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002114 int nocb = 0;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002115 struct rcu_data *rdp;
2116 struct rcu_node *rnp = rcu_get_root(rsp);
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002117 struct swait_queue_head *sq;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002118
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002119 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002120 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002121 gp_duration = jiffies - rsp->gp_start;
2122 if (gp_duration > rsp->gp_max)
2123 rsp->gp_max = gp_duration;
2124
2125 /*
2126 * We know the grace period is complete, but to everyone else
2127 * it appears to still be ongoing. But it is also the case
2128 * that to everyone else it looks like there is nothing that
2129 * they can do to advance the grace period. It is therefore
2130 * safe for us to drop the lock in order to mark the grace
2131 * period as completed in all of the rcu_node structures.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002132 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002133 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002134
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002135 /*
2136 * Propagate new ->completed value to rcu_node structures so
2137 * that other CPUs don't have to wait until the start of the next
2138 * grace period to process their callbacks. This also avoids
2139 * some nasty RCU grace-period initialization races by forcing
2140 * the end of the current grace period to be completely recorded in
2141 * all of the rcu_node structures before the beginning of the next
2142 * grace period is recorded in any of the rcu_node structures.
2143 */
2144 rcu_for_each_node_breadth_first(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002145 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney5c60d252015-02-09 05:37:47 -08002146 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
2147 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002148 WRITE_ONCE(rnp->completed, rsp->gpnum);
Paul E. McKenneyb11cc5762012-12-17 14:21:14 -08002149 rdp = this_cpu_ptr(rsp->rda);
2150 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002151 needgp = __note_gp_changes(rsp, rnp, rdp) || needgp;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002152 /* smp_mb() provided by prior unlock-lock pair. */
Paul E. McKenney0446be42012-12-30 15:21:01 -08002153 nocb += rcu_future_gp_cleanup(rsp, rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002154 sq = rcu_nocb_gp_get(rnp);
Boqun Feng67c583a72015-12-29 12:18:47 +08002155 raw_spin_unlock_irq_rcu_node(rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002156 rcu_nocb_gp_cleanup(sq);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002157 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002158 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07002159 rcu_gp_slow(rsp, gp_cleanup_delay);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002160 }
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002161 rnp = rcu_get_root(rsp);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002162 raw_spin_lock_irq_rcu_node(rnp); /* Order GP before ->completed update. */
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002163 rcu_nocb_gp_set(rnp, nocb);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002164
Paul E. McKenney765a3f42014-03-14 16:37:08 -07002165 /* Declare grace period done. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002166 WRITE_ONCE(rsp->completed, rsp->gpnum);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002167 trace_rcu_grace_period(rsp->name, rsp->completed, TPS("end"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002168 rsp->gp_state = RCU_GP_IDLE;
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002169 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002170 /* Advance CBs to reduce false positives below. */
2171 needgp = rcu_advance_cbs(rsp, rnp, rdp) || needgp;
2172 if (needgp || cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002173 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002174 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002175 READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002176 TPS("newreq"));
2177 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002178 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002179}
2180
2181/*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002182 * Body of kthread that handles grace periods.
2183 */
Paul E. McKenney755609a2012-06-19 17:18:20 -07002184static int __noreturn rcu_gp_kthread(void *arg)
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002185{
Petr Mladek77f81fe2015-09-09 12:09:49 -07002186 bool first_gp_fqs;
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002187 int gf;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002188 unsigned long j;
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002189 int ret;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002190 struct rcu_state *rsp = arg;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002191 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002192
Paul E. McKenney58719682015-02-24 11:05:36 -08002193 rcu_bind_gp_kthread();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002194 for (;;) {
2195
2196 /* Handle grace-period start. */
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002197 for (;;) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002198 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002199 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002200 TPS("reqwait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002201 rsp->gp_state = RCU_GP_WAIT_GPS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002202 swait_event_interruptible(rsp->gp_wq,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002203 READ_ONCE(rsp->gp_flags) &
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002204 RCU_GP_FLAG_INIT);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002205 rsp->gp_state = RCU_GP_DONE_GPS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002206 /* Locking provides needed memory barrier. */
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07002207 if (rcu_gp_init(rsp))
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002208 break;
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002209 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002210 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002211 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002212 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002213 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002214 TPS("reqwaitsig"));
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002215 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002216
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002217 /* Handle quiescent-state forcing. */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002218 first_gp_fqs = true;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002219 j = jiffies_till_first_fqs;
2220 if (j > HZ) {
2221 j = HZ;
2222 jiffies_till_first_fqs = HZ;
2223 }
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002224 ret = 0;
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002225 for (;;) {
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002226 if (!ret) {
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002227 rsp->jiffies_force_qs = jiffies + j;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002228 WRITE_ONCE(rsp->jiffies_kick_kthreads,
2229 jiffies + 3 * j);
2230 }
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002231 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002232 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002233 TPS("fqswait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002234 rsp->gp_state = RCU_GP_WAIT_FQS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002235 ret = swait_event_interruptible_timeout(rsp->gp_wq,
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002236 rcu_gp_fqs_check_wake(rsp, &gf), j);
Paul E. McKenney32bb1c72015-07-02 12:27:31 -07002237 rsp->gp_state = RCU_GP_DOING_FQS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002238 /* Locking provides needed memory barriers. */
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002239 /* If grace period done, leave loop. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002240 if (!READ_ONCE(rnp->qsmask) &&
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002241 !rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002242 break;
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002243 /* If time for quiescent-state forcing, do it. */
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002244 if (ULONG_CMP_GE(jiffies, rsp->jiffies_force_qs) ||
2245 (gf & RCU_GP_FLAG_FQS)) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002246 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002247 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002248 TPS("fqsstart"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002249 rcu_gp_fqs(rsp, first_gp_fqs);
2250 first_gp_fqs = false;
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("fqsend"));
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002254 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002255 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002256 ret = 0; /* Force full wait till next FQS. */
2257 j = jiffies_till_next_fqs;
2258 if (j > HZ) {
2259 j = HZ;
2260 jiffies_till_next_fqs = HZ;
2261 } else if (j < 1) {
2262 j = 1;
2263 jiffies_till_next_fqs = 1;
2264 }
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002265 } else {
2266 /* Deal with stray signal. */
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002267 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002268 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002269 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002270 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002271 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002272 TPS("fqswaitsig"));
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002273 ret = 1; /* Keep old FQS timing. */
2274 j = jiffies;
2275 if (time_after(jiffies, rsp->jiffies_force_qs))
2276 j = 1;
2277 else
2278 j = rsp->jiffies_force_qs - j;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002279 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002280 }
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002281
2282 /* Handle grace-period end. */
Paul E. McKenney319362c2015-05-19 14:16:52 -07002283 rsp->gp_state = RCU_GP_CLEANUP;
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002284 rcu_gp_cleanup(rsp);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002285 rsp->gp_state = RCU_GP_CLEANED;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002286 }
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002287}
2288
2289/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002290 * Start a new RCU grace period if warranted, re-initializing the hierarchy
2291 * in preparation for detecting the next grace period. The caller must hold
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002292 * the root node's ->lock and hard irqs must be disabled.
Paul E. McKenneye5601402012-01-07 11:03:57 -08002293 *
2294 * Note that it is legal for a dying CPU (which is marked as offline) to
2295 * invoke this function. This can happen when the dying CPU reports its
2296 * quiescent state.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002297 *
2298 * Returns true if the grace-period kthread must be awakened.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002299 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002300static bool
Paul E. McKenney910ee452012-12-31 02:24:21 -08002301rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
2302 struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002303{
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002304 if (!rsp->gp_kthread || !cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002305 /*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002306 * Either we have not yet spawned the grace-period
Paul E. McKenney62da1922012-09-20 16:02:49 -07002307 * task, this CPU does not need another grace period,
2308 * or a grace period is already in progress.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002309 * Either way, don't start a new grace period.
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002310 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002311 return false;
Paul E. McKenneyafe24b12011-08-24 16:52:09 -07002312 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002313 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
2314 trace_rcu_grace_period(rsp->name, READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002315 TPS("newreq"));
Paul E. McKenney62da1922012-09-20 16:02:49 -07002316
Steven Rostedt016a8d52013-05-28 17:32:53 -04002317 /*
2318 * We can't do wakeups while holding the rnp->lock, as that
Paul E. McKenney1eafd312013-06-20 13:50:40 -07002319 * could cause possible deadlocks with the rq->lock. Defer
Paul E. McKenney48a76392014-03-11 13:02:16 -07002320 * the wakeup to our caller.
Steven Rostedt016a8d52013-05-28 17:32:53 -04002321 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002322 return true;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002323}
2324
2325/*
Paul E. McKenney910ee452012-12-31 02:24:21 -08002326 * Similar to rcu_start_gp_advanced(), but also advance the calling CPU's
2327 * callbacks. Note that rcu_start_gp_advanced() cannot do this because it
2328 * is invoked indirectly from rcu_advance_cbs(), which would result in
2329 * endless recursion -- or would do so if it wasn't for the self-deadlock
2330 * that is encountered beforehand.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002331 *
2332 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenney910ee452012-12-31 02:24:21 -08002333 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002334static bool rcu_start_gp(struct rcu_state *rsp)
Paul E. McKenney910ee452012-12-31 02:24:21 -08002335{
2336 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
2337 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002338 bool ret = false;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002339
2340 /*
2341 * If there is no grace period in progress right now, any
2342 * callbacks we have up to this point will be satisfied by the
2343 * next grace period. Also, advancing the callbacks reduces the
2344 * probability of false positives from cpu_needs_another_gp()
2345 * resulting in pointless grace periods. So, advance callbacks
2346 * then start the grace period!
2347 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002348 ret = rcu_advance_cbs(rsp, rnp, rdp) || ret;
2349 ret = rcu_start_gp_advanced(rsp, rnp, rdp) || ret;
2350 return ret;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002351}
2352
2353/*
Paul E. McKenney89945152015-12-10 09:59:43 -08002354 * Report a full set of quiescent states to the specified rcu_state data
2355 * structure. Invoke rcu_gp_kthread_wake() to awaken the grace-period
2356 * kthread if another grace period is required. Whether we wake
2357 * the grace-period kthread or it awakens itself for the next round
2358 * of quiescent-state forcing, that kthread will clean up after the
2359 * just-completed grace period. Note that the caller must hold rnp->lock,
2360 * which is released before return.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002361 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002362static void rcu_report_qs_rsp(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -07002363 __releases(rcu_get_root(rsp)->lock)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002364{
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -07002365 WARN_ON_ONCE(!rcu_gp_in_progress(rsp));
Paul E. McKenneycd73ca22015-03-16 11:53:52 -07002366 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002367 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Jisheng Zhang94d44772016-06-22 17:19:27 +08002368 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002369}
2370
2371/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002372 * Similar to rcu_report_qs_rdp(), for which it is a helper function.
2373 * Allows quiescent states for a group of CPUs to be reported at one go
2374 * to the specified rcu_node structure, though all the CPUs in the group
Paul E. McKenney654e9532015-03-15 09:19:35 -07002375 * must be represented by the same rcu_node structure (which need not be a
2376 * leaf rcu_node structure, though it often will be). The gps parameter
2377 * is the grace-period snapshot, which means that the quiescent states
2378 * are valid only if rnp->gpnum is equal to gps. That structure's lock
2379 * must be held upon entry, and it is released before return.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002380 */
2381static void
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002382rcu_report_qs_rnp(unsigned long mask, struct rcu_state *rsp,
Paul E. McKenney654e9532015-03-15 09:19:35 -07002383 struct rcu_node *rnp, unsigned long gps, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002384 __releases(rnp->lock)
2385{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002386 unsigned long oldmask = 0;
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002387 struct rcu_node *rnp_c;
2388
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002389 /* Walk up the rcu_node hierarchy. */
2390 for (;;) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002391 if (!(rnp->qsmask & mask) || rnp->gpnum != gps) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002392
Paul E. McKenney654e9532015-03-15 09:19:35 -07002393 /*
2394 * Our bit has already been cleared, or the
2395 * relevant grace period is already over, so done.
2396 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002397 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002398 return;
2399 }
Paul E. McKenney654e9532015-03-15 09:19:35 -07002400 WARN_ON_ONCE(oldmask); /* Any child must be all zeroed! */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002401 rnp->qsmask &= ~mask;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07002402 trace_rcu_quiescent_state_report(rsp->name, rnp->gpnum,
2403 mask, rnp->qsmask, rnp->level,
2404 rnp->grplo, rnp->grphi,
2405 !!rnp->gp_tasks);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002406 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002407
2408 /* Other bits still set at this level, so done. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002409 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002410 return;
2411 }
2412 mask = rnp->grpmask;
2413 if (rnp->parent == NULL) {
2414
2415 /* No more levels. Exit loop holding root lock. */
2416
2417 break;
2418 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002419 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002420 rnp_c = rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002421 rnp = rnp->parent;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002422 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney654e9532015-03-15 09:19:35 -07002423 oldmask = rnp_c->qsmask;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002424 }
2425
2426 /*
2427 * Get here if we are the last CPU to pass through a quiescent
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002428 * state for this grace period. Invoke rcu_report_qs_rsp()
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002429 * to clean up and start the next grace period if one is needed.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002430 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002431 rcu_report_qs_rsp(rsp, flags); /* releases rnp->lock. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002432}
2433
2434/*
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002435 * Record a quiescent state for all tasks that were previously queued
2436 * on the specified rcu_node structure and that were blocking the current
2437 * RCU grace period. The caller must hold the specified rnp->lock with
2438 * irqs disabled, and this lock is released upon return, but irqs remain
2439 * disabled.
2440 */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002441static void rcu_report_unblock_qs_rnp(struct rcu_state *rsp,
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002442 struct rcu_node *rnp, unsigned long flags)
2443 __releases(rnp->lock)
2444{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002445 unsigned long gps;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002446 unsigned long mask;
2447 struct rcu_node *rnp_p;
2448
Paul E. McKenneya77da142015-03-08 14:52:27 -07002449 if (rcu_state_p == &rcu_sched_state || rsp != rcu_state_p ||
2450 rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002451 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002452 return; /* Still need more quiescent states! */
2453 }
2454
2455 rnp_p = rnp->parent;
2456 if (rnp_p == NULL) {
2457 /*
Paul E. McKenneya77da142015-03-08 14:52:27 -07002458 * Only one rcu_node structure in the tree, so don't
2459 * try to report up to its nonexistent parent!
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002460 */
2461 rcu_report_qs_rsp(rsp, flags);
2462 return;
2463 }
2464
Paul E. McKenney654e9532015-03-15 09:19:35 -07002465 /* Report up the rest of the hierarchy, tracking current ->gpnum. */
2466 gps = rnp->gpnum;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002467 mask = rnp->grpmask;
Boqun Feng67c583a72015-12-29 12:18:47 +08002468 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002469 raw_spin_lock_rcu_node(rnp_p); /* irqs already disabled. */
Paul E. McKenney654e9532015-03-15 09:19:35 -07002470 rcu_report_qs_rnp(mask, rsp, rnp_p, gps, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002471}
2472
2473/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002474 * Record a quiescent state for the specified CPU to that CPU's rcu_data
Paul E. McKenney4b455dc2016-01-27 22:44:45 -08002475 * structure. This must be called from the specified CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002476 */
2477static void
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002478rcu_report_qs_rdp(int cpu, struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002479{
2480 unsigned long flags;
2481 unsigned long mask;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002482 bool needwake;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002483 struct rcu_node *rnp;
2484
2485 rnp = rdp->mynode;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002486 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002487 if ((rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002488 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) ||
2489 rdp->gpnum != rnp->gpnum || rnp->completed == rnp->gpnum ||
2490 rdp->gpwrap) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002491
2492 /*
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -07002493 * The grace period in which this quiescent state was
2494 * recorded has ended, so don't report it upwards.
2495 * We will instead need a new quiescent state that lies
2496 * within the current grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002497 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002498 rdp->cpu_no_qs.b.norm = true; /* need qs for new gp. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002499 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Boqun Feng67c583a72015-12-29 12:18:47 +08002500 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002501 return;
2502 }
2503 mask = rdp->grpmask;
2504 if ((rnp->qsmask & mask) == 0) {
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 } else {
Paul E. McKenneybb53e412015-12-10 09:30:12 -08002507 rdp->core_needs_qs = false;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002508
2509 /*
2510 * This GP can't end until cpu checks in, so all of our
2511 * callbacks can be processed during the next GP.
2512 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002513 needwake = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002514
Paul E. McKenney654e9532015-03-15 09:19:35 -07002515 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
2516 /* ^^^ Released rnp->lock */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002517 if (needwake)
2518 rcu_gp_kthread_wake(rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002519 }
2520}
2521
2522/*
2523 * Check to see if there is a new grace period of which this CPU
2524 * is not yet aware, and if so, set up local rcu_data state for it.
2525 * Otherwise, see if this CPU has just passed through its first
2526 * quiescent state for this grace period, and record that fact if so.
2527 */
2528static void
2529rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp)
2530{
Paul E. McKenney05eb5522013-03-19 12:38:24 -07002531 /* Check for grace-period ends and beginnings. */
2532 note_gp_changes(rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002533
2534 /*
2535 * Does this CPU still need to do its part for current grace period?
2536 * If no, return and let the other CPUs do their part as well.
2537 */
Paul E. McKenney97c668b2015-08-06 11:31:51 -07002538 if (!rdp->core_needs_qs)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002539 return;
2540
2541 /*
2542 * Was there a quiescent state since the beginning of the grace
2543 * period? If no, then exit and wait for the next call.
2544 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002545 if (rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002546 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002547 return;
2548
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002549 /*
2550 * Tell RCU we are done (but rcu_report_qs_rdp() will be the
2551 * judge of that).
2552 */
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002553 rcu_report_qs_rdp(rdp->cpu, rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002554}
2555
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002556/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002557 * Send the specified CPU's RCU callbacks to the orphanage. The
2558 * specified CPU must be offline, and the caller must hold the
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002559 * ->orphan_lock.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002560 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002561static void
2562rcu_send_cbs_to_orphanage(int cpu, struct rcu_state *rsp,
2563 struct rcu_node *rnp, struct rcu_data *rdp)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002564{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002565 /* No-CBs CPUs do not have orphanable callbacks. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002566 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) || rcu_is_nocb_cpu(rdp->cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002567 return;
2568
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002569 /*
2570 * Orphan the callbacks. First adjust the counts. This is safe
Paul E. McKenneyabfd6e52012-09-20 16:59:47 -07002571 * because _rcu_barrier() excludes CPU-hotplug operations, so it
2572 * cannot be running now. Thus no memory barrier is required.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002573 */
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002574 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002575 rsp->qlen_lazy += rdp->qlen_lazy;
2576 rsp->qlen += rdp->qlen;
2577 rdp->n_cbs_orphaned += rdp->qlen;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002578 rdp->qlen_lazy = 0;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002579 WRITE_ONCE(rdp->qlen, 0);
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002580 }
2581
2582 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002583 * Next, move those callbacks still needing a grace period to
2584 * the orphanage, where some other CPU will pick them up.
2585 * Some of the callbacks might have gone partway through a grace
2586 * period, but that is too bad. They get to start over because we
2587 * cannot assume that grace periods are synchronized across CPUs.
2588 * We don't bother updating the ->nxttail[] array yet, instead
2589 * we just reset the whole thing later on.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002590 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002591 if (*rdp->nxttail[RCU_DONE_TAIL] != NULL) {
2592 *rsp->orphan_nxttail = *rdp->nxttail[RCU_DONE_TAIL];
2593 rsp->orphan_nxttail = rdp->nxttail[RCU_NEXT_TAIL];
2594 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002595 }
2596
2597 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002598 * Then move the ready-to-invoke callbacks to the orphanage,
2599 * where some other CPU will pick them up. These will not be
2600 * required to pass though another grace period: They are done.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002601 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002602 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002603 *rsp->orphan_donetail = rdp->nxtlist;
2604 rsp->orphan_donetail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneye5601402012-01-07 11:03:57 -08002605 }
Lai Jiangshan29494be2010-10-20 14:13:06 +08002606
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002607 /*
2608 * Finally, initialize the rcu_data structure's list to empty and
2609 * disallow further callbacks on this CPU.
2610 */
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07002611 init_callback_list(rdp);
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002612 rdp->nxttail[RCU_NEXT_TAIL] = NULL;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002613}
2614
2615/*
2616 * Adopt the RCU callbacks from the specified rcu_state structure's
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002617 * orphanage. The caller must hold the ->orphan_lock.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002618 */
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002619static void rcu_adopt_orphan_cbs(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002620{
2621 int i;
Christoph Lameterfa07a582014-04-15 12:20:12 -07002622 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002623
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002624 /* No-CBs CPUs are handled specially. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002625 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2626 rcu_nocb_adopt_orphan_cbs(rsp, rdp, flags))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002627 return;
2628
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002629 /* Do the accounting first. */
2630 rdp->qlen_lazy += rsp->qlen_lazy;
2631 rdp->qlen += rsp->qlen;
2632 rdp->n_cbs_adopted += rsp->qlen;
Paul E. McKenney8f5af6f2012-05-04 08:31:53 -07002633 if (rsp->qlen_lazy != rsp->qlen)
2634 rcu_idle_count_callbacks_posted();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002635 rsp->qlen_lazy = 0;
2636 rsp->qlen = 0;
2637
2638 /*
2639 * We do not need a memory barrier here because the only way we
2640 * can get here if there is an rcu_barrier() in flight is if
2641 * we are the task doing the rcu_barrier().
2642 */
2643
2644 /* First adopt the ready-to-invoke callbacks. */
2645 if (rsp->orphan_donelist != NULL) {
2646 *rsp->orphan_donetail = *rdp->nxttail[RCU_DONE_TAIL];
2647 *rdp->nxttail[RCU_DONE_TAIL] = rsp->orphan_donelist;
2648 for (i = RCU_NEXT_SIZE - 1; i >= RCU_DONE_TAIL; i--)
2649 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2650 rdp->nxttail[i] = rsp->orphan_donetail;
2651 rsp->orphan_donelist = NULL;
2652 rsp->orphan_donetail = &rsp->orphan_donelist;
2653 }
2654
2655 /* And then adopt the callbacks that still need a grace period. */
2656 if (rsp->orphan_nxtlist != NULL) {
2657 *rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxtlist;
2658 rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxttail;
2659 rsp->orphan_nxtlist = NULL;
2660 rsp->orphan_nxttail = &rsp->orphan_nxtlist;
2661 }
2662}
2663
2664/*
2665 * Trace the fact that this CPU is going offline.
2666 */
2667static void rcu_cleanup_dying_cpu(struct rcu_state *rsp)
2668{
2669 RCU_TRACE(unsigned long mask);
2670 RCU_TRACE(struct rcu_data *rdp = this_cpu_ptr(rsp->rda));
2671 RCU_TRACE(struct rcu_node *rnp = rdp->mynode);
2672
Paul E. McKenneyea463512015-03-03 14:05:26 -08002673 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2674 return;
2675
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002676 RCU_TRACE(mask = rdp->grpmask);
Paul E. McKenneye5601402012-01-07 11:03:57 -08002677 trace_rcu_grace_period(rsp->name,
2678 rnp->gpnum + 1 - !!(rnp->qsmask & mask),
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002679 TPS("cpuofl"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002680}
2681
2682/*
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002683 * All CPUs for the specified rcu_node structure have gone offline,
2684 * and all tasks that were preempted within an RCU read-side critical
2685 * section while running on one of those CPUs have since exited their RCU
2686 * read-side critical section. Some other CPU is reporting this fact with
2687 * the specified rcu_node structure's ->lock held and interrupts disabled.
2688 * This function therefore goes up the tree of rcu_node structures,
2689 * clearing the corresponding bits in the ->qsmaskinit fields. Note that
2690 * the leaf rcu_node structure's ->qsmaskinit field has already been
2691 * updated
2692 *
2693 * This function does check that the specified rcu_node structure has
2694 * all CPUs offline and no blocked tasks, so it is OK to invoke it
2695 * prematurely. That said, invoking it after the fact will cost you
2696 * a needless lock acquisition. So once it has done its work, don't
2697 * invoke it again.
2698 */
2699static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf)
2700{
2701 long mask;
2702 struct rcu_node *rnp = rnp_leaf;
2703
Paul E. McKenneyea463512015-03-03 14:05:26 -08002704 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2705 rnp->qsmaskinit || rcu_preempt_has_tasks(rnp))
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002706 return;
2707 for (;;) {
2708 mask = rnp->grpmask;
2709 rnp = rnp->parent;
2710 if (!rnp)
2711 break;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002712 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002713 rnp->qsmaskinit &= ~mask;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002714 rnp->qsmask &= ~mask;
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002715 if (rnp->qsmaskinit) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002716 raw_spin_unlock_rcu_node(rnp);
2717 /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002718 return;
2719 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002720 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002721 }
2722}
2723
2724/*
Paul E. McKenneye5601402012-01-07 11:03:57 -08002725 * The CPU has been completely removed, and some other CPU is reporting
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002726 * this fact from process context. Do the remainder of the cleanup,
2727 * including orphaning the outgoing CPU's RCU callbacks, and also
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07002728 * adopting them. There can only be one CPU hotplug operation at a time,
2729 * so no other CPU can be attempting to update rcu_cpu_kthread_task.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002730 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002731static void rcu_cleanup_dead_cpu(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002732{
Paul E. McKenney2036d942012-01-30 17:02:47 -08002733 unsigned long flags;
Paul E. McKenneye5601402012-01-07 11:03:57 -08002734 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002735 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002736
Paul E. McKenneyea463512015-03-03 14:05:26 -08002737 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2738 return;
2739
Paul E. McKenney2036d942012-01-30 17:02:47 -08002740 /* Adjust any no-longer-needed kthreads. */
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00002741 rcu_boost_kthread_setaffinity(rnp, -1);
Paul E. McKenney2036d942012-01-30 17:02:47 -08002742
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002743 /* Orphan the dead CPU's callbacks, and adopt them if appropriate. */
Paul E. McKenney78043c42015-01-18 17:46:24 -08002744 raw_spin_lock_irqsave(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002745 rcu_send_cbs_to_orphanage(cpu, rsp, rnp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002746 rcu_adopt_orphan_cbs(rsp, flags);
Paul E. McKenneya8f4cba2014-10-31 13:48:41 -07002747 raw_spin_unlock_irqrestore(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002748
Paul E. McKenneycf015372012-06-21 11:26:42 -07002749 WARN_ONCE(rdp->qlen != 0 || rdp->nxtlist != NULL,
2750 "rcu_cleanup_dead_cpu: Callbacks on offline CPU %d: qlen=%lu, nxtlist=%p\n",
2751 cpu, rdp->qlen, rdp->nxtlist);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002752}
2753
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002754/*
2755 * Invoke any RCU callbacks that have made it to the end of their grace
2756 * period. Thottle as specified by rdp->blimit.
2757 */
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002758static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002759{
2760 unsigned long flags;
2761 struct rcu_head *next, *list, **tail;
Eric Dumazet878d7432012-10-18 04:55:36 -07002762 long bl, count, count_lazy;
2763 int i;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002764
Paul E. McKenneydc35c892012-12-03 13:52:00 -08002765 /* If no callbacks are ready, just return. */
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002766 if (!cpu_has_callbacks_ready_to_invoke(rdp)) {
Paul E. McKenney486e2592012-01-06 14:11:30 -08002767 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, 0);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002768 trace_rcu_batch_end(rsp->name, 0, !!READ_ONCE(rdp->nxtlist),
Paul E. McKenney4968c302011-12-07 16:32:40 -08002769 need_resched(), is_idle_task(current),
2770 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002771 return;
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002772 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002773
2774 /*
2775 * Extract the list of ready callbacks, disabling to prevent
2776 * races with call_rcu() from interrupt handlers.
2777 */
2778 local_irq_save(flags);
Paul E. McKenney8146c4e22012-01-10 14:23:29 -08002779 WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002780 bl = rdp->blimit;
Paul E. McKenney486e2592012-01-06 14:11:30 -08002781 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, bl);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002782 list = rdp->nxtlist;
2783 rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL];
2784 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
2785 tail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002786 for (i = RCU_NEXT_SIZE - 1; i >= 0; i--)
2787 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2788 rdp->nxttail[i] = &rdp->nxtlist;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002789 local_irq_restore(flags);
2790
2791 /* Invoke callbacks. */
Paul E. McKenney486e2592012-01-06 14:11:30 -08002792 count = count_lazy = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002793 while (list) {
2794 next = list->next;
2795 prefetch(next);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -04002796 debug_rcu_head_unqueue(list);
Paul E. McKenney486e2592012-01-06 14:11:30 -08002797 if (__rcu_reclaim(rsp->name, list))
2798 count_lazy++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002799 list = next;
Paul E. McKenneydff16722011-11-29 15:57:13 -08002800 /* Stop only if limit reached and CPU has something to do. */
2801 if (++count >= bl &&
2802 (need_resched() ||
2803 (!is_idle_task(current) && !rcu_is_callbacks_kthread())))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002804 break;
2805 }
2806
2807 local_irq_save(flags);
Paul E. McKenney4968c302011-12-07 16:32:40 -08002808 trace_rcu_batch_end(rsp->name, count, !!list, need_resched(),
2809 is_idle_task(current),
2810 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002811
2812 /* Update count, and requeue any remaining callbacks. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002813 if (list != NULL) {
2814 *tail = rdp->nxtlist;
2815 rdp->nxtlist = list;
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002816 for (i = 0; i < RCU_NEXT_SIZE; i++)
2817 if (&rdp->nxtlist == rdp->nxttail[i])
2818 rdp->nxttail[i] = tail;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002819 else
2820 break;
2821 }
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002822 smp_mb(); /* List handling before counting for rcu_barrier(). */
2823 rdp->qlen_lazy -= count_lazy;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002824 WRITE_ONCE(rdp->qlen, rdp->qlen - count);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002825 rdp->n_cbs_invoked += count;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002826
2827 /* Reinstate batch limit if we have worked down the excess. */
2828 if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark)
2829 rdp->blimit = blimit;
2830
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002831 /* Reset ->qlen_last_fqs_check trigger if enough CBs have drained. */
2832 if (rdp->qlen == 0 && rdp->qlen_last_fqs_check != 0) {
2833 rdp->qlen_last_fqs_check = 0;
2834 rdp->n_force_qs_snap = rsp->n_force_qs;
2835 } else if (rdp->qlen < rdp->qlen_last_fqs_check - qhimark)
2836 rdp->qlen_last_fqs_check = rdp->qlen;
Paul E. McKenneycfca9272012-06-25 12:54:17 -07002837 WARN_ON_ONCE((rdp->nxtlist == NULL) != (rdp->qlen == 0));
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002838
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002839 local_irq_restore(flags);
2840
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002841 /* Re-invoke RCU core processing if there are callbacks remaining. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002842 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002843 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002844}
2845
2846/*
2847 * Check to see if this CPU is in a non-context-switch quiescent state
2848 * (user mode or idle loop for rcu, non-softirq execution for rcu_bh).
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002849 * Also schedule RCU core processing.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002850 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002851 * This function must be called from hardirq context. It is normally
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002852 * invoked from the scheduling-clock interrupt. If rcu_pending returns
2853 * false, there is no point in invoking rcu_check_callbacks().
2854 */
Paul E. McKenneyc3377c2d2014-10-21 07:53:02 -07002855void rcu_check_callbacks(int user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002856{
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002857 trace_rcu_utilization(TPS("Start scheduler-tick"));
Paul E. McKenneya858af22012-01-16 13:29:10 -08002858 increment_cpu_stall_ticks();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002859 if (user || rcu_is_cpu_rrupt_from_idle()) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002860
2861 /*
2862 * Get here if this CPU took its interrupt from user
2863 * mode or from the idle loop, and if this is not a
2864 * nested interrupt. In this case, the CPU is in
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002865 * a quiescent state, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002866 *
2867 * No memory barrier is required here because both
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002868 * rcu_sched_qs() and rcu_bh_qs() reference only CPU-local
2869 * variables that other CPUs neither access nor modify,
2870 * at least not while the corresponding CPU is online.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002871 */
2872
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002873 rcu_sched_qs();
2874 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002875
2876 } else if (!in_softirq()) {
2877
2878 /*
2879 * Get here if this CPU did not take its interrupt from
2880 * softirq, in other words, if it is not interrupting
2881 * a rcu_bh read-side critical section. This is an _bh
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002882 * critical section, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002883 */
2884
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002885 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002886 }
Paul E. McKenney86aea0e2014-10-21 08:12:00 -07002887 rcu_preempt_check_callbacks();
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07002888 if (rcu_pending())
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002889 invoke_rcu_core();
Paul E. McKenney8315f422014-06-27 13:42:20 -07002890 if (user)
2891 rcu_note_voluntary_context_switch(current);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002892 trace_rcu_utilization(TPS("End scheduler-tick"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002893}
2894
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002895/*
2896 * Scan the leaf rcu_node structures, processing dyntick state for any that
2897 * have not yet encountered a quiescent state, using the function specified.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002898 * Also initiate boosting for any threads blocked on the root rcu_node.
2899 *
Paul E. McKenneyee47eb92010-01-04 15:09:07 -08002900 * The caller must have suppressed start of new grace periods.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002901 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002902static void force_qs_rnp(struct rcu_state *rsp,
2903 int (*f)(struct rcu_data *rsp, bool *isidle,
2904 unsigned long *maxj),
2905 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002906{
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002907 int cpu;
2908 unsigned long flags;
2909 unsigned long mask;
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002910 struct rcu_node *rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002911
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002912 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002913 cond_resched_rcu_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002914 mask = 0;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002915 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002916 if (rnp->qsmask == 0) {
Paul E. McKenneya77da142015-03-08 14:52:27 -07002917 if (rcu_state_p == &rcu_sched_state ||
2918 rsp != rcu_state_p ||
2919 rcu_preempt_blocked_readers_cgp(rnp)) {
2920 /*
2921 * No point in scanning bits because they
2922 * are all zero. But we might need to
2923 * priority-boost blocked readers.
2924 */
2925 rcu_initiate_boost(rnp, flags);
2926 /* rcu_initiate_boost() releases rnp->lock */
2927 continue;
2928 }
2929 if (rnp->parent &&
2930 (rnp->parent->qsmask & rnp->grpmask)) {
2931 /*
2932 * Race between grace-period
2933 * initialization and task exiting RCU
2934 * read-side critical section: Report.
2935 */
2936 rcu_report_unblock_qs_rnp(rsp, rnp, flags);
2937 /* rcu_report_unblock_qs_rnp() rlses ->lock */
2938 continue;
2939 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002940 }
Mark Rutlandbc75e992016-06-03 15:20:04 +01002941 for_each_leaf_node_possible_cpu(rnp, cpu) {
2942 unsigned long bit = leaf_node_cpu_bit(rnp, cpu);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002943 if ((rnp->qsmask & bit) != 0) {
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002944 if (f(per_cpu_ptr(rsp->rda, cpu), isidle, maxj))
2945 mask |= bit;
2946 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002947 }
Paul E. McKenney45f014c52e2010-01-04 15:09:08 -08002948 if (mask != 0) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002949 /* Idle/offline CPUs, report (releases rnp->lock. */
2950 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002951 } else {
2952 /* Nothing to do here, so just drop the lock. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002953 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002954 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002955 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002956}
2957
2958/*
2959 * Force quiescent states on reluctant CPUs, and also detect which
2960 * CPUs are in dyntick-idle mode.
2961 */
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002962static void force_quiescent_state(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002963{
2964 unsigned long flags;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002965 bool ret;
2966 struct rcu_node *rnp;
2967 struct rcu_node *rnp_old = NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002968
Paul E. McKenney394f2762012-06-26 17:00:35 -07002969 /* Funnel through hierarchy to reduce memory contention. */
Shan Weid860d402014-06-19 14:12:44 -07002970 rnp = __this_cpu_read(rsp->rda->mynode);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002971 for (; rnp != NULL; rnp = rnp->parent) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002972 ret = (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) ||
Paul E. McKenney394f2762012-06-26 17:00:35 -07002973 !raw_spin_trylock(&rnp->fqslock);
2974 if (rnp_old != NULL)
2975 raw_spin_unlock(&rnp_old->fqslock);
2976 if (ret) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002977 rsp->n_force_qs_lh++;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002978 return;
2979 }
2980 rnp_old = rnp;
2981 }
2982 /* rnp_old == rcu_get_root(rsp), rnp == NULL. */
2983
2984 /* Reached the root of the rcu_node tree, acquire lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002985 raw_spin_lock_irqsave_rcu_node(rnp_old, flags);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002986 raw_spin_unlock(&rnp_old->fqslock);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002987 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002988 rsp->n_force_qs_lh++;
Boqun Feng67c583a72015-12-29 12:18:47 +08002989 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07002990 return; /* Someone beat us to it. */
Paul E. McKenney46a1e342010-01-04 15:09:09 -08002991 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002992 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002993 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Jisheng Zhang94d44772016-06-22 17:19:27 +08002994 rcu_gp_kthread_wake(rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002995}
2996
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002997/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002998 * This does the RCU core processing work for the specified rcu_state
2999 * and rcu_data structures. This may be called only from the CPU to
3000 * whom the rdp belongs.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003001 */
3002static void
Paul E. McKenney1bca8cf2012-06-12 09:40:38 -07003003__rcu_process_callbacks(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003004{
3005 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07003006 bool needwake;
Christoph Lameterfa07a582014-04-15 12:20:12 -07003007 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003008
Paul E. McKenney2e597552009-08-15 09:53:48 -07003009 WARN_ON_ONCE(rdp->beenonline == 0);
3010
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003011 /* Update RCU state based on any recent quiescent states. */
3012 rcu_check_quiescent_state(rsp, rdp);
3013
3014 /* Does this CPU require a not-yet-started grace period? */
Paul E. McKenneydc35c892012-12-03 13:52:00 -08003015 local_irq_save(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003016 if (cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003017 raw_spin_lock_rcu_node(rcu_get_root(rsp)); /* irqs disabled. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07003018 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003019 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003020 if (needwake)
3021 rcu_gp_kthread_wake(rsp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08003022 } else {
3023 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003024 }
3025
3026 /* If there are callbacks ready, invoke them. */
Shaohua Li09223372011-06-14 13:26:25 +08003027 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003028 invoke_rcu_callbacks(rsp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07003029
3030 /* Do any needed deferred wakeups of rcuo kthreads. */
3031 do_nocb_deferred_wakeup(rdp);
Shaohua Li09223372011-06-14 13:26:25 +08003032}
3033
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003034/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003035 * Do RCU core processing for the current CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003036 */
Emese Revfy0766f782016-06-20 20:42:34 +02003037static __latent_entropy void rcu_process_callbacks(struct softirq_action *unused)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003038{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003039 struct rcu_state *rsp;
3040
Paul E. McKenneybfa00b42012-06-21 09:54:10 -07003041 if (cpu_is_offline(smp_processor_id()))
3042 return;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003043 trace_rcu_utilization(TPS("Start RCU core"));
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003044 for_each_rcu_flavor(rsp)
3045 __rcu_process_callbacks(rsp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003046 trace_rcu_utilization(TPS("End RCU core"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003047}
3048
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003049/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003050 * Schedule RCU callback invocation. If the specified type of RCU
3051 * does not support RCU priority boosting, just do a direct call,
3052 * otherwise wake up the per-CPU kernel kthread. Note that because we
Paul E. McKenney924df8a2014-10-29 15:37:58 -07003053 * are running on the current CPU with softirqs disabled, the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003054 * rcu_cpu_kthread_task cannot disappear out from under us.
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003055 */
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003056static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003057{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003058 if (unlikely(!READ_ONCE(rcu_scheduler_fully_active)))
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07003059 return;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003060 if (likely(!rsp->boost)) {
3061 rcu_do_batch(rsp, rdp);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003062 return;
3063 }
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003064 invoke_rcu_callbacks_kthread();
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003065}
3066
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003067static void invoke_rcu_core(void)
Shaohua Li09223372011-06-14 13:26:25 +08003068{
Paul E. McKenneyb0f74032013-02-04 12:14:24 -08003069 if (cpu_online(smp_processor_id()))
3070 raise_softirq(RCU_SOFTIRQ);
Shaohua Li09223372011-06-14 13:26:25 +08003071}
3072
Paul E. McKenney29154c52012-05-30 03:21:48 -07003073/*
3074 * Handle any core-RCU processing required by a call_rcu() invocation.
3075 */
3076static void __call_rcu_core(struct rcu_state *rsp, struct rcu_data *rdp,
3077 struct rcu_head *head, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003078{
Paul E. McKenney48a76392014-03-11 13:02:16 -07003079 bool needwake;
3080
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003081 /*
Paul E. McKenney29154c52012-05-30 03:21:48 -07003082 * If called from an extended quiescent state, invoke the RCU
3083 * core in order to force a re-evaluation of RCU's idleness.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003084 */
Yao Dongdong9910aff2015-02-25 17:09:46 +08003085 if (!rcu_is_watching())
Paul E. McKenney29154c52012-05-30 03:21:48 -07003086 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003087
Paul E. McKenney29154c52012-05-30 03:21:48 -07003088 /* If interrupts were disabled or CPU offline, don't invoke RCU core. */
3089 if (irqs_disabled_flags(flags) || cpu_is_offline(smp_processor_id()))
Paul E. McKenney2655d572011-04-07 22:47:23 -07003090 return;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003091
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003092 /*
3093 * Force the grace period if too many callbacks or too long waiting.
3094 * Enforce hysteresis, and don't invoke force_quiescent_state()
3095 * if some other CPU has recently done so. Also, don't bother
3096 * invoking force_quiescent_state() if the newly enqueued callback
3097 * is the only one waiting for a grace period to complete.
3098 */
Paul E. McKenney2655d572011-04-07 22:47:23 -07003099 if (unlikely(rdp->qlen > rdp->qlen_last_fqs_check + qhimark)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003100
3101 /* Are we ignoring a completed grace period? */
Paul E. McKenney470716f2013-03-19 11:32:11 -07003102 note_gp_changes(rsp, rdp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003103
3104 /* Start a new grace period if one not already started. */
3105 if (!rcu_gp_in_progress(rsp)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003106 struct rcu_node *rnp_root = rcu_get_root(rsp);
3107
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003108 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003109 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003110 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003111 if (needwake)
3112 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003113 } else {
3114 /* Give the grace period a kick. */
3115 rdp->blimit = LONG_MAX;
3116 if (rsp->n_force_qs == rdp->n_force_qs_snap &&
3117 *rdp->nxttail[RCU_DONE_TAIL] != head)
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07003118 force_quiescent_state(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003119 rdp->n_force_qs_snap = rsp->n_force_qs;
3120 rdp->qlen_last_fqs_check = rdp->qlen;
3121 }
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07003122 }
Paul E. McKenney29154c52012-05-30 03:21:48 -07003123}
3124
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003125/*
Paul E. McKenneyae150182013-04-23 13:20:57 -07003126 * RCU callback function to leak a callback.
3127 */
3128static void rcu_leak_callback(struct rcu_head *rhp)
3129{
3130}
3131
3132/*
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003133 * Helper function for call_rcu() and friends. The cpu argument will
3134 * normally be -1, indicating "currently running CPU". It may specify
3135 * a CPU only if that CPU is a no-CBs CPU. Currently, only _rcu_barrier()
3136 * is expected to specify a CPU.
3137 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003138static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003139__call_rcu(struct rcu_head *head, rcu_callback_t func,
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003140 struct rcu_state *rsp, int cpu, bool lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003141{
3142 unsigned long flags;
3143 struct rcu_data *rdp;
3144
Paul E. McKenney1146edc2014-06-09 08:24:17 -07003145 WARN_ON_ONCE((unsigned long)head & 0x1); /* Misaligned rcu_head! */
Paul E. McKenneyae150182013-04-23 13:20:57 -07003146 if (debug_rcu_head_queue(head)) {
3147 /* Probable double call_rcu(), so leak the callback. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003148 WRITE_ONCE(head->func, rcu_leak_callback);
Paul E. McKenneyae150182013-04-23 13:20:57 -07003149 WARN_ONCE(1, "__call_rcu(): Leaked duplicate callback\n");
3150 return;
3151 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003152 head->func = func;
3153 head->next = NULL;
3154
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003155 /*
3156 * Opportunistically note grace-period endings and beginnings.
3157 * Note that we might see a beginning right after we see an
3158 * end, but never vice versa, since this CPU has to pass through
3159 * a quiescent state betweentimes.
3160 */
3161 local_irq_save(flags);
3162 rdp = this_cpu_ptr(rsp->rda);
3163
3164 /* Add the callback to our list. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003165 if (unlikely(rdp->nxttail[RCU_NEXT_TAIL] == NULL) || cpu != -1) {
3166 int offline;
3167
3168 if (cpu != -1)
3169 rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003170 if (likely(rdp->mynode)) {
3171 /* Post-boot, so this should be for a no-CBs CPU. */
3172 offline = !__call_rcu_nocb(rdp, head, lazy, flags);
3173 WARN_ON_ONCE(offline);
3174 /* Offline CPU, _call_rcu() illegal, leak callback. */
3175 local_irq_restore(flags);
3176 return;
3177 }
3178 /*
3179 * Very early boot, before rcu_init(). Initialize if needed
3180 * and then drop through to queue the callback.
3181 */
3182 BUG_ON(cpu != -1);
Paul E. McKenney34404ca2015-01-19 20:39:20 -08003183 WARN_ON_ONCE(!rcu_is_watching());
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003184 if (!likely(rdp->nxtlist))
3185 init_default_callback_list(rdp);
Paul E. McKenney0d8ee372012-08-03 13:16:15 -07003186 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003187 WRITE_ONCE(rdp->qlen, rdp->qlen + 1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003188 if (lazy)
3189 rdp->qlen_lazy++;
3190 else
3191 rcu_idle_count_callbacks_posted();
3192 smp_mb(); /* Count before adding callback for rcu_barrier(). */
3193 *rdp->nxttail[RCU_NEXT_TAIL] = head;
3194 rdp->nxttail[RCU_NEXT_TAIL] = &head->next;
3195
3196 if (__is_kfree_rcu_offset((unsigned long)func))
3197 trace_rcu_kfree_callback(rsp->name, head, (unsigned long)func,
3198 rdp->qlen_lazy, rdp->qlen);
3199 else
3200 trace_rcu_callback(rsp->name, head, rdp->qlen_lazy, rdp->qlen);
3201
Paul E. McKenney29154c52012-05-30 03:21:48 -07003202 /* Go handle any RCU core processing required. */
3203 __call_rcu_core(rsp, rdp, head, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003204 local_irq_restore(flags);
3205}
3206
3207/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003208 * Queue an RCU-sched callback for invocation after a grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003209 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003210void call_rcu_sched(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003211{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003212 __call_rcu(head, func, &rcu_sched_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003213}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003214EXPORT_SYMBOL_GPL(call_rcu_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003215
3216/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08003217 * Queue an RCU callback for invocation after a quicker grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003218 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003219void call_rcu_bh(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003220{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003221 __call_rcu(head, func, &rcu_bh_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003222}
3223EXPORT_SYMBOL_GPL(call_rcu_bh);
3224
Paul E. McKenney6d813392012-02-23 13:30:16 -08003225/*
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003226 * Queue an RCU callback for lazy invocation after a grace period.
3227 * This will likely be later named something like "call_rcu_lazy()",
3228 * but this change will require some way of tagging the lazy RCU
3229 * callbacks in the list of pending callbacks. Until then, this
3230 * function may only be called from __kfree_rcu().
3231 */
3232void kfree_call_rcu(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003233 rcu_callback_t func)
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003234{
Uma Sharmae5341652014-03-23 22:32:09 -07003235 __call_rcu(head, func, rcu_state_p, -1, 1);
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003236}
3237EXPORT_SYMBOL_GPL(kfree_call_rcu);
3238
3239/*
Paul E. McKenney6d813392012-02-23 13:30:16 -08003240 * Because a context switch is a grace period for RCU-sched and RCU-bh,
3241 * any blocking grace-period wait automatically implies a grace period
3242 * if there is only one CPU online at any point time during execution
3243 * of either synchronize_sched() or synchronize_rcu_bh(). It is OK to
3244 * occasionally incorrectly indicate that there are multiple CPUs online
3245 * when there was in fact only one the whole time, as this just adds
3246 * some overhead: RCU still operates correctly.
Paul E. McKenney6d813392012-02-23 13:30:16 -08003247 */
3248static inline int rcu_blocking_is_gp(void)
3249{
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003250 int ret;
3251
Paul E. McKenney6d813392012-02-23 13:30:16 -08003252 might_sleep(); /* Check for RCU read-side critical section. */
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003253 preempt_disable();
3254 ret = num_online_cpus() <= 1;
3255 preempt_enable();
3256 return ret;
Paul E. McKenney6d813392012-02-23 13:30:16 -08003257}
3258
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003259/**
3260 * synchronize_sched - wait until an rcu-sched grace period has elapsed.
3261 *
3262 * Control will return to the caller some time after a full rcu-sched
3263 * grace period has elapsed, in other words after all currently executing
3264 * rcu-sched read-side critical sections have completed. These read-side
3265 * critical sections are delimited by rcu_read_lock_sched() and
3266 * rcu_read_unlock_sched(), and may be nested. Note that preempt_disable(),
3267 * local_irq_disable(), and so on may be used in place of
3268 * rcu_read_lock_sched().
3269 *
3270 * This means that all preempt_disable code sequences, including NMI and
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003271 * non-threaded hardware-interrupt handlers, in progress on entry will
3272 * have completed before this primitive returns. However, this does not
3273 * guarantee that softirq handlers will have completed, since in some
3274 * kernels, these handlers can run in process context, and can block.
3275 *
3276 * Note that this guarantee implies further memory-ordering guarantees.
3277 * On systems with more than one CPU, when synchronize_sched() returns,
3278 * each CPU is guaranteed to have executed a full memory barrier since the
3279 * end of its last RCU-sched read-side critical section whose beginning
3280 * preceded the call to synchronize_sched(). In addition, each CPU having
3281 * an RCU read-side critical section that extends beyond the return from
3282 * synchronize_sched() is guaranteed to have executed a full memory barrier
3283 * after the beginning of synchronize_sched() and before the beginning of
3284 * that RCU read-side critical section. Note that these guarantees include
3285 * CPUs that are offline, idle, or executing in user mode, as well as CPUs
3286 * that are executing in the kernel.
3287 *
3288 * Furthermore, if CPU A invoked synchronize_sched(), which returned
3289 * to its caller on CPU B, then both CPU A and CPU B are guaranteed
3290 * to have executed a full memory barrier during the execution of
3291 * synchronize_sched() -- even if CPU A and CPU B are the same CPU (but
3292 * again only if the system has more than one CPU).
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003293 *
3294 * This primitive provides the guarantees made by the (now removed)
3295 * synchronize_kernel() API. In contrast, synchronize_rcu() only
3296 * guarantees that rcu_read_lock() sections will have completed.
3297 * In "classic RCU", these two guarantees happen to be one and
3298 * the same, but can differ in realtime RCU implementations.
3299 */
3300void synchronize_sched(void)
3301{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003302 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3303 lock_is_held(&rcu_lock_map) ||
3304 lock_is_held(&rcu_sched_lock_map),
3305 "Illegal synchronize_sched() in RCU-sched read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003306 if (rcu_blocking_is_gp())
3307 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003308 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003309 synchronize_sched_expedited();
3310 else
3311 wait_rcu_gp(call_rcu_sched);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003312}
3313EXPORT_SYMBOL_GPL(synchronize_sched);
3314
3315/**
3316 * synchronize_rcu_bh - wait until an rcu_bh grace period has elapsed.
3317 *
3318 * Control will return to the caller some time after a full rcu_bh grace
3319 * period has elapsed, in other words after all currently executing rcu_bh
3320 * read-side critical sections have completed. RCU read-side critical
3321 * sections are delimited by rcu_read_lock_bh() and rcu_read_unlock_bh(),
3322 * and may be nested.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003323 *
3324 * See the description of synchronize_sched() for more detailed information
3325 * on memory ordering guarantees.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003326 */
3327void synchronize_rcu_bh(void)
3328{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003329 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3330 lock_is_held(&rcu_lock_map) ||
3331 lock_is_held(&rcu_sched_lock_map),
3332 "Illegal synchronize_rcu_bh() in RCU-bh read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003333 if (rcu_blocking_is_gp())
3334 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003335 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003336 synchronize_rcu_bh_expedited();
3337 else
3338 wait_rcu_gp(call_rcu_bh);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003339}
3340EXPORT_SYMBOL_GPL(synchronize_rcu_bh);
3341
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003342/**
3343 * get_state_synchronize_rcu - Snapshot current RCU state
3344 *
3345 * Returns a cookie that is used by a later call to cond_synchronize_rcu()
3346 * to determine whether or not a full grace period has elapsed in the
3347 * meantime.
3348 */
3349unsigned long get_state_synchronize_rcu(void)
3350{
3351 /*
3352 * Any prior manipulation of RCU-protected data must happen
3353 * before the load from ->gpnum.
3354 */
3355 smp_mb(); /* ^^^ */
3356
3357 /*
3358 * Make sure this load happens before the purportedly
3359 * time-consuming work between get_state_synchronize_rcu()
3360 * and cond_synchronize_rcu().
3361 */
Uma Sharmae5341652014-03-23 22:32:09 -07003362 return smp_load_acquire(&rcu_state_p->gpnum);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003363}
3364EXPORT_SYMBOL_GPL(get_state_synchronize_rcu);
3365
3366/**
3367 * cond_synchronize_rcu - Conditionally wait for an RCU grace period
3368 *
3369 * @oldstate: return value from earlier call to get_state_synchronize_rcu()
3370 *
3371 * If a full RCU grace period has elapsed since the earlier call to
3372 * get_state_synchronize_rcu(), just return. Otherwise, invoke
3373 * synchronize_rcu() to wait for a full grace period.
3374 *
3375 * Yes, this function does not take counter wrap into account. But
3376 * counter wrap is harmless. If the counter wraps, we have waited for
3377 * more than 2 billion grace periods (and way more on a 64-bit system!),
3378 * so waiting for one additional grace period should be just fine.
3379 */
3380void cond_synchronize_rcu(unsigned long oldstate)
3381{
3382 unsigned long newstate;
3383
3384 /*
3385 * Ensure that this load happens before any RCU-destructive
3386 * actions the caller might carry out after we return.
3387 */
Uma Sharmae5341652014-03-23 22:32:09 -07003388 newstate = smp_load_acquire(&rcu_state_p->completed);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003389 if (ULONG_CMP_GE(oldstate, newstate))
3390 synchronize_rcu();
3391}
3392EXPORT_SYMBOL_GPL(cond_synchronize_rcu);
3393
Paul E. McKenney24560052015-05-30 10:11:24 -07003394/**
3395 * get_state_synchronize_sched - Snapshot current RCU-sched state
3396 *
3397 * Returns a cookie that is used by a later call to cond_synchronize_sched()
3398 * to determine whether or not a full grace period has elapsed in the
3399 * meantime.
3400 */
3401unsigned long get_state_synchronize_sched(void)
3402{
3403 /*
3404 * Any prior manipulation of RCU-protected data must happen
3405 * before the load from ->gpnum.
3406 */
3407 smp_mb(); /* ^^^ */
3408
3409 /*
3410 * Make sure this load happens before the purportedly
3411 * time-consuming work between get_state_synchronize_sched()
3412 * and cond_synchronize_sched().
3413 */
3414 return smp_load_acquire(&rcu_sched_state.gpnum);
3415}
3416EXPORT_SYMBOL_GPL(get_state_synchronize_sched);
3417
3418/**
3419 * cond_synchronize_sched - Conditionally wait for an RCU-sched grace period
3420 *
3421 * @oldstate: return value from earlier call to get_state_synchronize_sched()
3422 *
3423 * If a full RCU-sched grace period has elapsed since the earlier call to
3424 * get_state_synchronize_sched(), just return. Otherwise, invoke
3425 * synchronize_sched() to wait for a full grace period.
3426 *
3427 * Yes, this function does not take counter wrap into account. But
3428 * counter wrap is harmless. If the counter wraps, we have waited for
3429 * more than 2 billion grace periods (and way more on a 64-bit system!),
3430 * so waiting for one additional grace period should be just fine.
3431 */
3432void cond_synchronize_sched(unsigned long oldstate)
3433{
3434 unsigned long newstate;
3435
3436 /*
3437 * Ensure that this load happens before any RCU-destructive
3438 * actions the caller might carry out after we return.
3439 */
3440 newstate = smp_load_acquire(&rcu_sched_state.completed);
3441 if (ULONG_CMP_GE(oldstate, newstate))
3442 synchronize_sched();
3443}
3444EXPORT_SYMBOL_GPL(cond_synchronize_sched);
3445
Paul E. McKenney28f00762015-06-25 15:00:58 -07003446/* Adjust sequence number for start of update-side operation. */
3447static void rcu_seq_start(unsigned long *sp)
3448{
3449 WRITE_ONCE(*sp, *sp + 1);
3450 smp_mb(); /* Ensure update-side operation after counter increment. */
3451 WARN_ON_ONCE(!(*sp & 0x1));
3452}
3453
3454/* Adjust sequence number for end of update-side operation. */
3455static void rcu_seq_end(unsigned long *sp)
3456{
3457 smp_mb(); /* Ensure update-side operation before counter increment. */
3458 WRITE_ONCE(*sp, *sp + 1);
3459 WARN_ON_ONCE(*sp & 0x1);
3460}
3461
3462/* Take a snapshot of the update side's sequence number. */
3463static unsigned long rcu_seq_snap(unsigned long *sp)
3464{
3465 unsigned long s;
3466
Paul E. McKenney28f00762015-06-25 15:00:58 -07003467 s = (READ_ONCE(*sp) + 3) & ~0x1;
3468 smp_mb(); /* Above access must not bleed into critical section. */
3469 return s;
3470}
3471
3472/*
3473 * Given a snapshot from rcu_seq_snap(), determine whether or not a
3474 * full update-side operation has occurred.
3475 */
3476static bool rcu_seq_done(unsigned long *sp, unsigned long s)
3477{
3478 return ULONG_CMP_GE(READ_ONCE(*sp), s);
3479}
3480
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003481/*
3482 * Check to see if there is any immediate RCU-related work to be done
3483 * by the current CPU, for the specified type of RCU, returning 1 if so.
3484 * The checks are in order of increasing expense: checks that can be
3485 * carried out against CPU-local state are performed first. However,
3486 * we must check for CPU stalls first, else we might not get a chance.
3487 */
3488static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
3489{
Paul E. McKenney2f51f982009-11-13 19:51:39 -08003490 struct rcu_node *rnp = rdp->mynode;
3491
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003492 rdp->n_rcu_pending++;
3493
3494 /* Check for CPU stalls, if enabled. */
3495 check_cpu_stall(rsp, rdp);
3496
Paul E. McKenneya0969322013-11-08 09:03:10 -08003497 /* Is this CPU a NO_HZ_FULL CPU that should ignore RCU? */
3498 if (rcu_nohz_full_cpu(rsp))
3499 return 0;
3500
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003501 /* Is the RCU core waiting for a quiescent state from this CPU? */
Paul E. McKenney5c51dd72011-08-04 06:59:03 -07003502 if (rcu_scheduler_fully_active &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003503 rdp->core_needs_qs && rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003504 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) {
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003505 rdp->n_rp_core_needs_qs++;
3506 } else if (rdp->core_needs_qs &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003507 (!rdp->cpu_no_qs.b.norm ||
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003508 rdp->rcu_qs_ctr_snap != __this_cpu_read(rcu_qs_ctr))) {
Paul E. McKenneyd21670a2010-04-14 17:39:26 -07003509 rdp->n_rp_report_qs++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003510 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003511 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003512
3513 /* Does this CPU have callbacks ready to invoke? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003514 if (cpu_has_callbacks_ready_to_invoke(rdp)) {
3515 rdp->n_rp_cb_ready++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003516 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003517 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003518
3519 /* Has RCU gone idle with this CPU needing another grace period? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003520 if (cpu_needs_another_gp(rsp, rdp)) {
3521 rdp->n_rp_cpu_needs_gp++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003522 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003523 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003524
3525 /* Has another RCU grace period completed? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003526 if (READ_ONCE(rnp->completed) != rdp->completed) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003527 rdp->n_rp_gp_completed++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003528 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003529 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003530
3531 /* Has a new RCU grace period started? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003532 if (READ_ONCE(rnp->gpnum) != rdp->gpnum ||
3533 unlikely(READ_ONCE(rdp->gpwrap))) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003534 rdp->n_rp_gp_started++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003535 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003536 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003537
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07003538 /* Does this CPU need a deferred NOCB wakeup? */
3539 if (rcu_nocb_need_deferred_wakeup(rdp)) {
3540 rdp->n_rp_nocb_defer_wakeup++;
3541 return 1;
3542 }
3543
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003544 /* nothing to do */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003545 rdp->n_rp_need_nothing++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003546 return 0;
3547}
3548
3549/*
3550 * Check to see if there is any immediate RCU-related work to be done
3551 * by the current CPU, returning 1 if so. This function is part of the
3552 * RCU implementation; it is -not- an exported member of the RCU API.
3553 */
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003554static int rcu_pending(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003555{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003556 struct rcu_state *rsp;
3557
3558 for_each_rcu_flavor(rsp)
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003559 if (__rcu_pending(rsp, this_cpu_ptr(rsp->rda)))
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003560 return 1;
3561 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003562}
3563
3564/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003565 * Return true if the specified CPU has any callback. If all_lazy is
3566 * non-NULL, store an indication of whether all callbacks are lazy.
3567 * (If there are no callbacks, all of them are deemed to be lazy.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003568 */
Nicholas Mc Guire82072c42015-05-11 18:12:27 +02003569static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003570{
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003571 bool al = true;
3572 bool hc = false;
3573 struct rcu_data *rdp;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003574 struct rcu_state *rsp;
3575
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003576 for_each_rcu_flavor(rsp) {
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07003577 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003578 if (!rdp->nxtlist)
3579 continue;
3580 hc = true;
3581 if (rdp->qlen != rdp->qlen_lazy || !all_lazy) {
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003582 al = false;
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003583 break;
3584 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003585 }
3586 if (all_lazy)
3587 *all_lazy = al;
3588 return hc;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003589}
3590
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003591/*
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003592 * Helper function for _rcu_barrier() tracing. If tracing is disabled,
3593 * the compiler is expected to optimize this away.
3594 */
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04003595static void _rcu_barrier_trace(struct rcu_state *rsp, const char *s,
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003596 int cpu, unsigned long done)
3597{
3598 trace_rcu_barrier(rsp->name, s, cpu,
3599 atomic_read(&rsp->barrier_cpu_count), done);
3600}
3601
3602/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003603 * RCU callback function for _rcu_barrier(). If we are last, wake
3604 * up the task executing _rcu_barrier().
3605 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003606static void rcu_barrier_callback(struct rcu_head *rhp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003607{
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003608 struct rcu_data *rdp = container_of(rhp, struct rcu_data, barrier_head);
3609 struct rcu_state *rsp = rdp->rsp;
3610
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003611 if (atomic_dec_and_test(&rsp->barrier_cpu_count)) {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003612 _rcu_barrier_trace(rsp, "LastCB", -1, rsp->barrier_sequence);
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003613 complete(&rsp->barrier_completion);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003614 } else {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003615 _rcu_barrier_trace(rsp, "CB", -1, rsp->barrier_sequence);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003616 }
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003617}
3618
3619/*
3620 * Called with preemption disabled, and from cross-cpu IRQ context.
3621 */
3622static void rcu_barrier_func(void *type)
3623{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003624 struct rcu_state *rsp = type;
Christoph Lameterfa07a582014-04-15 12:20:12 -07003625 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003626
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003627 _rcu_barrier_trace(rsp, "IRQ", -1, rsp->barrier_sequence);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003628 atomic_inc(&rsp->barrier_cpu_count);
Paul E. McKenney06668ef2012-05-28 23:57:46 -07003629 rsp->call(&rdp->barrier_head, rcu_barrier_callback);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003630}
3631
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003632/*
3633 * Orchestrate the specified type of RCU barrier, waiting for all
3634 * RCU callbacks of the specified type to complete.
3635 */
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003636static void _rcu_barrier(struct rcu_state *rsp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003637{
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003638 int cpu;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003639 struct rcu_data *rdp;
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003640 unsigned long s = rcu_seq_snap(&rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003641
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003642 _rcu_barrier_trace(rsp, "Begin", -1, s);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003643
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07003644 /* Take mutex to serialize concurrent rcu_barrier() requests. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003645 mutex_lock(&rsp->barrier_mutex);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003646
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003647 /* Did someone else do our work for us? */
3648 if (rcu_seq_done(&rsp->barrier_sequence, s)) {
3649 _rcu_barrier_trace(rsp, "EarlyExit", -1, rsp->barrier_sequence);
Paul E. McKenneycf3a9c42012-05-29 14:56:46 -07003650 smp_mb(); /* caller's subsequent code after above check. */
3651 mutex_unlock(&rsp->barrier_mutex);
3652 return;
3653 }
3654
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003655 /* Mark the start of the barrier operation. */
3656 rcu_seq_start(&rsp->barrier_sequence);
3657 _rcu_barrier_trace(rsp, "Inc1", -1, rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003658
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003659 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003660 * Initialize the count to one rather than to zero in order to
3661 * avoid a too-soon return to zero in case of a short grace period
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003662 * (or preemption of this task). Exclude CPU-hotplug operations
3663 * to ensure that no offline CPU has callbacks queued.
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003664 */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003665 init_completion(&rsp->barrier_completion);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003666 atomic_set(&rsp->barrier_cpu_count, 1);
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003667 get_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003668
3669 /*
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003670 * Force each CPU with callbacks to register a new callback.
3671 * When that callback is invoked, we will know that all of the
3672 * corresponding CPU's preceding callbacks have been invoked.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003673 */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003674 for_each_possible_cpu(cpu) {
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003675 if (!cpu_online(cpu) && !rcu_is_nocb_cpu(cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003676 continue;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003677 rdp = per_cpu_ptr(rsp->rda, cpu);
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003678 if (rcu_is_nocb_cpu(cpu)) {
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003679 if (!rcu_nocb_cpu_needs_barrier(rsp, cpu)) {
3680 _rcu_barrier_trace(rsp, "OfflineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003681 rsp->barrier_sequence);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003682 } else {
3683 _rcu_barrier_trace(rsp, "OnlineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003684 rsp->barrier_sequence);
Paul E. McKenney41050a02014-12-18 12:31:27 -08003685 smp_mb__before_atomic();
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003686 atomic_inc(&rsp->barrier_cpu_count);
3687 __call_rcu(&rdp->barrier_head,
3688 rcu_barrier_callback, rsp, cpu, 0);
3689 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003690 } else if (READ_ONCE(rdp->qlen)) {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003691 _rcu_barrier_trace(rsp, "OnlineQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003692 rsp->barrier_sequence);
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003693 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003694 } else {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003695 _rcu_barrier_trace(rsp, "OnlineNQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003696 rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003697 }
3698 }
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003699 put_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003700
3701 /*
3702 * Now that we have an rcu_barrier_callback() callback on each
3703 * CPU, and thus each counted, remove the initial count.
3704 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003705 if (atomic_dec_and_test(&rsp->barrier_cpu_count))
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003706 complete(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003707
3708 /* Wait for all rcu_barrier_callback() callbacks to be invoked. */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003709 wait_for_completion(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003710
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003711 /* Mark the end of the barrier operation. */
3712 _rcu_barrier_trace(rsp, "Inc2", -1, rsp->barrier_sequence);
3713 rcu_seq_end(&rsp->barrier_sequence);
3714
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003715 /* Other rcu_barrier() invocations can now safely proceed. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003716 mutex_unlock(&rsp->barrier_mutex);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003717}
3718
3719/**
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003720 * rcu_barrier_bh - Wait until all in-flight call_rcu_bh() callbacks complete.
3721 */
3722void rcu_barrier_bh(void)
3723{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003724 _rcu_barrier(&rcu_bh_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003725}
3726EXPORT_SYMBOL_GPL(rcu_barrier_bh);
3727
3728/**
3729 * rcu_barrier_sched - Wait for in-flight call_rcu_sched() callbacks.
3730 */
3731void rcu_barrier_sched(void)
3732{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003733 _rcu_barrier(&rcu_sched_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003734}
3735EXPORT_SYMBOL_GPL(rcu_barrier_sched);
3736
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003737/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003738 * Propagate ->qsinitmask bits up the rcu_node tree to account for the
3739 * first CPU in a given leaf rcu_node structure coming online. The caller
3740 * must hold the corresponding leaf rcu_node ->lock with interrrupts
3741 * disabled.
3742 */
3743static void rcu_init_new_rnp(struct rcu_node *rnp_leaf)
3744{
3745 long mask;
3746 struct rcu_node *rnp = rnp_leaf;
3747
3748 for (;;) {
3749 mask = rnp->grpmask;
3750 rnp = rnp->parent;
3751 if (rnp == NULL)
3752 return;
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003753 raw_spin_lock_rcu_node(rnp); /* Interrupts already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003754 rnp->qsmaskinit |= mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003755 raw_spin_unlock_rcu_node(rnp); /* Interrupts remain disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003756 }
3757}
3758
3759/*
Paul E. McKenney27569622009-08-15 09:53:46 -07003760 * Do boot-time initialization of a CPU's per-CPU RCU data.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003761 */
Paul E. McKenney27569622009-08-15 09:53:46 -07003762static void __init
3763rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003764{
3765 unsigned long flags;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003766 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07003767 struct rcu_node *rnp = rcu_get_root(rsp);
3768
3769 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003770 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Mark Rutlandbc75e992016-06-03 15:20:04 +01003771 rdp->grpmask = leaf_node_cpu_bit(rdp->mynode, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07003772 rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003773 WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07003774 WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
Paul E. McKenney27569622009-08-15 09:53:46 -07003775 rdp->cpu = cpu;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07003776 rdp->rsp = rsp;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003777 rcu_boot_init_nocb_percpu_data(rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003778 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07003779}
3780
3781/*
3782 * Initialize a CPU's per-CPU RCU data. Note that only one online or
3783 * offline event can be happening at a given time. Note also that we
3784 * can accept some slop in the rsp->completed access due to the fact
3785 * that this CPU cannot possibly have any RCU callbacks in flight yet.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003786 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04003787static void
Iulia Manda9b671222014-03-11 13:18:22 +02003788rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003789{
3790 unsigned long flags;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003791 unsigned long mask;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003792 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003793 struct rcu_node *rnp = rcu_get_root(rsp);
3794
3795 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003796 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003797 rdp->qlen_last_fqs_check = 0;
3798 rdp->n_force_qs_snap = rsp->n_force_qs;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003799 rdp->blimit = blimit;
Paul E. McKenney39c8d312015-01-20 23:42:38 -08003800 if (!rdp->nxtlist)
3801 init_callback_list(rdp); /* Re-enable callbacks on this CPU. */
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003802 rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Paul E. McKenney23332102013-06-21 12:34:33 -07003803 rcu_sysidle_init_percpu_data(rdp->dynticks);
Paul E. McKenneyc92b1312011-11-23 13:38:58 -08003804 atomic_set(&rdp->dynticks->dynticks,
3805 (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
Boqun Feng67c583a72015-12-29 12:18:47 +08003806 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003807
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003808 /*
3809 * Add CPU to leaf rcu_node pending-online bitmask. Any needed
3810 * propagation up the rcu_node tree will happen at the beginning
3811 * of the next grace period.
3812 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003813 rnp = rdp->mynode;
3814 mask = rdp->grpmask;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003815 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003816 if (!rdp->beenonline)
3817 WRITE_ONCE(rsp->ncpus, READ_ONCE(rsp->ncpus) + 1);
3818 rdp->beenonline = true; /* We have now been online. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003819 rdp->gpnum = rnp->completed; /* Make CPU later note any new GP. */
3820 rdp->completed = rnp->completed;
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003821 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenneya738eec2015-03-10 14:53:29 -07003822 rdp->rcu_qs_ctr_snap = per_cpu(rcu_qs_ctr, cpu);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003823 rdp->core_needs_qs = false;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003824 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuonl"));
Boqun Feng67c583a72015-12-29 12:18:47 +08003825 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003826}
3827
Thomas Gleixner4df83742016-07-13 17:17:03 +00003828int rcutree_prepare_cpu(unsigned int cpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003829{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003830 struct rcu_state *rsp;
3831
3832 for_each_rcu_flavor(rsp)
Iulia Manda9b671222014-03-11 13:18:22 +02003833 rcu_init_percpu_data(cpu, rsp);
Thomas Gleixner4df83742016-07-13 17:17:03 +00003834
3835 rcu_prepare_kthreads(cpu);
3836 rcu_spawn_all_nocb_kthreads(cpu);
3837
3838 return 0;
3839}
3840
3841static void rcutree_affinity_setting(unsigned int cpu, int outgoing)
3842{
3843 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
3844
3845 rcu_boost_kthread_setaffinity(rdp->mynode, outgoing);
3846}
3847
3848int rcutree_online_cpu(unsigned int cpu)
3849{
3850 sync_sched_exp_online_cleanup(cpu);
3851 rcutree_affinity_setting(cpu, -1);
3852 return 0;
3853}
3854
3855int rcutree_offline_cpu(unsigned int cpu)
3856{
3857 rcutree_affinity_setting(cpu, cpu);
3858 return 0;
3859}
3860
3861
3862int rcutree_dying_cpu(unsigned int cpu)
3863{
3864 struct rcu_state *rsp;
3865
3866 for_each_rcu_flavor(rsp)
3867 rcu_cleanup_dying_cpu(rsp);
3868 return 0;
3869}
3870
3871int rcutree_dead_cpu(unsigned int cpu)
3872{
3873 struct rcu_state *rsp;
3874
3875 for_each_rcu_flavor(rsp) {
3876 rcu_cleanup_dead_cpu(cpu, rsp);
3877 do_nocb_deferred_wakeup(per_cpu_ptr(rsp->rda, cpu));
3878 }
3879 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003880}
3881
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07003882/*
3883 * Mark the specified CPU as being online so that subsequent grace periods
3884 * (both expedited and normal) will wait on it. Note that this means that
3885 * incoming CPUs are not allowed to use RCU read-side critical sections
3886 * until this function is called. Failing to observe this restriction
3887 * will result in lockdep splats.
3888 */
3889void rcu_cpu_starting(unsigned int cpu)
3890{
3891 unsigned long flags;
3892 unsigned long mask;
3893 struct rcu_data *rdp;
3894 struct rcu_node *rnp;
3895 struct rcu_state *rsp;
3896
3897 for_each_rcu_flavor(rsp) {
3898 rdp = this_cpu_ptr(rsp->rda);
3899 rnp = rdp->mynode;
3900 mask = rdp->grpmask;
3901 raw_spin_lock_irqsave_rcu_node(rnp, flags);
3902 rnp->qsmaskinitnext |= mask;
3903 rnp->expmaskinitnext |= mask;
3904 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
3905 }
3906}
3907
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003908#ifdef CONFIG_HOTPLUG_CPU
3909/*
3910 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3911 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3912 * bit masks.
Linus Torvalds710d60c2016-03-15 13:50:29 -07003913 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3914 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3915 * bit masks.
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003916 */
3917static void rcu_cleanup_dying_idle_cpu(int cpu, struct rcu_state *rsp)
3918{
3919 unsigned long flags;
3920 unsigned long mask;
3921 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
3922 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
3923
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003924 /* Remove outgoing CPU from mask in the leaf rcu_node structure. */
3925 mask = rdp->grpmask;
3926 raw_spin_lock_irqsave_rcu_node(rnp, flags); /* Enforce GP memory-order guarantee. */
3927 rnp->qsmaskinitnext &= ~mask;
Linus Torvalds710d60c2016-03-15 13:50:29 -07003928 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003929}
3930
3931void rcu_report_dead(unsigned int cpu)
3932{
3933 struct rcu_state *rsp;
3934
3935 /* QS for any half-done expedited RCU-sched GP. */
3936 preempt_disable();
3937 rcu_report_exp_rdp(&rcu_sched_state,
3938 this_cpu_ptr(rcu_sched_state.rda), true);
3939 preempt_enable();
3940 for_each_rcu_flavor(rsp)
3941 rcu_cleanup_dying_idle_cpu(cpu, rsp);
3942}
3943#endif
3944
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003945static int rcu_pm_notify(struct notifier_block *self,
3946 unsigned long action, void *hcpu)
3947{
3948 switch (action) {
3949 case PM_HIBERNATION_PREPARE:
3950 case PM_SUSPEND_PREPARE:
3951 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
Paul E. McKenney5afff482015-02-18 16:39:09 -08003952 rcu_expedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003953 break;
3954 case PM_POST_HIBERNATION:
3955 case PM_POST_SUSPEND:
Paul E. McKenney5afff482015-02-18 16:39:09 -08003956 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
3957 rcu_unexpedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003958 break;
3959 default:
3960 break;
3961 }
3962 return NOTIFY_OK;
3963}
3964
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003965/*
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003966 * Spawn the kthreads that handle each RCU flavor's grace periods.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003967 */
3968static int __init rcu_spawn_gp_kthread(void)
3969{
3970 unsigned long flags;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003971 int kthread_prio_in = kthread_prio;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003972 struct rcu_node *rnp;
3973 struct rcu_state *rsp;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003974 struct sched_param sp;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003975 struct task_struct *t;
3976
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003977 /* Force priority into range. */
3978 if (IS_ENABLED(CONFIG_RCU_BOOST) && kthread_prio < 1)
3979 kthread_prio = 1;
3980 else if (kthread_prio < 0)
3981 kthread_prio = 0;
3982 else if (kthread_prio > 99)
3983 kthread_prio = 99;
3984 if (kthread_prio != kthread_prio_in)
3985 pr_alert("rcu_spawn_gp_kthread(): Limited prio to %d from %d\n",
3986 kthread_prio, kthread_prio_in);
3987
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003988 rcu_scheduler_fully_active = 1;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003989 for_each_rcu_flavor(rsp) {
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003990 t = kthread_create(rcu_gp_kthread, rsp, "%s", rsp->name);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003991 BUG_ON(IS_ERR(t));
3992 rnp = rcu_get_root(rsp);
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003993 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003994 rsp->gp_kthread = t;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003995 if (kthread_prio) {
3996 sp.sched_priority = kthread_prio;
3997 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
3998 }
Boqun Feng67c583a72015-12-29 12:18:47 +08003999 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Peter Zijlstrae11f1332015-11-04 08:22:05 -08004000 wake_up_process(t);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004001 }
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07004002 rcu_spawn_nocb_kthreads();
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07004003 rcu_spawn_boost_kthreads();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004004 return 0;
4005}
4006early_initcall(rcu_spawn_gp_kthread);
4007
4008/*
Paul E. McKenney90687fc2017-01-10 02:28:26 -08004009 * This function is invoked towards the end of the scheduler's
4010 * initialization process. Before this is called, the idle task might
4011 * contain synchronous grace-period primitives (during which time, this idle
4012 * task is booting the system, and such primitives are no-ops). After this
4013 * function is called, any synchronous grace-period primitives are run as
4014 * expedited, with the requesting task driving the grace period forward.
4015 * A later core_initcall() rcu_exp_runtime_mode() will switch to full
4016 * runtime RCU functionality.
Paul E. McKenneybbad9372010-04-02 16:17:17 -07004017 */
4018void rcu_scheduler_starting(void)
4019{
4020 WARN_ON(num_online_cpus() != 1);
4021 WARN_ON(nr_context_switches() > 0);
Paul E. McKenney90687fc2017-01-10 02:28:26 -08004022 rcu_test_sync_prims();
4023 rcu_scheduler_active = RCU_SCHEDULER_INIT;
4024 rcu_test_sync_prims();
Paul E. McKenneybbad9372010-04-02 16:17:17 -07004025}
4026
4027/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004028 * Compute the per-level fanout, either using the exact fanout specified
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004029 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004030 */
Alexander Gordeev199977b2015-06-03 08:18:29 +02004031static void __init rcu_init_levelspread(int *levelspread, const int *levelcnt)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004032{
4033 int i;
4034
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004035 if (rcu_fanout_exact) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004036 levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
Paul E. McKenney66292402015-01-19 19:16:38 -08004037 for (i = rcu_num_lvls - 2; i >= 0; i--)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004038 levelspread[i] = RCU_FANOUT;
Paul E. McKenney66292402015-01-19 19:16:38 -08004039 } else {
4040 int ccur;
4041 int cprv;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004042
Paul E. McKenney66292402015-01-19 19:16:38 -08004043 cprv = nr_cpu_ids;
4044 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004045 ccur = levelcnt[i];
4046 levelspread[i] = (cprv + ccur - 1) / ccur;
Paul E. McKenney66292402015-01-19 19:16:38 -08004047 cprv = ccur;
4048 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004049 }
4050}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004051
4052/*
4053 * Helper function for rcu_init() that initializes one rcu_state structure.
4054 */
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004055static void __init rcu_init_one(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004056{
Alexander Gordeevcb007102015-06-03 08:18:30 +02004057 static const char * const buf[] = RCU_NODE_NAME_INIT;
4058 static const char * const fqs[] = RCU_FQS_NAME_INIT;
Paul E. McKenney3dc5dbe2015-09-26 14:51:24 -07004059 static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
4060 static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004061 static u8 fl_mask = 0x1;
Alexander Gordeev199977b2015-06-03 08:18:29 +02004062
4063 int levelcnt[RCU_NUM_LVLS]; /* # nodes in each level. */
4064 int levelspread[RCU_NUM_LVLS]; /* kids/node in each level. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004065 int cpustride = 1;
4066 int i;
4067 int j;
4068 struct rcu_node *rnp;
4069
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004070 BUILD_BUG_ON(RCU_NUM_LVLS > ARRAY_SIZE(buf)); /* Fix buf[] init! */
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004071
Paul E. McKenney3eaaaf6c2015-03-09 16:51:17 -07004072 /* Silence gcc 4.8 false positive about array index out of range. */
4073 if (rcu_num_lvls <= 0 || rcu_num_lvls > RCU_NUM_LVLS)
4074 panic("rcu_init_one: rcu_num_lvls out of range");
Paul E. McKenney49305212012-11-29 13:49:00 -08004075
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004076 /* Initialize the level-tracking arrays. */
4077
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004078 for (i = 0; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004079 levelcnt[i] = num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004080 for (i = 1; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004081 rsp->level[i] = rsp->level[i - 1] + levelcnt[i - 1];
4082 rcu_init_levelspread(levelspread, levelcnt);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004083 rsp->flavor_mask = fl_mask;
4084 fl_mask <<= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004085
4086 /* Initialize the elements themselves, starting from the leaves. */
4087
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004088 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004089 cpustride *= levelspread[i];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004090 rnp = rsp->level[i];
Alexander Gordeev199977b2015-06-03 08:18:29 +02004091 for (j = 0; j < levelcnt[i]; j++, rnp++) {
Boqun Feng67c583a72015-12-29 12:18:47 +08004092 raw_spin_lock_init(&ACCESS_PRIVATE(rnp, lock));
4093 lockdep_set_class_and_name(&ACCESS_PRIVATE(rnp, lock),
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004094 &rcu_node_class[i], buf[i]);
Paul E. McKenney394f2762012-06-26 17:00:35 -07004095 raw_spin_lock_init(&rnp->fqslock);
4096 lockdep_set_class_and_name(&rnp->fqslock,
4097 &rcu_fqs_class[i], fqs[i]);
Paul E. McKenney25d30cf2012-07-11 05:23:18 -07004098 rnp->gpnum = rsp->gpnum;
4099 rnp->completed = rsp->completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004100 rnp->qsmask = 0;
4101 rnp->qsmaskinit = 0;
4102 rnp->grplo = j * cpustride;
4103 rnp->grphi = (j + 1) * cpustride - 1;
Himangi Saraogi595f3902014-03-18 22:52:26 +05304104 if (rnp->grphi >= nr_cpu_ids)
4105 rnp->grphi = nr_cpu_ids - 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004106 if (i == 0) {
4107 rnp->grpnum = 0;
4108 rnp->grpmask = 0;
4109 rnp->parent = NULL;
4110 } else {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004111 rnp->grpnum = j % levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004112 rnp->grpmask = 1UL << rnp->grpnum;
4113 rnp->parent = rsp->level[i - 1] +
Alexander Gordeev199977b2015-06-03 08:18:29 +02004114 j / levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004115 }
4116 rnp->level = i;
Paul E. McKenney12f5f522010-11-29 21:56:39 -08004117 INIT_LIST_HEAD(&rnp->blkd_tasks);
Paul E. McKenneydae6e642013-02-10 20:48:58 -08004118 rcu_init_one_nocb(rnp);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004119 init_waitqueue_head(&rnp->exp_wq[0]);
4120 init_waitqueue_head(&rnp->exp_wq[1]);
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07004121 init_waitqueue_head(&rnp->exp_wq[2]);
4122 init_waitqueue_head(&rnp->exp_wq[3]);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004123 spin_lock_init(&rnp->exp_lock);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004124 }
4125 }
Lai Jiangshan0c340292010-03-28 11:12:30 +08004126
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01004127 init_swait_queue_head(&rsp->gp_wq);
4128 init_swait_queue_head(&rsp->expedited_wq);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004129 rnp = rsp->level[rcu_num_lvls - 1];
Lai Jiangshan0c340292010-03-28 11:12:30 +08004130 for_each_possible_cpu(i) {
Paul E. McKenney4a90a062010-04-14 16:48:11 -07004131 while (i > rnp->grphi)
Lai Jiangshan0c340292010-03-28 11:12:30 +08004132 rnp++;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004133 per_cpu_ptr(rsp->rda, i)->mynode = rnp;
Lai Jiangshan0c340292010-03-28 11:12:30 +08004134 rcu_boot_init_percpu_data(i, rsp);
4135 }
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004136 list_add(&rsp->flavors, &rcu_struct_flavors);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004137}
4138
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004139/*
4140 * Compute the rcu_node tree geometry from kernel parameters. This cannot
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004141 * replace the definitions in tree.h because those are needed to size
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004142 * the ->node array in the rcu_state structure.
4143 */
4144static void __init rcu_init_geometry(void)
4145{
Paul E. McKenney026ad282013-04-03 22:14:11 -07004146 ulong d;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004147 int i;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004148 int rcu_capacity[RCU_NUM_LVLS];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004149
Paul E. McKenney026ad282013-04-03 22:14:11 -07004150 /*
4151 * Initialize any unspecified boot parameters.
4152 * The default values of jiffies_till_first_fqs and
4153 * jiffies_till_next_fqs are set to the RCU_JIFFIES_TILL_FORCE_QS
4154 * value, which is a function of HZ, then adding one for each
4155 * RCU_JIFFIES_FQS_DIV CPUs that might be on the system.
4156 */
4157 d = RCU_JIFFIES_TILL_FORCE_QS + nr_cpu_ids / RCU_JIFFIES_FQS_DIV;
4158 if (jiffies_till_first_fqs == ULONG_MAX)
4159 jiffies_till_first_fqs = d;
4160 if (jiffies_till_next_fqs == ULONG_MAX)
4161 jiffies_till_next_fqs = d;
4162
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004163 /* If the compile-time values are accurate, just leave. */
Paul E. McKenney47d631a2015-04-21 09:12:13 -07004164 if (rcu_fanout_leaf == RCU_FANOUT_LEAF &&
Paul E. McKenneyb17c7032012-09-06 15:38:02 -07004165 nr_cpu_ids == NR_CPUS)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004166 return;
Paul E. McKenney39479092013-10-09 15:20:33 -07004167 pr_info("RCU: Adjusting geometry for rcu_fanout_leaf=%d, nr_cpu_ids=%d\n",
4168 rcu_fanout_leaf, nr_cpu_ids);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004169
4170 /*
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004171 * The boot-time rcu_fanout_leaf parameter must be at least two
4172 * and cannot exceed the number of bits in the rcu_node masks.
4173 * Complain and fall back to the compile-time values if this
4174 * limit is exceeded.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004175 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004176 if (rcu_fanout_leaf < 2 ||
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004177 rcu_fanout_leaf > sizeof(unsigned long) * 8) {
Paul E. McKenney13bd6492015-06-04 10:06:01 -07004178 rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004179 WARN_ON(1);
4180 return;
4181 }
4182
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004183 /*
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004184 * Compute number of nodes that can be handled an rcu_node tree
Alexander Gordeev96181382015-06-03 08:18:26 +02004185 * with the given number of levels.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004186 */
Alexander Gordeev96181382015-06-03 08:18:26 +02004187 rcu_capacity[0] = rcu_fanout_leaf;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004188 for (i = 1; i < RCU_NUM_LVLS; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004189 rcu_capacity[i] = rcu_capacity[i - 1] * RCU_FANOUT;
4190
4191 /*
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004192 * The tree must be able to accommodate the configured number of CPUs.
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004193 * If this limit is exceeded, fall back to the compile-time values.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004194 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004195 if (nr_cpu_ids > rcu_capacity[RCU_NUM_LVLS - 1]) {
4196 rcu_fanout_leaf = RCU_FANOUT_LEAF;
4197 WARN_ON(1);
4198 return;
4199 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004200
Alexander Gordeev679f9852015-06-03 08:18:25 +02004201 /* Calculate the number of levels in the tree. */
Alexander Gordeev96181382015-06-03 08:18:26 +02004202 for (i = 0; nr_cpu_ids > rcu_capacity[i]; i++) {
Alexander Gordeev679f9852015-06-03 08:18:25 +02004203 }
Alexander Gordeev96181382015-06-03 08:18:26 +02004204 rcu_num_lvls = i + 1;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004205
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004206 /* Calculate the number of rcu_nodes at each level of the tree. */
Alexander Gordeev679f9852015-06-03 08:18:25 +02004207 for (i = 0; i < rcu_num_lvls; i++) {
Alexander Gordeev96181382015-06-03 08:18:26 +02004208 int cap = rcu_capacity[(rcu_num_lvls - 1) - i];
Alexander Gordeev679f9852015-06-03 08:18:25 +02004209 num_rcu_lvl[i] = DIV_ROUND_UP(nr_cpu_ids, cap);
4210 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004211
4212 /* Calculate the total number of rcu_node structures. */
4213 rcu_num_nodes = 0;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004214 for (i = 0; i < rcu_num_lvls; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004215 rcu_num_nodes += num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004216}
4217
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004218/*
4219 * Dump out the structure of the rcu_node combining tree associated
4220 * with the rcu_state structure referenced by rsp.
4221 */
4222static void __init rcu_dump_rcu_node_tree(struct rcu_state *rsp)
4223{
4224 int level = 0;
4225 struct rcu_node *rnp;
4226
4227 pr_info("rcu_node tree layout dump\n");
4228 pr_info(" ");
4229 rcu_for_each_node_breadth_first(rsp, rnp) {
4230 if (rnp->level != level) {
4231 pr_cont("\n");
4232 pr_info(" ");
4233 level = rnp->level;
4234 }
4235 pr_cont("%d:%d ^%d ", rnp->grplo, rnp->grphi, rnp->grpnum);
4236 }
4237 pr_cont("\n");
4238}
4239
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004240void __init rcu_init(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004241{
Paul E. McKenney017c4262010-01-14 16:10:58 -08004242 int cpu;
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004243
Paul E. McKenney47627672015-01-19 21:10:21 -08004244 rcu_early_boot_tests();
4245
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004246 rcu_bootup_announce();
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004247 rcu_init_geometry();
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004248 rcu_init_one(&rcu_bh_state);
4249 rcu_init_one(&rcu_sched_state);
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004250 if (dump_tree)
4251 rcu_dump_rcu_node_tree(&rcu_sched_state);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004252 __rcu_init_preempt();
Jiang Fangb5b39362013-02-02 14:13:42 -08004253 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004254
4255 /*
4256 * We don't need protection against CPU-hotplug here because
4257 * this is called early in boot, before either interrupts
4258 * or the scheduler are operational.
4259 */
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004260 pm_notifier(rcu_pm_notify, 0);
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07004261 for_each_online_cpu(cpu) {
Thomas Gleixner4df83742016-07-13 17:17:03 +00004262 rcutree_prepare_cpu(cpu);
Paul E. McKenney7ec99de2016-06-30 13:58:26 -07004263 rcu_cpu_starting(cpu);
4264 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004265}
4266
Paul E. McKenney3549c2b2016-04-15 16:35:29 -07004267#include "tree_exp.h"
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004268#include "tree_plugin.h"