blob: 0fa692f1094e07499c1396ffefbe4b68991e951e [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>
Paul E. McKenney4102ada2013-10-08 20:23:47 -070044#include <linux/module.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010045#include <linux/percpu.h>
46#include <linux/notifier.h>
47#include <linux/cpu.h>
48#include <linux/mutex.h>
49#include <linux/time.h>
Paul E. McKenneybbad9372010-04-02 16:17:17 -070050#include <linux/kernel_stat.h>
Paul E. McKenneya26ac242011-01-12 14:10:23 -080051#include <linux/wait.h>
52#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070053#include <linux/prefetch.h>
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -080054#include <linux/delay.h>
55#include <linux/stop_machine.h>
Paul E. McKenney661a85d2012-07-07 05:57:03 -070056#include <linux/random.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040057#include <linux/trace_events.h>
Borislav Petkovd1d74d12013-04-22 00:12:42 +020058#include <linux/suspend.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010059
Paul E. McKenney4102ada2013-10-08 20:23:47 -070060#include "tree.h"
Paul E. McKenney29c00b42011-06-17 15:53:19 -070061#include "rcu.h"
Paul E. McKenney9f77da92009-08-22 13:56:45 -070062
Paul E. McKenney4102ada2013-10-08 20:23:47 -070063MODULE_ALIAS("rcutree");
64#ifdef MODULE_PARAM_PREFIX
65#undef MODULE_PARAM_PREFIX
66#endif
67#define MODULE_PARAM_PREFIX "rcutree."
68
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010069/* Data structures. */
70
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -040071/*
72 * In order to export the rcu_state name to the tracing tools, it
73 * needs to be added in the __tracepoint_string section.
74 * This requires defining a separate variable tp_<sname>_varname
75 * that points to the string being used, and this will allow
76 * the tracing userspace tools to be able to decipher the string
77 * address to the matching string.
78 */
Ard Biesheuvela8a29b32014-07-12 19:01:49 +020079#ifdef CONFIG_TRACING
80# define DEFINE_RCU_TPS(sname) \
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -040081static char sname##_varname[] = #sname; \
Ard Biesheuvela8a29b32014-07-12 19:01:49 +020082static const char *tp_##sname##_varname __used __tracepoint_string = sname##_varname;
83# define RCU_STATE_NAME(sname) sname##_varname
84#else
85# define DEFINE_RCU_TPS(sname)
86# define RCU_STATE_NAME(sname) __stringify(sname)
87#endif
88
89#define RCU_STATE_INITIALIZER(sname, sabbr, cr) \
90DEFINE_RCU_TPS(sname) \
Nicolas Ioossc92fb052015-05-05 21:57:06 +080091static DEFINE_PER_CPU_SHARED_ALIGNED(struct rcu_data, sname##_data); \
Steven Rostedt (Red Hat)a41bfeb2013-07-12 17:00:28 -040092struct rcu_state sname##_state = { \
Paul E. McKenney6c90cc72012-05-28 19:41:41 -070093 .level = { &sname##_state.node[0] }, \
Paul E. McKenney27232492015-01-20 22:44:13 -080094 .rda = &sname##_data, \
Paul E. McKenney037b64e2012-05-28 23:26:01 -070095 .call = cr, \
Petr Mladek77f81fe2015-09-09 12:09:49 -070096 .gp_state = RCU_GP_IDLE, \
Paul E. McKenney42c35332012-09-28 10:49:58 -070097 .gpnum = 0UL - 300UL, \
98 .completed = 0UL - 300UL, \
Paul E. McKenney7b2e6012012-10-08 10:54:03 -070099 .orphan_lock = __RAW_SPIN_LOCK_UNLOCKED(&sname##_state.orphan_lock), \
Paul E. McKenney6c90cc72012-05-28 19:41:41 -0700100 .orphan_nxttail = &sname##_state.orphan_nxtlist, \
101 .orphan_donetail = &sname##_state.orphan_donelist, \
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -0700102 .barrier_mutex = __MUTEX_INITIALIZER(sname##_state.barrier_mutex), \
Ard Biesheuvela8a29b32014-07-12 19:01:49 +0200103 .name = RCU_STATE_NAME(sname), \
Paul E. McKenneya4889852012-12-03 08:16:28 -0800104 .abbr = sabbr, \
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -0800105 .exp_mutex = __MUTEX_INITIALIZER(sname##_state.exp_mutex), \
Paul E. McKenney3b5f6682016-03-16 16:47:55 -0700106 .exp_wake_mutex = __MUTEX_INITIALIZER(sname##_state.exp_wake_mutex), \
Paul E. McKenney27232492015-01-20 22:44:13 -0800107}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100108
Steven Rostedt (Red Hat)a41bfeb2013-07-12 17:00:28 -0400109RCU_STATE_INITIALIZER(rcu_sched, 's', call_rcu_sched);
110RCU_STATE_INITIALIZER(rcu_bh, 'b', call_rcu_bh);
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100111
Paul E. McKenneyb28a7c02015-03-04 07:39:27 -0800112static struct rcu_state *const rcu_state_p;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -0700113LIST_HEAD(rcu_struct_flavors);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800114
Paul E. McKenneya3dc2942015-04-20 11:40:50 -0700115/* Dump rcu_node combining tree at boot to verify correct setup. */
116static bool dump_tree;
117module_param(dump_tree, bool, 0444);
Paul E. McKenney7fa27002015-04-20 10:27:15 -0700118/* Control rcu_node-tree auto-balancing at boot time. */
119static bool rcu_fanout_exact;
120module_param(rcu_fanout_exact, bool, 0444);
Paul E. McKenney47d631a2015-04-21 09:12:13 -0700121/* Increase (but not decrease) the RCU_FANOUT_LEAF at boot time. */
122static int rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenney7e5c2df2012-07-01 15:42:33 -0700123module_param(rcu_fanout_leaf, int, 0444);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700124int rcu_num_lvls __read_mostly = RCU_NUM_LVLS;
Alexander Gordeevcb007102015-06-03 08:18:30 +0200125/* Number of rcu_nodes at specified level. */
126static int num_rcu_lvl[] = NUM_RCU_LVL_INIT;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700127int rcu_num_nodes __read_mostly = NUM_RCU_NODES; /* Total # rcu_nodes in use. */
128
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700129/*
130 * The rcu_scheduler_active variable transitions from zero to one just
131 * before the first task is spawned. So when this variable is zero, RCU
132 * can assume that there is but one task, allowing RCU to (for example)
Paul E. McKenney0d950922016-04-08 05:00:03 -0700133 * optimize synchronize_rcu() to a simple barrier(). When this variable
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700134 * is one, RCU must actually do all the hard work required to detect real
135 * grace periods. This variable is also used to suppress boot-time false
136 * positives from lockdep-RCU error checking.
137 */
Paul E. McKenneybbad9372010-04-02 16:17:17 -0700138int rcu_scheduler_active __read_mostly;
139EXPORT_SYMBOL_GPL(rcu_scheduler_active);
140
Paul E. McKenneyb0d30412011-07-10 15:57:35 -0700141/*
142 * The rcu_scheduler_fully_active variable transitions from zero to one
143 * during the early_initcall() processing, which is after the scheduler
144 * is capable of creating new tasks. So RCU processing (for example,
145 * creating tasks for RCU priority boosting) must be delayed until after
146 * rcu_scheduler_fully_active transitions from zero to one. We also
147 * currently delay invocation of any RCU callbacks until after this point.
148 *
149 * It might later prove better for people registering RCU callbacks during
150 * early boot to take responsibility for these callbacks, but one step at
151 * a time.
152 */
153static int rcu_scheduler_fully_active __read_mostly;
154
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800155static void rcu_init_new_rnp(struct rcu_node *rnp_leaf);
156static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +0000157static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu);
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700158static void invoke_rcu_core(void);
159static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp);
Paul E. McKenney6587a232015-08-06 16:50:39 -0700160static void rcu_report_exp_rdp(struct rcu_state *rsp,
161 struct rcu_data *rdp, bool wake);
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800162
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800163/* rcuc/rcub kthread realtime priority */
Paul E. McKenney26730f52015-04-21 09:22:14 -0700164#ifdef CONFIG_RCU_KTHREAD_PRIO
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800165static int kthread_prio = CONFIG_RCU_KTHREAD_PRIO;
Paul E. McKenney26730f52015-04-21 09:22:14 -0700166#else /* #ifdef CONFIG_RCU_KTHREAD_PRIO */
167static int kthread_prio = IS_ENABLED(CONFIG_RCU_BOOST) ? 1 : 0;
168#endif /* #else #ifdef CONFIG_RCU_KTHREAD_PRIO */
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800169module_param(kthread_prio, int, 0644);
170
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700171/* Delay in jiffies for grace-period initialization delays, debug only. */
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700172
173#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT
174static int gp_preinit_delay = CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT_DELAY;
175module_param(gp_preinit_delay, int, 0644);
176#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
177static const int gp_preinit_delay;
178#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
179
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700180#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT
181static int gp_init_delay = CONFIG_RCU_TORTURE_TEST_SLOW_INIT_DELAY;
Paul E. McKenney37745d22015-01-22 18:24:08 -0800182module_param(gp_init_delay, int, 0644);
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700183#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
184static const int gp_init_delay;
185#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700186
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700187#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP
188static int gp_cleanup_delay = CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP_DELAY;
189module_param(gp_cleanup_delay, int, 0644);
190#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
191static const int gp_cleanup_delay;
192#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
193
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700194/*
195 * Number of grace periods between delays, normalized by the duration of
196 * the delay. The longer the the delay, the more the grace periods between
197 * each delay. The reason for this normalization is that it means that,
198 * for non-zero delays, the overall slowdown of grace periods is constant
199 * regardless of the duration of the delay. This arrangement balances
200 * the need for long delays to increase some race probabilities with the
201 * need for fast grace periods to increase other race probabilities.
202 */
203#define PER_RCU_NODE_PERIOD 3 /* Number of grace periods between delays. */
Paul E. McKenney37745d22015-01-22 18:24:08 -0800204
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800205/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700206 * Track the rcutorture test sequence number and the update version
207 * number within a given test. The rcutorture_testseq is incremented
208 * on every rcutorture module load and unload, so has an odd value
209 * when a test is running. The rcutorture_vernum is set to zero
210 * when rcutorture starts and is incremented on each rcutorture update.
211 * These variables enable correlating rcutorture output with the
212 * RCU tracing information.
213 */
214unsigned long rcutorture_testseq;
215unsigned long rcutorture_vernum;
216
217/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800218 * Compute the mask of online CPUs for the specified rcu_node structure.
219 * This will not be stable unless the rcu_node structure's ->lock is
220 * held, but the bit corresponding to the current CPU will be stable
221 * in most contexts.
222 */
223unsigned long rcu_rnp_online_cpus(struct rcu_node *rnp)
224{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800225 return READ_ONCE(rnp->qsmaskinitnext);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800226}
227
228/*
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800229 * Return true if an RCU grace period is in progress. The READ_ONCE()s
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700230 * permit this function to be invoked without holding the root rcu_node
231 * structure's ->lock, but of course results can be subject to change.
232 */
233static int rcu_gp_in_progress(struct rcu_state *rsp)
234{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800235 return READ_ONCE(rsp->completed) != READ_ONCE(rsp->gpnum);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700236}
237
238/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700239 * Note a quiescent state. Because we do not need to know
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100240 * how many quiescent states passed, just if there was at least
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700241 * one since the start of the grace period, this just sets a flag.
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700242 * The caller must have disabled preemption.
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100243 */
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700244void rcu_sched_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100245{
Paul E. McKenneyfecbf6f2015-09-28 18:19:24 -0700246 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.s))
247 return;
248 trace_rcu_grace_period(TPS("rcu_sched"),
249 __this_cpu_read(rcu_sched_data.gpnum),
250 TPS("cpuqs"));
251 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.norm, false);
252 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))
253 return;
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700254 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.exp, false);
255 rcu_report_exp_rdp(&rcu_sched_state,
256 this_cpu_ptr(&rcu_sched_data), true);
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100257}
258
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700259void rcu_bh_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100260{
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700261 if (__this_cpu_read(rcu_bh_data.cpu_no_qs.s)) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700262 trace_rcu_grace_period(TPS("rcu_bh"),
263 __this_cpu_read(rcu_bh_data.gpnum),
264 TPS("cpuqs"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700265 __this_cpu_write(rcu_bh_data.cpu_no_qs.b.norm, false);
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700266 }
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100267}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100268
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700269static DEFINE_PER_CPU(int, rcu_sched_qs_mask);
270
271static DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks) = {
272 .dynticks_nesting = DYNTICK_TASK_EXIT_IDLE,
273 .dynticks = ATOMIC_INIT(1),
274#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
275 .dynticks_idle_nesting = DYNTICK_TASK_NEST_VALUE,
276 .dynticks_idle = ATOMIC_INIT(1),
277#endif /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
278};
279
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800280DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, rcu_qs_ctr);
281EXPORT_PER_CPU_SYMBOL_GPL(rcu_qs_ctr);
282
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700283/*
284 * Let the RCU core know that this CPU has gone through the scheduler,
285 * which is a quiescent state. This is called when the need for a
286 * quiescent state is urgent, so we burn an atomic operation and full
287 * memory barriers to let the RCU core know about it, regardless of what
288 * this CPU might (or might not) do in the near future.
289 *
290 * We inform the RCU core by emulating a zero-duration dyntick-idle
291 * period, which we in turn do by incrementing the ->dynticks counter
292 * by two.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700293 *
294 * The caller must have disabled interrupts.
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700295 */
296static void rcu_momentary_dyntick_idle(void)
297{
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700298 struct rcu_data *rdp;
299 struct rcu_dynticks *rdtp;
300 int resched_mask;
301 struct rcu_state *rsp;
302
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700303 /*
304 * Yes, we can lose flag-setting operations. This is OK, because
305 * the flag will be set again after some delay.
306 */
307 resched_mask = raw_cpu_read(rcu_sched_qs_mask);
308 raw_cpu_write(rcu_sched_qs_mask, 0);
309
310 /* Find the flavor that needs a quiescent state. */
311 for_each_rcu_flavor(rsp) {
312 rdp = raw_cpu_ptr(rsp->rda);
313 if (!(resched_mask & rsp->flavor_mask))
314 continue;
315 smp_mb(); /* rcu_sched_qs_mask before cond_resched_completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800316 if (READ_ONCE(rdp->mynode->completed) !=
317 READ_ONCE(rdp->cond_resched_completed))
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700318 continue;
319
320 /*
321 * Pretend to be momentarily idle for the quiescent state.
322 * This allows the grace-period kthread to record the
323 * quiescent state, with no need for this CPU to do anything
324 * further.
325 */
326 rdtp = this_cpu_ptr(&rcu_dynticks);
327 smp_mb__before_atomic(); /* Earlier stuff before QS. */
328 atomic_add(2, &rdtp->dynticks); /* QS. */
329 smp_mb__after_atomic(); /* Later stuff after QS. */
330 break;
331 }
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700332}
333
Paul E. McKenney25502a62010-04-01 17:37:01 -0700334/*
335 * Note a context switch. This is a quiescent state for RCU-sched,
336 * and requires special handling for preemptible RCU.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700337 * The caller must have disabled interrupts.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700338 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700339void rcu_note_context_switch(void)
Paul E. McKenney25502a62010-04-01 17:37:01 -0700340{
Boqun Fengbb73c522015-07-30 16:55:38 -0700341 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400342 trace_rcu_utilization(TPS("Start context switch"));
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700343 rcu_sched_qs();
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700344 rcu_preempt_note_context_switch();
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700345 if (unlikely(raw_cpu_read(rcu_sched_qs_mask)))
346 rcu_momentary_dyntick_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400347 trace_rcu_utilization(TPS("End context switch"));
Boqun Fengbb73c522015-07-30 16:55:38 -0700348 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney25502a62010-04-01 17:37:01 -0700349}
Gleb Natapov29ce8312011-05-04 16:31:03 +0300350EXPORT_SYMBOL_GPL(rcu_note_context_switch);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700351
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800352/*
Paul E. McKenney1925d192015-01-18 17:45:05 -0800353 * Register a quiescent state for all RCU flavors. If there is an
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800354 * emergency, invoke rcu_momentary_dyntick_idle() to do a heavy-weight
355 * dyntick-idle quiescent state visible to other CPUs (but only for those
Paul E. McKenney1925d192015-01-18 17:45:05 -0800356 * RCU flavors in desperate need of a quiescent state, which will normally
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800357 * be none of them). Either way, do a lightweight quiescent state for
358 * all RCU flavors.
Boqun Fengbb73c522015-07-30 16:55:38 -0700359 *
360 * The barrier() calls are redundant in the common case when this is
361 * called externally, but just in case this is called from within this
362 * file.
363 *
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800364 */
365void rcu_all_qs(void)
366{
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700367 unsigned long flags;
368
Boqun Fengbb73c522015-07-30 16:55:38 -0700369 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700370 if (unlikely(raw_cpu_read(rcu_sched_qs_mask))) {
371 local_irq_save(flags);
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800372 rcu_momentary_dyntick_idle();
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700373 local_irq_restore(flags);
374 }
Paul E. McKenneya1e12242016-01-13 13:57:54 -0800375 if (unlikely(raw_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))) {
376 /*
377 * Yes, we just checked a per-CPU variable with preemption
378 * enabled, so we might be migrated to some other CPU at
379 * this point. That is OK because in that case, the
380 * migration will supply the needed quiescent state.
381 * We might end up needlessly disabling preemption and
382 * invoking rcu_sched_qs() on the destination CPU, but
383 * the probability and cost are both quite low, so this
384 * should not be a problem in practice.
385 */
386 preempt_disable();
387 rcu_sched_qs();
388 preempt_enable();
389 }
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800390 this_cpu_inc(rcu_qs_ctr);
Boqun Fengbb73c522015-07-30 16:55:38 -0700391 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800392}
393EXPORT_SYMBOL_GPL(rcu_all_qs);
394
Eric Dumazet878d7432012-10-18 04:55:36 -0700395static long blimit = 10; /* Maximum callbacks per rcu_do_batch. */
396static long qhimark = 10000; /* If this many pending, ignore blimit. */
397static long qlowmark = 100; /* Once only this many pending, use blimit. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100398
Eric Dumazet878d7432012-10-18 04:55:36 -0700399module_param(blimit, long, 0444);
400module_param(qhimark, long, 0444);
401module_param(qlowmark, long, 0444);
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700402
Paul E. McKenney026ad282013-04-03 22:14:11 -0700403static ulong jiffies_till_first_fqs = ULONG_MAX;
404static ulong jiffies_till_next_fqs = ULONG_MAX;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800405static bool rcu_kick_kthreads;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700406
407module_param(jiffies_till_first_fqs, ulong, 0644);
408module_param(jiffies_till_next_fqs, ulong, 0644);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800409module_param(rcu_kick_kthreads, bool, 0644);
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700410
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700411/*
412 * How long the grace period must be before we start recruiting
413 * quiescent-state help from rcu_note_context_switch().
414 */
415static ulong jiffies_till_sched_qs = HZ / 20;
416module_param(jiffies_till_sched_qs, ulong, 0644);
417
Paul E. McKenney48a76392014-03-11 13:02:16 -0700418static bool rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenney910ee452012-12-31 02:24:21 -0800419 struct rcu_data *rdp);
Paul E. McKenney217af2a2013-06-21 15:39:06 -0700420static void force_qs_rnp(struct rcu_state *rsp,
421 int (*f)(struct rcu_data *rsp, bool *isidle,
422 unsigned long *maxj),
423 bool *isidle, unsigned long *maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700424static void force_quiescent_state(struct rcu_state *rsp);
Paul E. McKenneye3950ec2014-10-21 08:03:57 -0700425static int rcu_pending(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100426
427/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800428 * Return the number of RCU batches started thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100429 */
Paul E. McKenney917963d2014-11-21 17:10:16 -0800430unsigned long rcu_batches_started(void)
431{
432 return rcu_state_p->gpnum;
433}
434EXPORT_SYMBOL_GPL(rcu_batches_started);
435
436/*
437 * Return the number of RCU-sched batches started thus far for debug & stats.
438 */
439unsigned long rcu_batches_started_sched(void)
440{
441 return rcu_sched_state.gpnum;
442}
443EXPORT_SYMBOL_GPL(rcu_batches_started_sched);
444
445/*
446 * Return the number of RCU BH batches started thus far for debug & stats.
447 */
448unsigned long rcu_batches_started_bh(void)
449{
450 return rcu_bh_state.gpnum;
451}
452EXPORT_SYMBOL_GPL(rcu_batches_started_bh);
453
454/*
455 * Return the number of RCU batches completed thus far for debug & stats.
456 */
457unsigned long rcu_batches_completed(void)
458{
459 return rcu_state_p->completed;
460}
461EXPORT_SYMBOL_GPL(rcu_batches_completed);
462
463/*
464 * Return the number of RCU-sched batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100465 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800466unsigned long rcu_batches_completed_sched(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100467{
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700468 return rcu_sched_state.completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100469}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700470EXPORT_SYMBOL_GPL(rcu_batches_completed_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100471
472/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800473 * Return the number of RCU BH batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100474 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800475unsigned long rcu_batches_completed_bh(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100476{
477 return rcu_bh_state.completed;
478}
479EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
480
481/*
Paul E. McKenney291783b2016-01-12 13:43:30 -0800482 * Return the number of RCU expedited batches completed thus far for
483 * debug & stats. Odd numbers mean that a batch is in progress, even
484 * numbers mean idle. The value returned will thus be roughly double
485 * the cumulative batches since boot.
486 */
487unsigned long rcu_exp_batches_completed(void)
488{
489 return rcu_state_p->expedited_sequence;
490}
491EXPORT_SYMBOL_GPL(rcu_exp_batches_completed);
492
493/*
494 * Return the number of RCU-sched expedited batches completed thus far
495 * for debug & stats. Similar to rcu_exp_batches_completed().
496 */
497unsigned long rcu_exp_batches_completed_sched(void)
498{
499 return rcu_sched_state.expedited_sequence;
500}
501EXPORT_SYMBOL_GPL(rcu_exp_batches_completed_sched);
502
503/*
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200504 * Force a quiescent state.
505 */
506void rcu_force_quiescent_state(void)
507{
Uma Sharmae5341652014-03-23 22:32:09 -0700508 force_quiescent_state(rcu_state_p);
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200509}
510EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
511
512/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800513 * Force a quiescent state for RCU BH.
514 */
515void rcu_bh_force_quiescent_state(void)
516{
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700517 force_quiescent_state(&rcu_bh_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800518}
519EXPORT_SYMBOL_GPL(rcu_bh_force_quiescent_state);
520
521/*
Paul E. McKenneye7580f32015-02-24 14:23:39 -0800522 * Force a quiescent state for RCU-sched.
523 */
524void rcu_sched_force_quiescent_state(void)
525{
526 force_quiescent_state(&rcu_sched_state);
527}
528EXPORT_SYMBOL_GPL(rcu_sched_force_quiescent_state);
529
530/*
Paul E. McKenneyafea2272014-03-12 07:10:41 -0700531 * Show the state of the grace-period kthreads.
532 */
533void show_rcu_gp_kthreads(void)
534{
535 struct rcu_state *rsp;
536
537 for_each_rcu_flavor(rsp) {
538 pr_info("%s: wait state: %d ->state: %#lx\n",
539 rsp->name, rsp->gp_state, rsp->gp_kthread->state);
540 /* sched_show_task(rsp->gp_kthread); */
541 }
542}
543EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
544
545/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700546 * Record the number of times rcutorture tests have been initiated and
547 * terminated. This information allows the debugfs tracing stats to be
548 * correlated to the rcutorture messages, even when the rcutorture module
549 * is being repeatedly loaded and unloaded. In other words, we cannot
550 * store this state in rcutorture itself.
551 */
552void rcutorture_record_test_transition(void)
553{
554 rcutorture_testseq++;
555 rcutorture_vernum = 0;
556}
557EXPORT_SYMBOL_GPL(rcutorture_record_test_transition);
558
559/*
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800560 * Send along grace-period-related data for rcutorture diagnostics.
561 */
562void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
563 unsigned long *gpnum, unsigned long *completed)
564{
565 struct rcu_state *rsp = NULL;
566
567 switch (test_type) {
568 case RCU_FLAVOR:
Uma Sharmae5341652014-03-23 22:32:09 -0700569 rsp = rcu_state_p;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800570 break;
571 case RCU_BH_FLAVOR:
572 rsp = &rcu_bh_state;
573 break;
574 case RCU_SCHED_FLAVOR:
575 rsp = &rcu_sched_state;
576 break;
577 default:
578 break;
579 }
580 if (rsp != NULL) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800581 *flags = READ_ONCE(rsp->gp_flags);
582 *gpnum = READ_ONCE(rsp->gpnum);
583 *completed = READ_ONCE(rsp->completed);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800584 return;
585 }
586 *flags = 0;
587 *gpnum = 0;
588 *completed = 0;
589}
590EXPORT_SYMBOL_GPL(rcutorture_get_gp_data);
591
592/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700593 * Record the number of writer passes through the current rcutorture test.
594 * This is also used to correlate debugfs tracing stats with the rcutorture
595 * messages.
596 */
597void rcutorture_record_progress(unsigned long vernum)
598{
599 rcutorture_vernum++;
600}
601EXPORT_SYMBOL_GPL(rcutorture_record_progress);
602
603/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100604 * Does the CPU have callbacks ready to be invoked?
605 */
606static int
607cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
608{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700609 return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL] &&
610 rdp->nxttail[RCU_DONE_TAIL] != NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100611}
612
613/*
Paul E. McKenney365187f2014-03-10 10:55:52 -0700614 * Return the root node of the specified rcu_state structure.
615 */
616static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
617{
618 return &rsp->node[0];
619}
620
621/*
622 * Is there any need for future grace periods?
623 * Interrupts must be disabled. If the caller does not hold the root
624 * rnp_node structure's ->lock, the results are advisory only.
625 */
626static int rcu_future_needs_gp(struct rcu_state *rsp)
627{
628 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800629 int idx = (READ_ONCE(rnp->completed) + 1) & 0x1;
Paul E. McKenney365187f2014-03-10 10:55:52 -0700630 int *fp = &rnp->need_future_gp[idx];
631
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800632 return READ_ONCE(*fp);
Paul E. McKenney365187f2014-03-10 10:55:52 -0700633}
634
635/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800636 * Does the current CPU require a not-yet-started grace period?
637 * The caller must have disabled interrupts to prevent races with
638 * normal callback registry.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100639 */
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700640static bool
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100641cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
642{
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800643 int i;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700644
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800645 if (rcu_gp_in_progress(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700646 return false; /* No, a grace period is already in progress. */
Paul E. McKenney365187f2014-03-10 10:55:52 -0700647 if (rcu_future_needs_gp(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700648 return true; /* Yes, a no-CBs CPU needs one. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800649 if (!rdp->nxttail[RCU_NEXT_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700650 return false; /* No, this is a no-CBs (or offline) CPU. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800651 if (*rdp->nxttail[RCU_NEXT_READY_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700652 return true; /* Yes, CPU has newly registered callbacks. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800653 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++)
654 if (rdp->nxttail[i - 1] != rdp->nxttail[i] &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800655 ULONG_CMP_LT(READ_ONCE(rsp->completed),
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800656 rdp->nxtcompleted[i]))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700657 return true; /* Yes, CBs for future grace period. */
658 return false; /* No grace period needed. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100659}
660
661/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700662 * rcu_eqs_enter_common - current CPU is moving towards extended quiescent state
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100663 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700664 * If the new value of the ->dynticks_nesting counter now is zero,
665 * we really have entered idle, and must do the appropriate accounting.
666 * The caller must have disabled interrupts.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100667 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700668static void rcu_eqs_enter_common(long long oldval, bool user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100669{
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700670 struct rcu_state *rsp;
671 struct rcu_data *rdp;
Christoph Lameter28ced792014-09-02 14:13:44 -0700672 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700673
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400674 trace_rcu_dyntick(TPS("Start"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700675 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
676 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700677 struct task_struct *idle __maybe_unused =
678 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700679
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400680 trace_rcu_dyntick(TPS("Error on entry: not idle task"), oldval, 0);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700681 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700682 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
683 current->pid, current->comm,
684 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700685 }
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700686 for_each_rcu_flavor(rsp) {
687 rdp = this_cpu_ptr(rsp->rda);
688 do_nocb_deferred_wakeup(rdp);
689 }
Paul E. McKenney198bbf82014-10-22 15:03:43 -0700690 rcu_prepare_for_idle();
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700691 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100692 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700693 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100694 smp_mb__after_atomic(); /* Force ordering with next sojourn. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700695 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
696 atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700697 rcu_dynticks_task_enter();
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800698
699 /*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700700 * It is illegal to enter an extended quiescent state while
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800701 * in an RCU read-side critical section.
702 */
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700703 RCU_LOCKDEP_WARN(lock_is_held(&rcu_lock_map),
704 "Illegal idle entry in RCU read-side critical section.");
705 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map),
706 "Illegal idle entry in RCU-bh read-side critical section.");
707 RCU_LOCKDEP_WARN(lock_is_held(&rcu_sched_lock_map),
708 "Illegal idle entry in RCU-sched read-side critical section.");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100709}
710
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700711/*
712 * Enter an RCU extended quiescent state, which can be either the
713 * idle loop or adaptive-tickless usermode execution.
714 */
715static void rcu_eqs_enter(bool user)
716{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700717 long long oldval;
718 struct rcu_dynticks *rdtp;
719
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700720 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700721 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700722 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
723 (oldval & DYNTICK_TASK_NEST_MASK) == 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700724 if ((oldval & DYNTICK_TASK_NEST_MASK) == DYNTICK_TASK_NEST_VALUE) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700725 rdtp->dynticks_nesting = 0;
Christoph Lameter28ced792014-09-02 14:13:44 -0700726 rcu_eqs_enter_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700727 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700728 rdtp->dynticks_nesting -= DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700729 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700730}
731
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700732/**
733 * rcu_idle_enter - inform RCU that current CPU is entering idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100734 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700735 * Enter idle mode, in other words, -leave- the mode in which RCU
736 * read-side critical sections can occur. (Though RCU read-side
737 * critical sections can occur in irq handlers in idle, a possibility
738 * handled by irq_enter() and irq_exit().)
739 *
740 * We crowbar the ->dynticks_nesting field to zero to allow for
741 * the possibility of usermode upcalls having messed up our count
742 * of interrupt nesting level during the prior busy period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100743 */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700744void rcu_idle_enter(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100745{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200746 unsigned long flags;
747
748 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700749 rcu_eqs_enter(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700750 rcu_sysidle_enter(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200751 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700752}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800753EXPORT_SYMBOL_GPL(rcu_idle_enter);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700754
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700755#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700756/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700757 * rcu_user_enter - inform RCU that we are resuming userspace.
758 *
759 * Enter RCU idle mode right before resuming userspace. No use of RCU
760 * is permitted between this call and rcu_user_exit(). This way the
761 * CPU doesn't need to maintain the tick for RCU maintenance purposes
762 * when the CPU runs in userspace.
763 */
764void rcu_user_enter(void)
765{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100766 rcu_eqs_enter(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700767}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700768#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700769
770/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700771 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
772 *
773 * Exit from an interrupt handler, which might possibly result in entering
774 * idle mode, in other words, leaving the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700775 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700776 *
777 * This code assumes that the idle loop never does anything that might
778 * result in unbalanced calls to irq_enter() and irq_exit(). If your
779 * architecture violates this assumption, RCU will give you what you
780 * deserve, good and hard. But very infrequently and irreproducibly.
781 *
782 * Use things like work queues to work around this limitation.
783 *
784 * You have been warned.
785 */
786void rcu_irq_exit(void)
787{
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700788 long long oldval;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700789 struct rcu_dynticks *rdtp;
790
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700791 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700792 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700793 oldval = rdtp->dynticks_nesting;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700794 rdtp->dynticks_nesting--;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700795 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
796 rdtp->dynticks_nesting < 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800797 if (rdtp->dynticks_nesting)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400798 trace_rcu_dyntick(TPS("--="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800799 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700800 rcu_eqs_enter_common(oldval, true);
801 rcu_sysidle_enter(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700802}
803
804/*
805 * Wrapper for rcu_irq_exit() where interrupts are enabled.
806 */
807void rcu_irq_exit_irqson(void)
808{
809 unsigned long flags;
810
811 local_irq_save(flags);
812 rcu_irq_exit();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700813 local_irq_restore(flags);
814}
815
816/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700817 * rcu_eqs_exit_common - current CPU moving away from extended quiescent state
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700818 *
819 * If the new value of the ->dynticks_nesting counter was previously zero,
820 * we really have exited idle, and must do the appropriate accounting.
821 * The caller must have disabled interrupts.
822 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700823static void rcu_eqs_exit_common(long long oldval, int user)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700824{
Christoph Lameter28ced792014-09-02 14:13:44 -0700825 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
826
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700827 rcu_dynticks_task_exit();
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100828 smp_mb__before_atomic(); /* Force ordering w/previous sojourn. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700829 atomic_inc(&rdtp->dynticks);
830 /* CPUs seeing atomic_inc() must see later RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100831 smp_mb__after_atomic(); /* See above. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700832 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
833 !(atomic_read(&rdtp->dynticks) & 0x1));
Paul E. McKenney8fa78452014-10-22 15:07:37 -0700834 rcu_cleanup_after_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400835 trace_rcu_dyntick(TPS("End"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700836 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
837 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700838 struct task_struct *idle __maybe_unused =
839 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700840
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400841 trace_rcu_dyntick(TPS("Error on exit: not idle task"),
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700842 oldval, rdtp->dynticks_nesting);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700843 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700844 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
845 current->pid, current->comm,
846 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700847 }
848}
849
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700850/*
851 * Exit an RCU extended quiescent state, which can be either the
852 * idle loop or adaptive-tickless usermode execution.
853 */
854static void rcu_eqs_exit(bool user)
855{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700856 struct rcu_dynticks *rdtp;
857 long long oldval;
858
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700859 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700860 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700861 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && oldval < 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700862 if (oldval & DYNTICK_TASK_NEST_MASK) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700863 rdtp->dynticks_nesting += DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700864 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700865 rdtp->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Christoph Lameter28ced792014-09-02 14:13:44 -0700866 rcu_eqs_exit_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700867 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700868}
869
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700870/**
871 * rcu_idle_exit - inform RCU that current CPU is leaving idle
872 *
873 * Exit idle mode, in other words, -enter- the mode in which RCU
874 * read-side critical sections can occur.
875 *
Paul E. McKenney29e37d82011-11-17 16:55:56 -0800876 * We crowbar the ->dynticks_nesting field to DYNTICK_TASK_NEST to
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700877 * allow for the possibility of usermode upcalls messing up our count
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700878 * of interrupt nesting level during the busy period that is just
879 * now starting.
880 */
881void rcu_idle_exit(void)
882{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200883 unsigned long flags;
884
885 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700886 rcu_eqs_exit(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700887 rcu_sysidle_exit(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200888 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700889}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800890EXPORT_SYMBOL_GPL(rcu_idle_exit);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700891
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700892#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700893/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700894 * rcu_user_exit - inform RCU that we are exiting userspace.
895 *
896 * Exit RCU idle mode while entering the kernel because it can
897 * run a RCU read side critical section anytime.
898 */
899void rcu_user_exit(void)
900{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100901 rcu_eqs_exit(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700902}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700903#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700904
905/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700906 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle
907 *
908 * Enter an interrupt handler, which might possibly result in exiting
909 * idle mode, in other words, entering the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700910 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700911 *
912 * Note that the Linux kernel is fully capable of entering an interrupt
913 * handler that it never exits, for example when doing upcalls to
914 * user mode! This code assumes that the idle loop never does upcalls to
915 * user mode. If your architecture does do upcalls from the idle loop (or
916 * does anything else that results in unbalanced calls to the irq_enter()
917 * and irq_exit() functions), RCU will give you what you deserve, good
918 * and hard. But very infrequently and irreproducibly.
919 *
920 * Use things like work queues to work around this limitation.
921 *
922 * You have been warned.
923 */
924void rcu_irq_enter(void)
925{
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700926 struct rcu_dynticks *rdtp;
927 long long oldval;
928
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700929 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700930 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700931 oldval = rdtp->dynticks_nesting;
932 rdtp->dynticks_nesting++;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700933 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
934 rdtp->dynticks_nesting == 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800935 if (oldval)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400936 trace_rcu_dyntick(TPS("++="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800937 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700938 rcu_eqs_exit_common(oldval, true);
939 rcu_sysidle_exit(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700940}
941
942/*
943 * Wrapper for rcu_irq_enter() where interrupts are enabled.
944 */
945void rcu_irq_enter_irqson(void)
946{
947 unsigned long flags;
948
949 local_irq_save(flags);
950 rcu_irq_enter();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100951 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100952}
953
954/**
955 * rcu_nmi_enter - inform RCU of entry to NMI context
956 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800957 * If the CPU was idle from RCU's viewpoint, update rdtp->dynticks and
958 * rdtp->dynticks_nmi_nesting to let the RCU grace-period handling know
959 * that the CPU is active. This implementation permits nested NMIs, as
960 * long as the nesting level does not overflow an int. (You will probably
961 * run out of stack space first.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100962 */
963void rcu_nmi_enter(void)
964{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700965 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney734d1682014-11-21 14:45:12 -0800966 int incby = 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100967
Paul E. McKenney734d1682014-11-21 14:45:12 -0800968 /* Complain about underflow. */
969 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting < 0);
970
971 /*
972 * If idle from RCU viewpoint, atomically increment ->dynticks
973 * to mark non-idle and increment ->dynticks_nmi_nesting by one.
974 * Otherwise, increment ->dynticks_nmi_nesting by two. This means
975 * if ->dynticks_nmi_nesting is equal to one, we are guaranteed
976 * to be in the outermost NMI handler that interrupted an RCU-idle
977 * period (observation due to Andy Lutomirski).
978 */
979 if (!(atomic_read(&rdtp->dynticks) & 0x1)) {
980 smp_mb__before_atomic(); /* Force delay from prior write. */
981 atomic_inc(&rdtp->dynticks);
982 /* atomic_inc() before later RCU read-side crit sects */
983 smp_mb__after_atomic(); /* See above. */
984 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
985 incby = 1;
986 }
987 rdtp->dynticks_nmi_nesting += incby;
988 barrier();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100989}
990
991/**
992 * rcu_nmi_exit - inform RCU of exit from NMI context
993 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800994 * If we are returning from the outermost NMI handler that interrupted an
995 * RCU-idle period, update rdtp->dynticks and rdtp->dynticks_nmi_nesting
996 * to let the RCU grace-period handling know that the CPU is back to
997 * being RCU-idle.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100998 */
999void rcu_nmi_exit(void)
1000{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001001 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001002
Paul E. McKenney734d1682014-11-21 14:45:12 -08001003 /*
1004 * Check for ->dynticks_nmi_nesting underflow and bad ->dynticks.
1005 * (We are exiting an NMI handler, so RCU better be paying attention
1006 * to us!)
1007 */
1008 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting <= 0);
1009 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1010
1011 /*
1012 * If the nesting level is not 1, the CPU wasn't RCU-idle, so
1013 * leave it in non-RCU-idle state.
1014 */
1015 if (rdtp->dynticks_nmi_nesting != 1) {
1016 rdtp->dynticks_nmi_nesting -= 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001017 return;
Paul E. McKenney734d1682014-11-21 14:45:12 -08001018 }
1019
1020 /* This NMI interrupted an RCU-idle CPU, restore RCU-idleness. */
1021 rdtp->dynticks_nmi_nesting = 0;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001022 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001023 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001024 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001025 smp_mb__after_atomic(); /* Force delay to next write. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001026 WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001027}
1028
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001029/**
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001030 * __rcu_is_watching - are RCU read-side critical sections safe?
1031 *
1032 * Return true if RCU is watching the running CPU, which means that
1033 * this CPU can safely enter RCU read-side critical sections. Unlike
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001034 * rcu_is_watching(), the caller of __rcu_is_watching() must have at
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001035 * least disabled preemption.
1036 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001037bool notrace __rcu_is_watching(void)
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001038{
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001039 return atomic_read(this_cpu_ptr(&rcu_dynticks.dynticks)) & 0x1;
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001040}
1041
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001042/**
1043 * rcu_is_watching - see if RCU thinks that the current CPU is idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001044 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001045 * If the current CPU is in its idle loop and is neither in an interrupt
Paul E. McKenney34240692011-10-03 11:38:52 -07001046 * or NMI handler, return true.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001047 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001048bool notrace rcu_is_watching(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001049{
Pranith Kumarf534ed12014-07-08 18:26:11 -04001050 bool ret;
Paul E. McKenney34240692011-10-03 11:38:52 -07001051
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001052 preempt_disable_notrace();
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001053 ret = __rcu_is_watching();
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001054 preempt_enable_notrace();
Paul E. McKenney34240692011-10-03 11:38:52 -07001055 return ret;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001056}
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001057EXPORT_SYMBOL_GPL(rcu_is_watching);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001058
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001059#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001060
1061/*
1062 * Is the current CPU online? Disable preemption to avoid false positives
1063 * that could otherwise happen due to the current CPU number being sampled,
1064 * this task being preempted, its old CPU being taken offline, resuming
1065 * on some other CPU, then determining that its old CPU is now offline.
1066 * It is OK to use RCU on an offline processor during initial boot, hence
Paul E. McKenney2036d942012-01-30 17:02:47 -08001067 * the check for rcu_scheduler_fully_active. Note also that it is OK
1068 * for a CPU coming online to use RCU for one jiffy prior to marking itself
1069 * online in the cpu_online_mask. Similarly, it is OK for a CPU going
1070 * offline to continue to use RCU for one jiffy after marking itself
1071 * offline in the cpu_online_mask. This leniency is necessary given the
1072 * non-atomic nature of the online and offline processing, for example,
1073 * the fact that a CPU enters the scheduler after completing the CPU_DYING
1074 * notifiers.
1075 *
1076 * This is also why RCU internally marks CPUs online during the
1077 * CPU_UP_PREPARE phase and offline during the CPU_DEAD phase.
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001078 *
1079 * Disable checking if in an NMI handler because we cannot safely report
1080 * errors from NMI handlers anyway.
1081 */
1082bool rcu_lockdep_current_cpu_online(void)
1083{
Paul E. McKenney2036d942012-01-30 17:02:47 -08001084 struct rcu_data *rdp;
1085 struct rcu_node *rnp;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001086 bool ret;
1087
1088 if (in_nmi())
Fengguang Wuf6f7ee92013-10-10 11:08:33 -07001089 return true;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001090 preempt_disable();
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001091 rdp = this_cpu_ptr(&rcu_sched_data);
Paul E. McKenney2036d942012-01-30 17:02:47 -08001092 rnp = rdp->mynode;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001093 ret = (rdp->grpmask & rcu_rnp_online_cpus(rnp)) ||
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001094 !rcu_scheduler_fully_active;
1095 preempt_enable();
1096 return ret;
1097}
1098EXPORT_SYMBOL_GPL(rcu_lockdep_current_cpu_online);
1099
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001100#endif /* #if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001101
1102/**
1103 * rcu_is_cpu_rrupt_from_idle - see if idle or immediately interrupted from idle
1104 *
1105 * If the current CPU is idle or running at a first-level (not nested)
1106 * interrupt from idle, return true. The caller must have at least
1107 * disabled preemption.
1108 */
Josh Triplett62e3cb12012-11-20 09:55:26 -08001109static int rcu_is_cpu_rrupt_from_idle(void)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001110{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001111 return __this_cpu_read(rcu_dynticks.dynticks_nesting) <= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001112}
1113
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001114/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001115 * Snapshot the specified CPU's dynticks counter so that we can later
1116 * credit them with an implicit quiescent state. Return 1 if this CPU
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001117 * is in dynticks idle mode, which is an extended quiescent state.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001118 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001119static int dyntick_save_progress_counter(struct rcu_data *rdp,
1120 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001121{
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001122 rdp->dynticks_snap = atomic_add_return(0, &rdp->dynticks->dynticks);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07001123 rcu_sysidle_check_cpu(rdp, isidle, maxj);
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001124 if ((rdp->dynticks_snap & 0x1) == 0) {
1125 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001126 if (ULONG_CMP_LT(READ_ONCE(rdp->gpnum) + ULONG_MAX / 4,
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001127 rdp->mynode->gpnum))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001128 WRITE_ONCE(rdp->gpwrap, true);
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001129 return 1;
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001130 }
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001131 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001132}
1133
1134/*
1135 * Return true if the specified CPU has passed through a quiescent
1136 * state by virtue of being in or having passed through an dynticks
1137 * idle state since the last call to dyntick_save_progress_counter()
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001138 * for this same CPU, or by virtue of having been offline.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001139 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001140static int rcu_implicit_dynticks_qs(struct rcu_data *rdp,
1141 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001142{
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001143 unsigned int curr;
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001144 int *rcrmp;
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001145 unsigned int snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001146
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001147 curr = (unsigned int)atomic_add_return(0, &rdp->dynticks->dynticks);
1148 snap = (unsigned int)rdp->dynticks_snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001149
1150 /*
1151 * If the CPU passed through or entered a dynticks idle phase with
1152 * no active irq/NMI handlers, then we can safely pretend that the CPU
1153 * already acknowledged the request to pass through a quiescent
1154 * state. Either way, that CPU cannot possibly be in an RCU
1155 * read-side critical section that started before the beginning
1156 * of the current RCU grace period.
1157 */
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001158 if ((curr & 0x1) == 0 || UINT_CMP_GE(curr, snap + 2)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001159 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001160 rdp->dynticks_fqs++;
1161 return 1;
1162 }
1163
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001164 /*
1165 * Check for the CPU being offline, but only if the grace period
1166 * is old enough. We don't need to worry about the CPU changing
1167 * state: If we see it offline even once, it has been through a
1168 * quiescent state.
1169 *
1170 * The reason for insisting that the grace period be at least
1171 * one jiffy old is that CPUs that are not quite online and that
1172 * have just gone offline can still execute RCU read-side critical
1173 * sections.
1174 */
1175 if (ULONG_CMP_GE(rdp->rsp->gp_start + 2, jiffies))
1176 return 0; /* Grace period is not old enough. */
1177 barrier();
1178 if (cpu_is_offline(rdp->cpu)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001179 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("ofl"));
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001180 rdp->offline_fqs++;
1181 return 1;
1182 }
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001183
1184 /*
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001185 * A CPU running for an extended time within the kernel can
1186 * delay RCU grace periods. When the CPU is in NO_HZ_FULL mode,
1187 * even context-switching back and forth between a pair of
1188 * in-kernel CPU-bound tasks cannot advance grace periods.
1189 * So if the grace period is old enough, make the CPU pay attention.
1190 * Note that the unsynchronized assignments to the per-CPU
1191 * rcu_sched_qs_mask variable are safe. Yes, setting of
1192 * bits can be lost, but they will be set again on the next
1193 * force-quiescent-state pass. So lost bit sets do not result
1194 * in incorrect behavior, merely in a grace period lasting
1195 * a few jiffies longer than it might otherwise. Because
1196 * there are at most four threads involved, and because the
1197 * updates are only once every few jiffies, the probability of
1198 * lossage (and thus of slight grace-period extension) is
1199 * quite low.
1200 *
1201 * Note that if the jiffies_till_sched_qs boot/sysfs parameter
1202 * is set too high, we override with half of the RCU CPU stall
1203 * warning delay.
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001204 */
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001205 rcrmp = &per_cpu(rcu_sched_qs_mask, rdp->cpu);
1206 if (ULONG_CMP_GE(jiffies,
1207 rdp->rsp->gp_start + jiffies_till_sched_qs) ||
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001208 ULONG_CMP_GE(jiffies, rdp->rsp->jiffies_resched)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001209 if (!(READ_ONCE(*rcrmp) & rdp->rsp->flavor_mask)) {
1210 WRITE_ONCE(rdp->cond_resched_completed,
1211 READ_ONCE(rdp->mynode->completed));
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001212 smp_mb(); /* ->cond_resched_completed before *rcrmp. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001213 WRITE_ONCE(*rcrmp,
1214 READ_ONCE(*rcrmp) + rdp->rsp->flavor_mask);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001215 }
Paul E. McKenney49149502015-12-11 13:48:43 -08001216 rdp->rsp->jiffies_resched += 5; /* Re-enable beating. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001217 }
1218
Paul E. McKenney49149502015-12-11 13:48:43 -08001219 /* And if it has been a really long time, kick the CPU as well. */
1220 if (ULONG_CMP_GE(jiffies,
1221 rdp->rsp->gp_start + 2 * jiffies_till_sched_qs) ||
1222 ULONG_CMP_GE(jiffies, rdp->rsp->gp_start + jiffies_till_sched_qs))
1223 resched_cpu(rdp->cpu); /* Force CPU into scheduler. */
1224
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001225 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001226}
1227
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001228static void record_gp_stall_check_time(struct rcu_state *rsp)
1229{
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001230 unsigned long j = jiffies;
Paul E. McKenney6193c762013-09-23 13:57:18 -07001231 unsigned long j1;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001232
1233 rsp->gp_start = j;
1234 smp_wmb(); /* Record start time before stall time. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001235 j1 = rcu_jiffies_till_stall_check();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001236 WRITE_ONCE(rsp->jiffies_stall, j + j1);
Paul E. McKenney6193c762013-09-23 13:57:18 -07001237 rsp->jiffies_resched = j + j1 / 2;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001238 rsp->n_force_qs_gpstart = READ_ONCE(rsp->n_force_qs);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001239}
1240
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001241/*
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001242 * Convert a ->gp_state value to a character string.
1243 */
1244static const char *gp_state_getname(short gs)
1245{
1246 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
1247 return "???";
1248 return gp_state_names[gs];
1249}
1250
1251/*
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001252 * Complain about starvation of grace-period kthread.
1253 */
1254static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp)
1255{
1256 unsigned long gpa;
1257 unsigned long j;
1258
1259 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001260 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001261 if (j - gpa > 2 * HZ) {
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001262 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 -07001263 rsp->name, j - gpa,
Paul E. McKenney319362c2015-05-19 14:16:52 -07001264 rsp->gpnum, rsp->completed,
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001265 rsp->gp_flags,
1266 gp_state_getname(rsp->gp_state), rsp->gp_state,
Paul E. McKenneya0e3a3a2015-12-05 17:34:10 -08001267 rsp->gp_kthread ? rsp->gp_kthread->state : ~0);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001268 if (rsp->gp_kthread) {
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001269 sched_show_task(rsp->gp_kthread);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001270 wake_up_process(rsp->gp_kthread);
1271 }
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001272 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001273}
1274
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001275/*
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001276 * Dump stacks of all tasks running on stalled CPUs.
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001277 */
1278static void rcu_dump_cpu_stacks(struct rcu_state *rsp)
1279{
1280 int cpu;
1281 unsigned long flags;
1282 struct rcu_node *rnp;
1283
1284 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001285 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001286 if (rnp->qsmask != 0) {
1287 for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
1288 if (rnp->qsmask & (1UL << cpu))
1289 dump_cpu_task(rnp->grplo + cpu);
1290 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001291 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001292 }
1293}
1294
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001295/*
1296 * If too much time has passed in the current grace period, and if
1297 * so configured, go kick the relevant kthreads.
1298 */
1299static void rcu_stall_kick_kthreads(struct rcu_state *rsp)
1300{
1301 unsigned long j;
1302
1303 if (!rcu_kick_kthreads)
1304 return;
1305 j = READ_ONCE(rsp->jiffies_kick_kthreads);
1306 if (time_after(jiffies, j) && rsp->gp_kthread) {
1307 WARN_ONCE(1, "Kicking %s grace-period kthread\n", rsp->name);
Paul E. McKenney5dffed12016-02-17 11:54:28 -08001308 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001309 wake_up_process(rsp->gp_kthread);
1310 WRITE_ONCE(rsp->jiffies_kick_kthreads, j + HZ);
1311 }
1312}
1313
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001314static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gpnum)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001315{
1316 int cpu;
1317 long delta;
1318 unsigned long flags;
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001319 unsigned long gpa;
1320 unsigned long j;
Paul E. McKenney285fe292012-05-09 08:45:12 -07001321 int ndetected = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001322 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001323 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001324
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001325 /* Kick and suppress, if so configured. */
1326 rcu_stall_kick_kthreads(rsp);
1327 if (rcu_cpu_stall_suppress)
1328 return;
1329
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001330 /* Only let one CPU complain about others per time interval. */
1331
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001332 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001333 delta = jiffies - READ_ONCE(rsp->jiffies_stall);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07001334 if (delta < RCU_STALL_RAT_DELAY || !rcu_gp_in_progress(rsp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08001335 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001336 return;
1337 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001338 WRITE_ONCE(rsp->jiffies_stall,
1339 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001340 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001341
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001342 /*
1343 * OK, time to rat on our buddy...
1344 * See Documentation/RCU/stallwarn.txt for info on how to debug
1345 * RCU CPU stall warnings.
1346 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001347 pr_err("INFO: %s detected stalls on CPUs/tasks:",
Paul E. McKenney4300aa62010-04-13 16:18:22 -07001348 rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001349 print_cpu_stall_info_begin();
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07001350 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001351 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001352 ndetected += rcu_print_task_stall(rnp);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001353 if (rnp->qsmask != 0) {
1354 for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
1355 if (rnp->qsmask & (1UL << cpu)) {
1356 print_cpu_stall_info(rsp,
1357 rnp->grplo + cpu);
1358 ndetected++;
1359 }
1360 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001361 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001362 }
Paul E. McKenneya858af22012-01-16 13:29:10 -08001363
Paul E. McKenneya858af22012-01-16 13:29:10 -08001364 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001365 for_each_possible_cpu(cpu)
1366 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001367 pr_cont("(detected by %d, t=%ld jiffies, g=%ld, c=%ld, q=%lu)\n",
Paul E. McKenneyeee05882012-09-21 14:15:05 -07001368 smp_processor_id(), (long)(jiffies - rsp->gp_start),
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001369 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001370 if (ndetected) {
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001371 rcu_dump_cpu_stacks(rsp);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001372 } else {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001373 if (READ_ONCE(rsp->gpnum) != gpnum ||
1374 READ_ONCE(rsp->completed) == gpnum) {
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001375 pr_err("INFO: Stall ended before state dump start\n");
1376 } else {
1377 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001378 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001379 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 -08001380 rsp->name, j - gpa, j, gpa,
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001381 jiffies_till_next_fqs,
1382 rcu_get_root(rsp)->qsmask);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001383 /* In this case, the current CPU might be at fault. */
1384 sched_show_task(current);
1385 }
1386 }
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001387
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001388 /* Complain about tasks blocking the grace period. */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001389 rcu_print_detail_task_stall(rsp);
1390
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001391 rcu_check_gp_kthread_starvation(rsp);
1392
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001393 force_quiescent_state(rsp); /* Kick them all. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001394}
1395
1396static void print_cpu_stall(struct rcu_state *rsp)
1397{
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001398 int cpu;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001399 unsigned long flags;
1400 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001401 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001402
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001403 /* Kick and suppress, if so configured. */
1404 rcu_stall_kick_kthreads(rsp);
1405 if (rcu_cpu_stall_suppress)
1406 return;
1407
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001408 /*
1409 * OK, time to rat on ourselves...
1410 * See Documentation/RCU/stallwarn.txt for info on how to debug
1411 * RCU CPU stall warnings.
1412 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001413 pr_err("INFO: %s self-detected stall on CPU", rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001414 print_cpu_stall_info_begin();
1415 print_cpu_stall_info(rsp, smp_processor_id());
1416 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001417 for_each_possible_cpu(cpu)
1418 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001419 pr_cont(" (t=%lu jiffies g=%ld c=%ld q=%lu)\n",
1420 jiffies - rsp->gp_start,
1421 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001422
1423 rcu_check_gp_kthread_starvation(rsp);
1424
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001425 rcu_dump_cpu_stacks(rsp);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001426
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001427 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001428 if (ULONG_CMP_GE(jiffies, READ_ONCE(rsp->jiffies_stall)))
1429 WRITE_ONCE(rsp->jiffies_stall,
1430 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001431 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001432
Peter Zijlstrab021fe32013-09-17 09:30:55 +02001433 /*
1434 * Attempt to revive the RCU machinery by forcing a context switch.
1435 *
1436 * A context switch would normally allow the RCU state machine to make
1437 * progress and it could be we're stuck in kernel space without context
1438 * switches for an entirely unreasonable amount of time.
1439 */
1440 resched_cpu(smp_processor_id());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001441}
1442
1443static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
1444{
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001445 unsigned long completed;
1446 unsigned long gpnum;
1447 unsigned long gps;
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001448 unsigned long j;
1449 unsigned long js;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001450 struct rcu_node *rnp;
1451
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001452 if ((rcu_cpu_stall_suppress && !rcu_kick_kthreads) ||
1453 !rcu_gp_in_progress(rsp))
Paul E. McKenneyc68de202010-04-15 10:12:40 -07001454 return;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001455 rcu_stall_kick_kthreads(rsp);
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001456 j = jiffies;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001457
1458 /*
1459 * Lots of memory barriers to reject false positives.
1460 *
1461 * The idea is to pick up rsp->gpnum, then rsp->jiffies_stall,
1462 * then rsp->gp_start, and finally rsp->completed. These values
1463 * are updated in the opposite order with memory barriers (or
1464 * equivalent) during grace-period initialization and cleanup.
1465 * Now, a false positive can occur if we get an new value of
1466 * rsp->gp_start and a old value of rsp->jiffies_stall. But given
1467 * the memory barriers, the only way that this can happen is if one
1468 * grace period ends and another starts between these two fetches.
1469 * Detect this by comparing rsp->completed with the previous fetch
1470 * from rsp->gpnum.
1471 *
1472 * Given this check, comparisons of jiffies, rsp->jiffies_stall,
1473 * and rsp->gp_start suffice to forestall false positives.
1474 */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001475 gpnum = READ_ONCE(rsp->gpnum);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001476 smp_rmb(); /* Pick up ->gpnum first... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001477 js = READ_ONCE(rsp->jiffies_stall);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001478 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001479 gps = READ_ONCE(rsp->gp_start);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001480 smp_rmb(); /* ...and finally ->gp_start before ->completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001481 completed = READ_ONCE(rsp->completed);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001482 if (ULONG_CMP_GE(completed, gpnum) ||
1483 ULONG_CMP_LT(j, js) ||
1484 ULONG_CMP_GE(gps, js))
1485 return; /* No stall or GP completed since entering function. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001486 rnp = rdp->mynode;
Paul E. McKenneyc96ea7c2012-08-13 11:17:06 -07001487 if (rcu_gp_in_progress(rsp) &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001488 (READ_ONCE(rnp->qsmask) & rdp->grpmask)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001489
1490 /* We haven't checked in, so go dump stack. */
1491 print_cpu_stall(rsp);
1492
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001493 } else if (rcu_gp_in_progress(rsp) &&
1494 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001495
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001496 /* They had a few time units to dump stack, so complain. */
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001497 print_other_cpu_stall(rsp, gpnum);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001498 }
1499}
1500
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001501/**
1502 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
1503 *
1504 * Set the stall-warning timeout way off into the future, thus preventing
1505 * any RCU CPU stall-warning messages from appearing in the current set of
1506 * RCU grace periods.
1507 *
1508 * The caller must disable hard irqs.
1509 */
1510void rcu_cpu_stall_reset(void)
1511{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07001512 struct rcu_state *rsp;
1513
1514 for_each_rcu_flavor(rsp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001515 WRITE_ONCE(rsp->jiffies_stall, jiffies + ULONG_MAX / 2);
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001516}
1517
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001518/*
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001519 * Initialize the specified rcu_data structure's default callback list
1520 * to empty. The default callback list is the one that is not used by
1521 * no-callbacks CPUs.
1522 */
1523static void init_default_callback_list(struct rcu_data *rdp)
1524{
1525 int i;
1526
1527 rdp->nxtlist = NULL;
1528 for (i = 0; i < RCU_NEXT_SIZE; i++)
1529 rdp->nxttail[i] = &rdp->nxtlist;
1530}
1531
1532/*
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001533 * Initialize the specified rcu_data structure's callback list to empty.
1534 */
1535static void init_callback_list(struct rcu_data *rdp)
1536{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001537 if (init_nocb_callback_list(rdp))
1538 return;
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001539 init_default_callback_list(rdp);
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001540}
1541
1542/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001543 * Determine the value that ->completed will have at the end of the
1544 * next subsequent grace period. This is used to tag callbacks so that
1545 * a CPU can invoke callbacks in a timely fashion even if that CPU has
1546 * been dyntick-idle for an extended period with callbacks under the
1547 * influence of RCU_FAST_NO_HZ.
1548 *
1549 * The caller must hold rnp->lock with interrupts disabled.
1550 */
1551static unsigned long rcu_cbs_completed(struct rcu_state *rsp,
1552 struct rcu_node *rnp)
1553{
1554 /*
1555 * If RCU is idle, we just wait for the next grace period.
1556 * But we can only be sure that RCU is idle if we are looking
1557 * at the root rcu_node structure -- otherwise, a new grace
1558 * period might have started, but just not yet gotten around
1559 * to initializing the current non-root rcu_node structure.
1560 */
1561 if (rcu_get_root(rsp) == rnp && rnp->gpnum == rnp->completed)
1562 return rnp->completed + 1;
1563
1564 /*
1565 * Otherwise, wait for a possible partial grace period and
1566 * then the subsequent full grace period.
1567 */
1568 return rnp->completed + 2;
1569}
1570
1571/*
Paul E. McKenney0446be42012-12-30 15:21:01 -08001572 * Trace-event helper function for rcu_start_future_gp() and
1573 * rcu_nocb_wait_gp().
1574 */
1575static void trace_rcu_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001576 unsigned long c, const char *s)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001577{
1578 trace_rcu_future_grace_period(rdp->rsp->name, rnp->gpnum,
1579 rnp->completed, c, rnp->level,
1580 rnp->grplo, rnp->grphi, s);
1581}
1582
1583/*
1584 * Start some future grace period, as needed to handle newly arrived
1585 * callbacks. The required future grace periods are recorded in each
Paul E. McKenney48a76392014-03-11 13:02:16 -07001586 * rcu_node structure's ->need_future_gp field. Returns true if there
1587 * is reason to awaken the grace-period kthread.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001588 *
1589 * The caller must hold the specified rcu_node structure's ->lock.
1590 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001591static bool __maybe_unused
1592rcu_start_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
1593 unsigned long *c_out)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001594{
1595 unsigned long c;
1596 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001597 bool ret = false;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001598 struct rcu_node *rnp_root = rcu_get_root(rdp->rsp);
1599
1600 /*
1601 * Pick up grace-period number for new callbacks. If this
1602 * grace period is already marked as needed, return to the caller.
1603 */
1604 c = rcu_cbs_completed(rdp->rsp, rnp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001605 trace_rcu_future_gp(rnp, rdp, c, TPS("Startleaf"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001606 if (rnp->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001607 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001608 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001609 }
1610
1611 /*
1612 * If either this rcu_node structure or the root rcu_node structure
1613 * believe that a grace period is in progress, then we must wait
1614 * for the one following, which is in "c". Because our request
1615 * will be noticed at the end of the current grace period, we don't
Pranith Kumar48bd8e92014-06-11 10:32:47 -07001616 * need to explicitly start one. We only do the lockless check
1617 * of rnp_root's fields if the current rcu_node structure thinks
1618 * there is no grace period in flight, and because we hold rnp->lock,
1619 * the only possible change is when rnp_root's two fields are
1620 * equal, in which case rnp_root->gpnum might be concurrently
1621 * incremented. But that is OK, as it will just result in our
1622 * doing some extra useless work.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001623 */
1624 if (rnp->gpnum != rnp->completed ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001625 READ_ONCE(rnp_root->gpnum) != READ_ONCE(rnp_root->completed)) {
Paul E. McKenney0446be42012-12-30 15:21:01 -08001626 rnp->need_future_gp[c & 0x1]++;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001627 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001628 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001629 }
1630
1631 /*
1632 * There might be no grace period in progress. If we don't already
1633 * hold it, acquire the root rcu_node structure's lock in order to
1634 * start one (if needed).
1635 */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001636 if (rnp != rnp_root)
1637 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001638
1639 /*
1640 * Get a new grace-period number. If there really is no grace
1641 * period in progress, it will be smaller than the one we obtained
1642 * earlier. Adjust callbacks as needed. Note that even no-CBs
1643 * CPUs have a ->nxtcompleted[] array, so no no-CBs checks needed.
1644 */
1645 c = rcu_cbs_completed(rdp->rsp, rnp_root);
1646 for (i = RCU_DONE_TAIL; i < RCU_NEXT_TAIL; i++)
1647 if (ULONG_CMP_LT(c, rdp->nxtcompleted[i]))
1648 rdp->nxtcompleted[i] = c;
1649
1650 /*
1651 * If the needed for the required grace period is already
1652 * recorded, trace and leave.
1653 */
1654 if (rnp_root->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001655 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartedroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001656 goto unlock_out;
1657 }
1658
1659 /* Record the need for the future grace period. */
1660 rnp_root->need_future_gp[c & 0x1]++;
1661
1662 /* If a grace period is not already in progress, start one. */
1663 if (rnp_root->gpnum != rnp_root->completed) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001664 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleafroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001665 } else {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001666 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedroot"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001667 ret = rcu_start_gp_advanced(rdp->rsp, rnp_root, rdp);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001668 }
1669unlock_out:
1670 if (rnp != rnp_root)
Boqun Feng67c583a72015-12-29 12:18:47 +08001671 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001672out:
1673 if (c_out != NULL)
1674 *c_out = c;
1675 return ret;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001676}
1677
1678/*
1679 * Clean up any old requests for the just-ended grace period. Also return
1680 * whether any additional grace periods have been requested. Also invoke
1681 * rcu_nocb_gp_cleanup() in order to wake up any no-callbacks kthreads
1682 * waiting for this grace period to complete.
1683 */
1684static int rcu_future_gp_cleanup(struct rcu_state *rsp, struct rcu_node *rnp)
1685{
1686 int c = rnp->completed;
1687 int needmore;
1688 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
1689
Paul E. McKenney0446be42012-12-30 15:21:01 -08001690 rnp->need_future_gp[c & 0x1] = 0;
1691 needmore = rnp->need_future_gp[(c + 1) & 0x1];
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001692 trace_rcu_future_gp(rnp, rdp, c,
1693 needmore ? TPS("CleanupMore") : TPS("Cleanup"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001694 return needmore;
1695}
1696
1697/*
Paul E. McKenney48a76392014-03-11 13:02:16 -07001698 * Awaken the grace-period kthread for the specified flavor of RCU.
1699 * Don't do a self-awaken, and don't bother awakening when there is
1700 * nothing for the grace-period kthread to do (as in several CPUs
1701 * raced to awaken, and we lost), and finally don't try to awaken
1702 * a kthread that has not yet been created.
1703 */
1704static void rcu_gp_kthread_wake(struct rcu_state *rsp)
1705{
1706 if (current == rsp->gp_kthread ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001707 !READ_ONCE(rsp->gp_flags) ||
Paul E. McKenney48a76392014-03-11 13:02:16 -07001708 !rsp->gp_kthread)
1709 return;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001710 swake_up(&rsp->gp_wq);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001711}
1712
1713/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001714 * If there is room, assign a ->completed number to any callbacks on
1715 * this CPU that have not already been assigned. Also accelerate any
1716 * callbacks that were previously assigned a ->completed number that has
1717 * since proven to be too conservative, which can happen if callbacks get
1718 * assigned a ->completed number while RCU is idle, but with reference to
1719 * a non-root rcu_node structure. This function is idempotent, so it does
Paul E. McKenney48a76392014-03-11 13:02:16 -07001720 * not hurt to call it repeatedly. Returns an flag saying that we should
1721 * awaken the RCU grace-period kthread.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001722 *
1723 * The caller must hold rnp->lock with interrupts disabled.
1724 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001725static bool rcu_accelerate_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001726 struct rcu_data *rdp)
1727{
1728 unsigned long c;
1729 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001730 bool ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001731
1732 /* If the CPU has no callbacks, nothing to do. */
1733 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001734 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001735
1736 /*
1737 * Starting from the sublist containing the callbacks most
1738 * recently assigned a ->completed number and working down, find the
1739 * first sublist that is not assignable to an upcoming grace period.
1740 * Such a sublist has something in it (first two tests) and has
1741 * a ->completed number assigned that will complete sooner than
1742 * the ->completed number for newly arrived callbacks (last test).
1743 *
1744 * The key point is that any later sublist can be assigned the
1745 * same ->completed number as the newly arrived callbacks, which
1746 * means that the callbacks in any of these later sublist can be
1747 * grouped into a single sublist, whether or not they have already
1748 * been assigned a ->completed number.
1749 */
1750 c = rcu_cbs_completed(rsp, rnp);
1751 for (i = RCU_NEXT_TAIL - 1; i > RCU_DONE_TAIL; i--)
1752 if (rdp->nxttail[i] != rdp->nxttail[i - 1] &&
1753 !ULONG_CMP_GE(rdp->nxtcompleted[i], c))
1754 break;
1755
1756 /*
1757 * If there are no sublist for unassigned callbacks, leave.
1758 * At the same time, advance "i" one sublist, so that "i" will
1759 * index into the sublist where all the remaining callbacks should
1760 * be grouped into.
1761 */
1762 if (++i >= RCU_NEXT_TAIL)
Paul E. McKenney48a76392014-03-11 13:02:16 -07001763 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001764
1765 /*
1766 * Assign all subsequent callbacks' ->completed number to the next
1767 * full grace period and group them all in the sublist initially
1768 * indexed by "i".
1769 */
1770 for (; i <= RCU_NEXT_TAIL; i++) {
1771 rdp->nxttail[i] = rdp->nxttail[RCU_NEXT_TAIL];
1772 rdp->nxtcompleted[i] = c;
1773 }
Paul E. McKenney910ee452012-12-31 02:24:21 -08001774 /* Record any needed additional grace periods. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001775 ret = rcu_start_future_gp(rnp, rdp, NULL);
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001776
1777 /* Trace depending on how much we were able to accelerate. */
1778 if (!*rdp->nxttail[RCU_WAIT_TAIL])
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001779 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccWaitCB"));
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001780 else
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001781 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccReadyCB"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001782 return ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001783}
1784
1785/*
1786 * Move any callbacks whose grace period has completed to the
1787 * RCU_DONE_TAIL sublist, then compact the remaining sublists and
1788 * assign ->completed numbers to any callbacks in the RCU_NEXT_TAIL
1789 * sublist. This function is idempotent, so it does not hurt to
1790 * invoke it repeatedly. As long as it is not invoked -too- often...
Paul E. McKenney48a76392014-03-11 13:02:16 -07001791 * Returns true if the RCU grace-period kthread needs to be awakened.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001792 *
1793 * The caller must hold rnp->lock with interrupts disabled.
1794 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001795static bool rcu_advance_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001796 struct rcu_data *rdp)
1797{
1798 int i, j;
1799
1800 /* If the CPU has no callbacks, nothing to do. */
1801 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001802 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001803
1804 /*
1805 * Find all callbacks whose ->completed numbers indicate that they
1806 * are ready to invoke, and put them into the RCU_DONE_TAIL sublist.
1807 */
1808 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++) {
1809 if (ULONG_CMP_LT(rnp->completed, rdp->nxtcompleted[i]))
1810 break;
1811 rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[i];
1812 }
1813 /* Clean up any sublist tail pointers that were misordered above. */
1814 for (j = RCU_WAIT_TAIL; j < i; j++)
1815 rdp->nxttail[j] = rdp->nxttail[RCU_DONE_TAIL];
1816
1817 /* Copy down callbacks to fill in empty sublists. */
1818 for (j = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++, j++) {
1819 if (rdp->nxttail[j] == rdp->nxttail[RCU_NEXT_TAIL])
1820 break;
1821 rdp->nxttail[j] = rdp->nxttail[i];
1822 rdp->nxtcompleted[j] = rdp->nxtcompleted[i];
1823 }
1824
1825 /* Classify any remaining callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001826 return rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001827}
1828
1829/*
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001830 * Update CPU-local rcu_data state to record the beginnings and ends of
1831 * grace periods. The caller must hold the ->lock of the leaf rcu_node
1832 * structure corresponding to the current CPU, and must have irqs disabled.
Paul E. McKenney48a76392014-03-11 13:02:16 -07001833 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001834 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001835static bool __note_gp_changes(struct rcu_state *rsp, struct rcu_node *rnp,
1836 struct rcu_data *rdp)
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001837{
Paul E. McKenney48a76392014-03-11 13:02:16 -07001838 bool ret;
1839
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001840 /* Handle the ends of any preceding grace periods first. */
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001841 if (rdp->completed == rnp->completed &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001842 !unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001843
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001844 /* No grace period end, so just accelerate recent callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001845 ret = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001846
1847 } else {
1848
1849 /* Advance callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001850 ret = rcu_advance_cbs(rsp, rnp, rdp);
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001851
1852 /* Remember that we saw this grace-period completion. */
1853 rdp->completed = rnp->completed;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001854 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuend"));
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001855 }
Paul E. McKenney398ebe62013-03-19 10:53:14 -07001856
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001857 if (rdp->gpnum != rnp->gpnum || unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001858 /*
1859 * If the current grace period is waiting for this CPU,
1860 * set up to detect a quiescent state, otherwise don't
1861 * go looking for one.
1862 */
1863 rdp->gpnum = rnp->gpnum;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001864 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpustart"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -07001865 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenney5cd37192014-12-13 20:32:04 -08001866 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07001867 rdp->core_needs_qs = !!(rnp->qsmask & rdp->grpmask);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001868 zero_cpu_stall_ticks(rdp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001869 WRITE_ONCE(rdp->gpwrap, false);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001870 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001871 return ret;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001872}
1873
Paul E. McKenneyd34ea322013-03-19 11:10:43 -07001874static void note_gp_changes(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001875{
1876 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001877 bool needwake;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001878 struct rcu_node *rnp;
1879
1880 local_irq_save(flags);
1881 rnp = rdp->mynode;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001882 if ((rdp->gpnum == READ_ONCE(rnp->gpnum) &&
1883 rdp->completed == READ_ONCE(rnp->completed) &&
1884 !unlikely(READ_ONCE(rdp->gpwrap))) || /* w/out lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001885 !raw_spin_trylock_rcu_node(rnp)) { /* irqs already off, so later. */
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001886 local_irq_restore(flags);
1887 return;
1888 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001889 needwake = __note_gp_changes(rsp, rnp, rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001890 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001891 if (needwake)
1892 rcu_gp_kthread_wake(rsp);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001893}
1894
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001895static void rcu_gp_slow(struct rcu_state *rsp, int delay)
1896{
1897 if (delay > 0 &&
1898 !(rsp->gpnum % (rcu_num_nodes * PER_RCU_NODE_PERIOD * delay)))
1899 schedule_timeout_uninterruptible(delay);
1900}
1901
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001902/*
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001903 * Initialize a new grace period. Return false if no grace period required.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001904 */
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001905static bool rcu_gp_init(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001906{
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001907 unsigned long oldmask;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001908 struct rcu_data *rdp;
1909 struct rcu_node *rnp = rcu_get_root(rsp);
1910
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001911 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001912 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001913 if (!READ_ONCE(rsp->gp_flags)) {
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001914 /* Spurious wakeup, tell caller to go back to sleep. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001915 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001916 return false;
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001917 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001918 WRITE_ONCE(rsp->gp_flags, 0); /* Clear all flags: New grace period. */
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001919
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001920 if (WARN_ON_ONCE(rcu_gp_in_progress(rsp))) {
1921 /*
1922 * Grace period already in progress, don't start another.
1923 * Not supposed to be able to happen.
1924 */
Boqun Feng67c583a72015-12-29 12:18:47 +08001925 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001926 return false;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001927 }
1928
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001929 /* Advance to a new grace period and initialize state. */
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001930 record_gp_stall_check_time(rsp);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07001931 /* Record GP times before starting GP, hence smp_store_release(). */
1932 smp_store_release(&rsp->gpnum, rsp->gpnum + 1);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001933 trace_rcu_grace_period(rsp->name, rsp->gpnum, TPS("start"));
Boqun Feng67c583a72015-12-29 12:18:47 +08001934 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001935
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001936 /*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001937 * Apply per-leaf buffered online and offline operations to the
1938 * rcu_node tree. Note that this new grace period need not wait
1939 * for subsequent online CPUs, and that quiescent-state forcing
1940 * will handle subsequent offline CPUs.
1941 */
1942 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001943 rcu_gp_slow(rsp, gp_preinit_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001944 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001945 if (rnp->qsmaskinit == rnp->qsmaskinitnext &&
1946 !rnp->wait_blkd_tasks) {
1947 /* Nothing to do on this leaf rcu_node structure. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001948 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001949 continue;
1950 }
1951
1952 /* Record old state, apply changes to ->qsmaskinit field. */
1953 oldmask = rnp->qsmaskinit;
1954 rnp->qsmaskinit = rnp->qsmaskinitnext;
1955
1956 /* If zero-ness of ->qsmaskinit changed, propagate up tree. */
1957 if (!oldmask != !rnp->qsmaskinit) {
1958 if (!oldmask) /* First online CPU for this rcu_node. */
1959 rcu_init_new_rnp(rnp);
1960 else if (rcu_preempt_has_tasks(rnp)) /* blocked tasks */
1961 rnp->wait_blkd_tasks = true;
1962 else /* Last offline CPU and can propagate. */
1963 rcu_cleanup_dead_rnp(rnp);
1964 }
1965
1966 /*
1967 * If all waited-on tasks from prior grace period are
1968 * done, and if all this rcu_node structure's CPUs are
1969 * still offline, propagate up the rcu_node tree and
1970 * clear ->wait_blkd_tasks. Otherwise, if one of this
1971 * rcu_node structure's CPUs has since come back online,
1972 * simply clear ->wait_blkd_tasks (but rcu_cleanup_dead_rnp()
1973 * checks for this, so just call it unconditionally).
1974 */
1975 if (rnp->wait_blkd_tasks &&
1976 (!rcu_preempt_has_tasks(rnp) ||
1977 rnp->qsmaskinit)) {
1978 rnp->wait_blkd_tasks = false;
1979 rcu_cleanup_dead_rnp(rnp);
1980 }
1981
Boqun Feng67c583a72015-12-29 12:18:47 +08001982 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001983 }
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001984
1985 /*
1986 * Set the quiescent-state-needed bits in all the rcu_node
1987 * structures for all currently online CPUs in breadth-first order,
1988 * starting from the root rcu_node structure, relying on the layout
1989 * of the tree within the rsp->node[] array. Note that other CPUs
1990 * will access only the leaves of the hierarchy, thus seeing that no
1991 * grace period is in progress, at least until the corresponding
1992 * leaf node has been initialized. In addition, we have excluded
1993 * CPU-hotplug operations.
1994 *
1995 * The grace period cannot complete until the initialization
1996 * process finishes, because this kthread handles both.
1997 */
1998 rcu_for_each_node_breadth_first(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001999 rcu_gp_slow(rsp, gp_init_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002000 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002001 rdp = this_cpu_ptr(rsp->rda);
2002 rcu_preempt_check_blocked_tasks(rnp);
2003 rnp->qsmask = rnp->qsmaskinit;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002004 WRITE_ONCE(rnp->gpnum, rsp->gpnum);
Lai Jiangshan3f47da02015-01-13 15:30:34 +08002005 if (WARN_ON_ONCE(rnp->completed != rsp->completed))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002006 WRITE_ONCE(rnp->completed, rsp->completed);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002007 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002008 (void)__note_gp_changes(rsp, rnp, rdp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002009 rcu_preempt_boost_start_gp(rnp);
2010 trace_rcu_grace_period_init(rsp->name, rnp->gpnum,
2011 rnp->level, rnp->grplo,
2012 rnp->grphi, rnp->qsmask);
Boqun Feng67c583a72015-12-29 12:18:47 +08002013 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002014 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002015 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002016 }
2017
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08002018 return true;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002019}
2020
2021/*
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002022 * Helper function for wait_event_interruptible_timeout() wakeup
2023 * at force-quiescent-state time.
2024 */
2025static bool rcu_gp_fqs_check_wake(struct rcu_state *rsp, int *gfp)
2026{
2027 struct rcu_node *rnp = rcu_get_root(rsp);
2028
2029 /* Someone like call_rcu() requested a force-quiescent-state scan. */
2030 *gfp = READ_ONCE(rsp->gp_flags);
2031 if (*gfp & RCU_GP_FLAG_FQS)
2032 return true;
2033
2034 /* The current grace period has completed. */
2035 if (!READ_ONCE(rnp->qsmask) && !rcu_preempt_blocked_readers_cgp(rnp))
2036 return true;
2037
2038 return false;
2039}
2040
2041/*
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002042 * Do one round of quiescent-state forcing.
2043 */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002044static void rcu_gp_fqs(struct rcu_state *rsp, bool first_time)
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002045{
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002046 bool isidle = false;
2047 unsigned long maxj;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002048 struct rcu_node *rnp = rcu_get_root(rsp);
2049
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002050 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002051 rsp->n_force_qs++;
Petr Mladek77f81fe2015-09-09 12:09:49 -07002052 if (first_time) {
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002053 /* Collect dyntick-idle snapshots. */
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002054 if (is_sysidle_rcu_state(rsp)) {
Pranith Kumare02b2ed2014-07-09 00:08:17 -04002055 isidle = true;
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002056 maxj = jiffies - ULONG_MAX / 4;
2057 }
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002058 force_qs_rnp(rsp, dyntick_save_progress_counter,
2059 &isidle, &maxj);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002060 rcu_sysidle_report_gp(rsp, isidle, maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002061 } else {
2062 /* Handle dyntick-idle and offline CPUs. */
Paul E. McKenney675da672015-02-23 15:57:07 -08002063 isidle = true;
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002064 force_qs_rnp(rsp, rcu_implicit_dynticks_qs, &isidle, &maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002065 }
2066 /* Clear flag to prevent immediate re-entry. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002067 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002068 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002069 WRITE_ONCE(rsp->gp_flags,
2070 READ_ONCE(rsp->gp_flags) & ~RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002071 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002072 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002073}
2074
2075/*
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002076 * Clean up after the old grace period.
2077 */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002078static void rcu_gp_cleanup(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002079{
2080 unsigned long gp_duration;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002081 bool needgp = false;
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002082 int nocb = 0;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002083 struct rcu_data *rdp;
2084 struct rcu_node *rnp = rcu_get_root(rsp);
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002085 struct swait_queue_head *sq;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002086
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002087 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002088 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002089 gp_duration = jiffies - rsp->gp_start;
2090 if (gp_duration > rsp->gp_max)
2091 rsp->gp_max = gp_duration;
2092
2093 /*
2094 * We know the grace period is complete, but to everyone else
2095 * it appears to still be ongoing. But it is also the case
2096 * that to everyone else it looks like there is nothing that
2097 * they can do to advance the grace period. It is therefore
2098 * safe for us to drop the lock in order to mark the grace
2099 * period as completed in all of the rcu_node structures.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002100 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002101 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002102
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002103 /*
2104 * Propagate new ->completed value to rcu_node structures so
2105 * that other CPUs don't have to wait until the start of the next
2106 * grace period to process their callbacks. This also avoids
2107 * some nasty RCU grace-period initialization races by forcing
2108 * the end of the current grace period to be completely recorded in
2109 * all of the rcu_node structures before the beginning of the next
2110 * grace period is recorded in any of the rcu_node structures.
2111 */
2112 rcu_for_each_node_breadth_first(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002113 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney5c60d252015-02-09 05:37:47 -08002114 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
2115 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002116 WRITE_ONCE(rnp->completed, rsp->gpnum);
Paul E. McKenneyb11cc572012-12-17 14:21:14 -08002117 rdp = this_cpu_ptr(rsp->rda);
2118 if (rnp == rdp->mynode)
Paul E. McKenney48a76392014-03-11 13:02:16 -07002119 needgp = __note_gp_changes(rsp, rnp, rdp) || needgp;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002120 /* smp_mb() provided by prior unlock-lock pair. */
Paul E. McKenney0446be42012-12-30 15:21:01 -08002121 nocb += rcu_future_gp_cleanup(rsp, rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002122 sq = rcu_nocb_gp_get(rnp);
Boqun Feng67c583a72015-12-29 12:18:47 +08002123 raw_spin_unlock_irq_rcu_node(rnp);
Daniel Wagner065bb782016-02-19 09:46:40 +01002124 rcu_nocb_gp_cleanup(sq);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002125 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002126 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07002127 rcu_gp_slow(rsp, gp_cleanup_delay);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002128 }
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002129 rnp = rcu_get_root(rsp);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002130 raw_spin_lock_irq_rcu_node(rnp); /* Order GP before ->completed update. */
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002131 rcu_nocb_gp_set(rnp, nocb);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002132
Paul E. McKenney765a3f42014-03-14 16:37:08 -07002133 /* Declare grace period done. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002134 WRITE_ONCE(rsp->completed, rsp->gpnum);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002135 trace_rcu_grace_period(rsp->name, rsp->completed, TPS("end"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002136 rsp->gp_state = RCU_GP_IDLE;
Paul E. McKenney5d4b8652012-07-07 07:56:57 -07002137 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002138 /* Advance CBs to reduce false positives below. */
2139 needgp = rcu_advance_cbs(rsp, rnp, rdp) || needgp;
2140 if (needgp || cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002141 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002142 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002143 READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002144 TPS("newreq"));
2145 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002146 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002147}
2148
2149/*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002150 * Body of kthread that handles grace periods.
2151 */
Paul E. McKenney755609a2012-06-19 17:18:20 -07002152static int __noreturn rcu_gp_kthread(void *arg)
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002153{
Petr Mladek77f81fe2015-09-09 12:09:49 -07002154 bool first_gp_fqs;
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002155 int gf;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002156 unsigned long j;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002157 int ret;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002158 struct rcu_state *rsp = arg;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07002159 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002160
Paul E. McKenney58719682015-02-24 11:05:36 -08002161 rcu_bind_gp_kthread();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002162 for (;;) {
2163
2164 /* Handle grace-period start. */
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002165 for (;;) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002166 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002167 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002168 TPS("reqwait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002169 rsp->gp_state = RCU_GP_WAIT_GPS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002170 swait_event_interruptible(rsp->gp_wq,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002171 READ_ONCE(rsp->gp_flags) &
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002172 RCU_GP_FLAG_INIT);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002173 rsp->gp_state = RCU_GP_DONE_GPS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002174 /* Locking provides needed memory barrier. */
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07002175 if (rcu_gp_init(rsp))
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002176 break;
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002177 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002178 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002179 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002180 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002181 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002182 TPS("reqwaitsig"));
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002183 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002184
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002185 /* Handle quiescent-state forcing. */
Petr Mladek77f81fe2015-09-09 12:09:49 -07002186 first_gp_fqs = true;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002187 j = jiffies_till_first_fqs;
2188 if (j > HZ) {
2189 j = HZ;
2190 jiffies_till_first_fqs = HZ;
2191 }
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002192 ret = 0;
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002193 for (;;) {
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002194 if (!ret) {
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002195 rsp->jiffies_force_qs = jiffies + j;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08002196 WRITE_ONCE(rsp->jiffies_kick_kthreads,
2197 jiffies + 3 * j);
2198 }
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002199 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002200 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002201 TPS("fqswait"));
Paul E. McKenneyafea2272014-03-12 07:10:41 -07002202 rsp->gp_state = RCU_GP_WAIT_FQS;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002203 ret = swait_event_interruptible_timeout(rsp->gp_wq,
Paul E. McKenneyb9a425c2015-07-01 13:50:28 -07002204 rcu_gp_fqs_check_wake(rsp, &gf), j);
Paul E. McKenney32bb1c72015-07-02 12:27:31 -07002205 rsp->gp_state = RCU_GP_DOING_FQS;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07002206 /* Locking provides needed memory barriers. */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002207 /* If grace period done, leave loop. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002208 if (!READ_ONCE(rnp->qsmask) &&
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002209 !rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002210 break;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002211 /* If time for quiescent-state forcing, do it. */
Paul E. McKenney88d6df62013-08-08 21:44:31 -07002212 if (ULONG_CMP_GE(jiffies, rsp->jiffies_force_qs) ||
2213 (gf & RCU_GP_FLAG_FQS)) {
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002214 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002215 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002216 TPS("fqsstart"));
Petr Mladek77f81fe2015-09-09 12:09:49 -07002217 rcu_gp_fqs(rsp, first_gp_fqs);
2218 first_gp_fqs = false;
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002219 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002220 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002221 TPS("fqsend"));
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002222 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002223 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002224 ret = 0; /* Force full wait till next FQS. */
2225 j = jiffies_till_next_fqs;
2226 if (j > HZ) {
2227 j = HZ;
2228 jiffies_till_next_fqs = HZ;
2229 } else if (j < 1) {
2230 j = 1;
2231 jiffies_till_next_fqs = 1;
2232 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002233 } else {
2234 /* Deal with stray signal. */
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002235 cond_resched_rcu_qs();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002236 WRITE_ONCE(rsp->gp_activity, jiffies);
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002237 WARN_ON(signal_pending(current));
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002238 trace_rcu_grace_period(rsp->name,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002239 READ_ONCE(rsp->gpnum),
Paul E. McKenney63c4db72013-08-09 12:19:29 -07002240 TPS("fqswaitsig"));
Paul E. McKenneyfcfd0a22016-01-03 16:42:18 -08002241 ret = 1; /* Keep old FQS timing. */
2242 j = jiffies;
2243 if (time_after(jiffies, rsp->jiffies_force_qs))
2244 j = 1;
2245 else
2246 j = rsp->jiffies_force_qs - j;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -07002247 }
Paul E. McKenneycabc49c2012-06-20 17:07:14 -07002248 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002249
2250 /* Handle grace-period end. */
Paul E. McKenney319362c2015-05-19 14:16:52 -07002251 rsp->gp_state = RCU_GP_CLEANUP;
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002252 rcu_gp_cleanup(rsp);
Paul E. McKenney319362c2015-05-19 14:16:52 -07002253 rsp->gp_state = RCU_GP_CLEANED;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002254 }
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002255}
2256
2257/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002258 * Start a new RCU grace period if warranted, re-initializing the hierarchy
2259 * in preparation for detecting the next grace period. The caller must hold
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002260 * the root node's ->lock and hard irqs must be disabled.
Paul E. McKenneye5601402012-01-07 11:03:57 -08002261 *
2262 * Note that it is legal for a dying CPU (which is marked as offline) to
2263 * invoke this function. This can happen when the dying CPU reports its
2264 * quiescent state.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002265 *
2266 * Returns true if the grace-period kthread must be awakened.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002267 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002268static bool
Paul E. McKenney910ee452012-12-31 02:24:21 -08002269rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
2270 struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002271{
Paul E. McKenneyb8462082012-12-29 22:04:18 -08002272 if (!rsp->gp_kthread || !cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002273 /*
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002274 * Either we have not yet spawned the grace-period
Paul E. McKenney62da1922012-09-20 16:02:49 -07002275 * task, this CPU does not need another grace period,
2276 * or a grace period is already in progress.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07002277 * Either way, don't start a new grace period.
Paul E. McKenneyb32e9eb2009-11-12 22:35:03 -08002278 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002279 return false;
Paul E. McKenneyafe24b12011-08-24 16:52:09 -07002280 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002281 WRITE_ONCE(rsp->gp_flags, RCU_GP_FLAG_INIT);
2282 trace_rcu_grace_period(rsp->name, READ_ONCE(rsp->gpnum),
Paul E. McKenneybb311ec2013-08-09 16:02:09 -07002283 TPS("newreq"));
Paul E. McKenney62da1922012-09-20 16:02:49 -07002284
Steven Rostedt016a8d52013-05-28 17:32:53 -04002285 /*
2286 * We can't do wakeups while holding the rnp->lock, as that
Paul E. McKenney1eafd312013-06-20 13:50:40 -07002287 * could cause possible deadlocks with the rq->lock. Defer
Paul E. McKenney48a76392014-03-11 13:02:16 -07002288 * the wakeup to our caller.
Steven Rostedt016a8d52013-05-28 17:32:53 -04002289 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002290 return true;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002291}
2292
2293/*
Paul E. McKenney910ee452012-12-31 02:24:21 -08002294 * Similar to rcu_start_gp_advanced(), but also advance the calling CPU's
2295 * callbacks. Note that rcu_start_gp_advanced() cannot do this because it
2296 * is invoked indirectly from rcu_advance_cbs(), which would result in
2297 * endless recursion -- or would do so if it wasn't for the self-deadlock
2298 * that is encountered beforehand.
Paul E. McKenney48a76392014-03-11 13:02:16 -07002299 *
2300 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenney910ee452012-12-31 02:24:21 -08002301 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002302static bool rcu_start_gp(struct rcu_state *rsp)
Paul E. McKenney910ee452012-12-31 02:24:21 -08002303{
2304 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
2305 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002306 bool ret = false;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002307
2308 /*
2309 * If there is no grace period in progress right now, any
2310 * callbacks we have up to this point will be satisfied by the
2311 * next grace period. Also, advancing the callbacks reduces the
2312 * probability of false positives from cpu_needs_another_gp()
2313 * resulting in pointless grace periods. So, advance callbacks
2314 * then start the grace period!
2315 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002316 ret = rcu_advance_cbs(rsp, rnp, rdp) || ret;
2317 ret = rcu_start_gp_advanced(rsp, rnp, rdp) || ret;
2318 return ret;
Paul E. McKenney910ee452012-12-31 02:24:21 -08002319}
2320
2321/*
Paul E. McKenney89945152015-12-10 09:59:43 -08002322 * Report a full set of quiescent states to the specified rcu_state data
2323 * structure. Invoke rcu_gp_kthread_wake() to awaken the grace-period
2324 * kthread if another grace period is required. Whether we wake
2325 * the grace-period kthread or it awakens itself for the next round
2326 * of quiescent-state forcing, that kthread will clean up after the
2327 * just-completed grace period. Note that the caller must hold rnp->lock,
2328 * which is released before return.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002329 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002330static void rcu_report_qs_rsp(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07002331 __releases(rcu_get_root(rsp)->lock)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002332{
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07002333 WARN_ON_ONCE(!rcu_gp_in_progress(rsp));
Paul E. McKenneycd73ca22015-03-16 11:53:52 -07002334 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002335 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002336 swake_up(&rsp->gp_wq); /* Memory barrier implied by swake_up() path. */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002337}
2338
2339/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002340 * Similar to rcu_report_qs_rdp(), for which it is a helper function.
2341 * Allows quiescent states for a group of CPUs to be reported at one go
2342 * to the specified rcu_node structure, though all the CPUs in the group
Paul E. McKenney654e9532015-03-15 09:19:35 -07002343 * must be represented by the same rcu_node structure (which need not be a
2344 * leaf rcu_node structure, though it often will be). The gps parameter
2345 * is the grace-period snapshot, which means that the quiescent states
2346 * are valid only if rnp->gpnum is equal to gps. That structure's lock
2347 * must be held upon entry, and it is released before return.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002348 */
2349static void
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002350rcu_report_qs_rnp(unsigned long mask, struct rcu_state *rsp,
Paul E. McKenney654e9532015-03-15 09:19:35 -07002351 struct rcu_node *rnp, unsigned long gps, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002352 __releases(rnp->lock)
2353{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002354 unsigned long oldmask = 0;
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002355 struct rcu_node *rnp_c;
2356
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002357 /* Walk up the rcu_node hierarchy. */
2358 for (;;) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002359 if (!(rnp->qsmask & mask) || rnp->gpnum != gps) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002360
Paul E. McKenney654e9532015-03-15 09:19:35 -07002361 /*
2362 * Our bit has already been cleared, or the
2363 * relevant grace period is already over, so done.
2364 */
Boqun Feng67c583a72015-12-29 12:18:47 +08002365 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002366 return;
2367 }
Paul E. McKenney654e9532015-03-15 09:19:35 -07002368 WARN_ON_ONCE(oldmask); /* Any child must be all zeroed! */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002369 rnp->qsmask &= ~mask;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07002370 trace_rcu_quiescent_state_report(rsp->name, rnp->gpnum,
2371 mask, rnp->qsmask, rnp->level,
2372 rnp->grplo, rnp->grphi,
2373 !!rnp->gp_tasks);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002374 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002375
2376 /* Other bits still set at this level, so done. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002377 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002378 return;
2379 }
2380 mask = rnp->grpmask;
2381 if (rnp->parent == NULL) {
2382
2383 /* No more levels. Exit loop holding root lock. */
2384
2385 break;
2386 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002387 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney28ecd582009-09-18 09:50:17 -07002388 rnp_c = rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002389 rnp = rnp->parent;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002390 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney654e9532015-03-15 09:19:35 -07002391 oldmask = rnp_c->qsmask;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002392 }
2393
2394 /*
2395 * Get here if we are the last CPU to pass through a quiescent
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002396 * state for this grace period. Invoke rcu_report_qs_rsp()
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07002397 * to clean up and start the next grace period if one is needed.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002398 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002399 rcu_report_qs_rsp(rsp, flags); /* releases rnp->lock. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002400}
2401
2402/*
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002403 * Record a quiescent state for all tasks that were previously queued
2404 * on the specified rcu_node structure and that were blocking the current
2405 * RCU grace period. The caller must hold the specified rnp->lock with
2406 * irqs disabled, and this lock is released upon return, but irqs remain
2407 * disabled.
2408 */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002409static void rcu_report_unblock_qs_rnp(struct rcu_state *rsp,
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002410 struct rcu_node *rnp, unsigned long flags)
2411 __releases(rnp->lock)
2412{
Paul E. McKenney654e9532015-03-15 09:19:35 -07002413 unsigned long gps;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002414 unsigned long mask;
2415 struct rcu_node *rnp_p;
2416
Paul E. McKenneya77da142015-03-08 14:52:27 -07002417 if (rcu_state_p == &rcu_sched_state || rsp != rcu_state_p ||
2418 rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002419 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002420 return; /* Still need more quiescent states! */
2421 }
2422
2423 rnp_p = rnp->parent;
2424 if (rnp_p == NULL) {
2425 /*
Paul E. McKenneya77da142015-03-08 14:52:27 -07002426 * Only one rcu_node structure in the tree, so don't
2427 * try to report up to its nonexistent parent!
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002428 */
2429 rcu_report_qs_rsp(rsp, flags);
2430 return;
2431 }
2432
Paul E. McKenney654e9532015-03-15 09:19:35 -07002433 /* Report up the rest of the hierarchy, tracking current ->gpnum. */
2434 gps = rnp->gpnum;
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002435 mask = rnp->grpmask;
Boqun Feng67c583a72015-12-29 12:18:47 +08002436 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002437 raw_spin_lock_rcu_node(rnp_p); /* irqs already disabled. */
Paul E. McKenney654e9532015-03-15 09:19:35 -07002438 rcu_report_qs_rnp(mask, rsp, rnp_p, gps, flags);
Paul E. McKenneycc99a312015-02-23 08:59:29 -08002439}
2440
2441/*
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002442 * Record a quiescent state for the specified CPU to that CPU's rcu_data
Paul E. McKenney4b455dc2016-01-27 22:44:45 -08002443 * structure. This must be called from the specified CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002444 */
2445static void
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002446rcu_report_qs_rdp(int cpu, struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002447{
2448 unsigned long flags;
2449 unsigned long mask;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002450 bool needwake;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002451 struct rcu_node *rnp;
2452
2453 rnp = rdp->mynode;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002454 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002455 if ((rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002456 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) ||
2457 rdp->gpnum != rnp->gpnum || rnp->completed == rnp->gpnum ||
2458 rdp->gpwrap) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002459
2460 /*
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -07002461 * The grace period in which this quiescent state was
2462 * recorded has ended, so don't report it upwards.
2463 * We will instead need a new quiescent state that lies
2464 * within the current grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002465 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002466 rdp->cpu_no_qs.b.norm = true; /* need qs for new gp. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002467 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Boqun Feng67c583a72015-12-29 12:18:47 +08002468 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002469 return;
2470 }
2471 mask = rdp->grpmask;
2472 if ((rnp->qsmask & mask) == 0) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002473 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002474 } else {
Paul E. McKenneybb53e412015-12-10 09:30:12 -08002475 rdp->core_needs_qs = false;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002476
2477 /*
2478 * This GP can't end until cpu checks in, so all of our
2479 * callbacks can be processed during the next GP.
2480 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002481 needwake = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002482
Paul E. McKenney654e9532015-03-15 09:19:35 -07002483 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
2484 /* ^^^ Released rnp->lock */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002485 if (needwake)
2486 rcu_gp_kthread_wake(rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002487 }
2488}
2489
2490/*
2491 * Check to see if there is a new grace period of which this CPU
2492 * is not yet aware, and if so, set up local rcu_data state for it.
2493 * Otherwise, see if this CPU has just passed through its first
2494 * quiescent state for this grace period, and record that fact if so.
2495 */
2496static void
2497rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp)
2498{
Paul E. McKenney05eb5522013-03-19 12:38:24 -07002499 /* Check for grace-period ends and beginnings. */
2500 note_gp_changes(rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002501
2502 /*
2503 * Does this CPU still need to do its part for current grace period?
2504 * If no, return and let the other CPUs do their part as well.
2505 */
Paul E. McKenney97c668b2015-08-06 11:31:51 -07002506 if (!rdp->core_needs_qs)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002507 return;
2508
2509 /*
2510 * Was there a quiescent state since the beginning of the grace
2511 * period? If no, then exit and wait for the next call.
2512 */
Paul E. McKenney5b74c452015-08-06 15:16:57 -07002513 if (rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08002514 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002515 return;
2516
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08002517 /*
2518 * Tell RCU we are done (but rcu_report_qs_rdp() will be the
2519 * judge of that).
2520 */
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -07002521 rcu_report_qs_rdp(rdp->cpu, rsp, rdp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002522}
2523
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002524/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002525 * Send the specified CPU's RCU callbacks to the orphanage. The
2526 * specified CPU must be offline, and the caller must hold the
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002527 * ->orphan_lock.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002528 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002529static void
2530rcu_send_cbs_to_orphanage(int cpu, struct rcu_state *rsp,
2531 struct rcu_node *rnp, struct rcu_data *rdp)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07002532{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002533 /* No-CBs CPUs do not have orphanable callbacks. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002534 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) || rcu_is_nocb_cpu(rdp->cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002535 return;
2536
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002537 /*
2538 * Orphan the callbacks. First adjust the counts. This is safe
Paul E. McKenneyabfd6e52012-09-20 16:59:47 -07002539 * because _rcu_barrier() excludes CPU-hotplug operations, so it
2540 * cannot be running now. Thus no memory barrier is required.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002541 */
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002542 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002543 rsp->qlen_lazy += rdp->qlen_lazy;
2544 rsp->qlen += rdp->qlen;
2545 rdp->n_cbs_orphaned += rdp->qlen;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002546 rdp->qlen_lazy = 0;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002547 WRITE_ONCE(rdp->qlen, 0);
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002548 }
2549
2550 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002551 * Next, move those callbacks still needing a grace period to
2552 * the orphanage, where some other CPU will pick them up.
2553 * Some of the callbacks might have gone partway through a grace
2554 * period, but that is too bad. They get to start over because we
2555 * cannot assume that grace periods are synchronized across CPUs.
2556 * We don't bother updating the ->nxttail[] array yet, instead
2557 * we just reset the whole thing later on.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002558 */
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002559 if (*rdp->nxttail[RCU_DONE_TAIL] != NULL) {
2560 *rsp->orphan_nxttail = *rdp->nxttail[RCU_DONE_TAIL];
2561 rsp->orphan_nxttail = rdp->nxttail[RCU_NEXT_TAIL];
2562 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002563 }
2564
2565 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002566 * Then move the ready-to-invoke callbacks to the orphanage,
2567 * where some other CPU will pick them up. These will not be
2568 * required to pass though another grace period: They are done.
Paul E. McKenneya50c3af2012-01-10 17:52:31 -08002569 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002570 if (rdp->nxtlist != NULL) {
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002571 *rsp->orphan_donetail = rdp->nxtlist;
2572 rsp->orphan_donetail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneye5601402012-01-07 11:03:57 -08002573 }
Lai Jiangshan29494be2010-10-20 14:13:06 +08002574
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002575 /*
2576 * Finally, initialize the rcu_data structure's list to empty and
2577 * disallow further callbacks on this CPU.
2578 */
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07002579 init_callback_list(rdp);
Paul E. McKenneyb33078b2015-01-16 14:01:21 -08002580 rdp->nxttail[RCU_NEXT_TAIL] = NULL;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002581}
2582
2583/*
2584 * Adopt the RCU callbacks from the specified rcu_state structure's
Paul E. McKenney7b2e6012012-10-08 10:54:03 -07002585 * orphanage. The caller must hold the ->orphan_lock.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002586 */
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002587static void rcu_adopt_orphan_cbs(struct rcu_state *rsp, unsigned long flags)
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002588{
2589 int i;
Christoph Lameterfa07a582014-04-15 12:20:12 -07002590 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002591
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002592 /* No-CBs CPUs are handled specially. */
Paul E. McKenneyea463512015-03-03 14:05:26 -08002593 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2594 rcu_nocb_adopt_orphan_cbs(rsp, rdp, flags))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002595 return;
2596
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002597 /* Do the accounting first. */
2598 rdp->qlen_lazy += rsp->qlen_lazy;
2599 rdp->qlen += rsp->qlen;
2600 rdp->n_cbs_adopted += rsp->qlen;
Paul E. McKenney8f5af6f2012-05-04 08:31:53 -07002601 if (rsp->qlen_lazy != rsp->qlen)
2602 rcu_idle_count_callbacks_posted();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002603 rsp->qlen_lazy = 0;
2604 rsp->qlen = 0;
2605
2606 /*
2607 * We do not need a memory barrier here because the only way we
2608 * can get here if there is an rcu_barrier() in flight is if
2609 * we are the task doing the rcu_barrier().
2610 */
2611
2612 /* First adopt the ready-to-invoke callbacks. */
2613 if (rsp->orphan_donelist != NULL) {
2614 *rsp->orphan_donetail = *rdp->nxttail[RCU_DONE_TAIL];
2615 *rdp->nxttail[RCU_DONE_TAIL] = rsp->orphan_donelist;
2616 for (i = RCU_NEXT_SIZE - 1; i >= RCU_DONE_TAIL; i--)
2617 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2618 rdp->nxttail[i] = rsp->orphan_donetail;
2619 rsp->orphan_donelist = NULL;
2620 rsp->orphan_donetail = &rsp->orphan_donelist;
2621 }
2622
2623 /* And then adopt the callbacks that still need a grace period. */
2624 if (rsp->orphan_nxtlist != NULL) {
2625 *rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxtlist;
2626 rdp->nxttail[RCU_NEXT_TAIL] = rsp->orphan_nxttail;
2627 rsp->orphan_nxtlist = NULL;
2628 rsp->orphan_nxttail = &rsp->orphan_nxtlist;
2629 }
2630}
2631
2632/*
2633 * Trace the fact that this CPU is going offline.
2634 */
2635static void rcu_cleanup_dying_cpu(struct rcu_state *rsp)
2636{
2637 RCU_TRACE(unsigned long mask);
2638 RCU_TRACE(struct rcu_data *rdp = this_cpu_ptr(rsp->rda));
2639 RCU_TRACE(struct rcu_node *rnp = rdp->mynode);
2640
Paul E. McKenneyea463512015-03-03 14:05:26 -08002641 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2642 return;
2643
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002644 RCU_TRACE(mask = rdp->grpmask);
Paul E. McKenneye5601402012-01-07 11:03:57 -08002645 trace_rcu_grace_period(rsp->name,
2646 rnp->gpnum + 1 - !!(rnp->qsmask & mask),
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002647 TPS("cpuofl"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002648}
2649
2650/*
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002651 * All CPUs for the specified rcu_node structure have gone offline,
2652 * and all tasks that were preempted within an RCU read-side critical
2653 * section while running on one of those CPUs have since exited their RCU
2654 * read-side critical section. Some other CPU is reporting this fact with
2655 * the specified rcu_node structure's ->lock held and interrupts disabled.
2656 * This function therefore goes up the tree of rcu_node structures,
2657 * clearing the corresponding bits in the ->qsmaskinit fields. Note that
2658 * the leaf rcu_node structure's ->qsmaskinit field has already been
2659 * updated
2660 *
2661 * This function does check that the specified rcu_node structure has
2662 * all CPUs offline and no blocked tasks, so it is OK to invoke it
2663 * prematurely. That said, invoking it after the fact will cost you
2664 * a needless lock acquisition. So once it has done its work, don't
2665 * invoke it again.
2666 */
2667static void rcu_cleanup_dead_rnp(struct rcu_node *rnp_leaf)
2668{
2669 long mask;
2670 struct rcu_node *rnp = rnp_leaf;
2671
Paul E. McKenneyea463512015-03-03 14:05:26 -08002672 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) ||
2673 rnp->qsmaskinit || rcu_preempt_has_tasks(rnp))
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002674 return;
2675 for (;;) {
2676 mask = rnp->grpmask;
2677 rnp = rnp->parent;
2678 if (!rnp)
2679 break;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002680 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002681 rnp->qsmaskinit &= ~mask;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002682 rnp->qsmask &= ~mask;
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002683 if (rnp->qsmaskinit) {
Boqun Feng67c583a72015-12-29 12:18:47 +08002684 raw_spin_unlock_rcu_node(rnp);
2685 /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002686 return;
2687 }
Boqun Feng67c583a72015-12-29 12:18:47 +08002688 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -07002689 }
2690}
2691
2692/*
Paul E. McKenneye5601402012-01-07 11:03:57 -08002693 * The CPU has been completely removed, and some other CPU is reporting
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002694 * this fact from process context. Do the remainder of the cleanup,
2695 * including orphaning the outgoing CPU's RCU callbacks, and also
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07002696 * adopting them. There can only be one CPU hotplug operation at a time,
2697 * so no other CPU can be attempting to update rcu_cpu_kthread_task.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002698 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002699static void rcu_cleanup_dead_cpu(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002700{
Paul E. McKenney2036d942012-01-30 17:02:47 -08002701 unsigned long flags;
Paul E. McKenneye5601402012-01-07 11:03:57 -08002702 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002703 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
Paul E. McKenneye5601402012-01-07 11:03:57 -08002704
Paul E. McKenneyea463512015-03-03 14:05:26 -08002705 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
2706 return;
2707
Paul E. McKenney2036d942012-01-30 17:02:47 -08002708 /* Adjust any no-longer-needed kthreads. */
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00002709 rcu_boost_kthread_setaffinity(rnp, -1);
Paul E. McKenney2036d942012-01-30 17:02:47 -08002710
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002711 /* Orphan the dead CPU's callbacks, and adopt them if appropriate. */
Paul E. McKenney78043c42015-01-18 17:46:24 -08002712 raw_spin_lock_irqsave(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002713 rcu_send_cbs_to_orphanage(cpu, rsp, rnp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002714 rcu_adopt_orphan_cbs(rsp, flags);
Paul E. McKenneya8f4cba2014-10-31 13:48:41 -07002715 raw_spin_unlock_irqrestore(&rsp->orphan_lock, flags);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002716
Paul E. McKenneycf015372012-06-21 11:26:42 -07002717 WARN_ONCE(rdp->qlen != 0 || rdp->nxtlist != NULL,
2718 "rcu_cleanup_dead_cpu: Callbacks on offline CPU %d: qlen=%lu, nxtlist=%p\n",
2719 cpu, rdp->qlen, rdp->nxtlist);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002720}
2721
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002722/*
2723 * Invoke any RCU callbacks that have made it to the end of their grace
2724 * period. Thottle as specified by rdp->blimit.
2725 */
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002726static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002727{
2728 unsigned long flags;
2729 struct rcu_head *next, *list, **tail;
Eric Dumazet878d7432012-10-18 04:55:36 -07002730 long bl, count, count_lazy;
2731 int i;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002732
Paul E. McKenneydc35c892012-12-03 13:52:00 -08002733 /* If no callbacks are ready, just return. */
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002734 if (!cpu_has_callbacks_ready_to_invoke(rdp)) {
Paul E. McKenney486e2592012-01-06 14:11:30 -08002735 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, 0);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002736 trace_rcu_batch_end(rsp->name, 0, !!READ_ONCE(rdp->nxtlist),
Paul E. McKenney4968c302011-12-07 16:32:40 -08002737 need_resched(), is_idle_task(current),
2738 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002739 return;
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002740 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002741
2742 /*
2743 * Extract the list of ready callbacks, disabling to prevent
2744 * races with call_rcu() from interrupt handlers.
2745 */
2746 local_irq_save(flags);
Paul E. McKenney8146c4e22012-01-10 14:23:29 -08002747 WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
Paul E. McKenney29c00b42011-06-17 15:53:19 -07002748 bl = rdp->blimit;
Paul E. McKenney486e2592012-01-06 14:11:30 -08002749 trace_rcu_batch_start(rsp->name, rdp->qlen_lazy, rdp->qlen, bl);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002750 list = rdp->nxtlist;
2751 rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL];
2752 *rdp->nxttail[RCU_DONE_TAIL] = NULL;
2753 tail = rdp->nxttail[RCU_DONE_TAIL];
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002754 for (i = RCU_NEXT_SIZE - 1; i >= 0; i--)
2755 if (rdp->nxttail[i] == rdp->nxttail[RCU_DONE_TAIL])
2756 rdp->nxttail[i] = &rdp->nxtlist;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002757 local_irq_restore(flags);
2758
2759 /* Invoke callbacks. */
Paul E. McKenney486e2592012-01-06 14:11:30 -08002760 count = count_lazy = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002761 while (list) {
2762 next = list->next;
2763 prefetch(next);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -04002764 debug_rcu_head_unqueue(list);
Paul E. McKenney486e2592012-01-06 14:11:30 -08002765 if (__rcu_reclaim(rsp->name, list))
2766 count_lazy++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002767 list = next;
Paul E. McKenneydff16722011-11-29 15:57:13 -08002768 /* Stop only if limit reached and CPU has something to do. */
2769 if (++count >= bl &&
2770 (need_resched() ||
2771 (!is_idle_task(current) && !rcu_is_callbacks_kthread())))
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002772 break;
2773 }
2774
2775 local_irq_save(flags);
Paul E. McKenney4968c302011-12-07 16:32:40 -08002776 trace_rcu_batch_end(rsp->name, count, !!list, need_resched(),
2777 is_idle_task(current),
2778 rcu_is_callbacks_kthread());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002779
2780 /* Update count, and requeue any remaining callbacks. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002781 if (list != NULL) {
2782 *tail = rdp->nxtlist;
2783 rdp->nxtlist = list;
Paul E. McKenneyb41772a2012-06-21 20:50:42 -07002784 for (i = 0; i < RCU_NEXT_SIZE; i++)
2785 if (&rdp->nxtlist == rdp->nxttail[i])
2786 rdp->nxttail[i] = tail;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002787 else
2788 break;
2789 }
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002790 smp_mb(); /* List handling before counting for rcu_barrier(). */
2791 rdp->qlen_lazy -= count_lazy;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002792 WRITE_ONCE(rdp->qlen, rdp->qlen - count);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08002793 rdp->n_cbs_invoked += count;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002794
2795 /* Reinstate batch limit if we have worked down the excess. */
2796 if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark)
2797 rdp->blimit = blimit;
2798
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002799 /* Reset ->qlen_last_fqs_check trigger if enough CBs have drained. */
2800 if (rdp->qlen == 0 && rdp->qlen_last_fqs_check != 0) {
2801 rdp->qlen_last_fqs_check = 0;
2802 rdp->n_force_qs_snap = rsp->n_force_qs;
2803 } else if (rdp->qlen < rdp->qlen_last_fqs_check - qhimark)
2804 rdp->qlen_last_fqs_check = rdp->qlen;
Paul E. McKenneycfca9272012-06-25 12:54:17 -07002805 WARN_ON_ONCE((rdp->nxtlist == NULL) != (rdp->qlen == 0));
Paul E. McKenney37c72e52009-10-14 10:15:55 -07002806
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002807 local_irq_restore(flags);
2808
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002809 /* Re-invoke RCU core processing if there are callbacks remaining. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002810 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002811 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002812}
2813
2814/*
2815 * Check to see if this CPU is in a non-context-switch quiescent state
2816 * (user mode or idle loop for rcu, non-softirq execution for rcu_bh).
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002817 * Also schedule RCU core processing.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002818 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002819 * This function must be called from hardirq context. It is normally
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002820 * invoked from the scheduling-clock interrupt. If rcu_pending returns
2821 * false, there is no point in invoking rcu_check_callbacks().
2822 */
Paul E. McKenneyc3377c2d2014-10-21 07:53:02 -07002823void rcu_check_callbacks(int user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002824{
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002825 trace_rcu_utilization(TPS("Start scheduler-tick"));
Paul E. McKenneya858af22012-01-16 13:29:10 -08002826 increment_cpu_stall_ticks();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07002827 if (user || rcu_is_cpu_rrupt_from_idle()) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002828
2829 /*
2830 * Get here if this CPU took its interrupt from user
2831 * mode or from the idle loop, and if this is not a
2832 * nested interrupt. In this case, the CPU is in
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002833 * a quiescent state, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002834 *
2835 * No memory barrier is required here because both
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002836 * rcu_sched_qs() and rcu_bh_qs() reference only CPU-local
2837 * variables that other CPUs neither access nor modify,
2838 * at least not while the corresponding CPU is online.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002839 */
2840
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002841 rcu_sched_qs();
2842 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002843
2844 } else if (!in_softirq()) {
2845
2846 /*
2847 * Get here if this CPU did not take its interrupt from
2848 * softirq, in other words, if it is not interrupting
2849 * a rcu_bh read-side critical section. This is an _bh
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07002850 * critical section, so note it.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002851 */
2852
Paul E. McKenney284a8c92014-08-14 16:38:46 -07002853 rcu_bh_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002854 }
Paul E. McKenney86aea0e2014-10-21 08:12:00 -07002855 rcu_preempt_check_callbacks();
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07002856 if (rcu_pending())
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002857 invoke_rcu_core();
Paul E. McKenney8315f422014-06-27 13:42:20 -07002858 if (user)
2859 rcu_note_voluntary_context_switch(current);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04002860 trace_rcu_utilization(TPS("End scheduler-tick"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002861}
2862
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002863/*
2864 * Scan the leaf rcu_node structures, processing dyntick state for any that
2865 * have not yet encountered a quiescent state, using the function specified.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08002866 * Also initiate boosting for any threads blocked on the root rcu_node.
2867 *
Paul E. McKenneyee47eb92010-01-04 15:09:07 -08002868 * The caller must have suppressed start of new grace periods.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002869 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07002870static void force_qs_rnp(struct rcu_state *rsp,
2871 int (*f)(struct rcu_data *rsp, bool *isidle,
2872 unsigned long *maxj),
2873 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002874{
2875 unsigned long bit;
2876 int cpu;
2877 unsigned long flags;
2878 unsigned long mask;
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002879 struct rcu_node *rnp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002880
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002881 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07002882 cond_resched_rcu_qs();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002883 mask = 0;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002884 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002885 if (rnp->qsmask == 0) {
Paul E. McKenneya77da142015-03-08 14:52:27 -07002886 if (rcu_state_p == &rcu_sched_state ||
2887 rsp != rcu_state_p ||
2888 rcu_preempt_blocked_readers_cgp(rnp)) {
2889 /*
2890 * No point in scanning bits because they
2891 * are all zero. But we might need to
2892 * priority-boost blocked readers.
2893 */
2894 rcu_initiate_boost(rnp, flags);
2895 /* rcu_initiate_boost() releases rnp->lock */
2896 continue;
2897 }
2898 if (rnp->parent &&
2899 (rnp->parent->qsmask & rnp->grpmask)) {
2900 /*
2901 * Race between grace-period
2902 * initialization and task exiting RCU
2903 * read-side critical section: Report.
2904 */
2905 rcu_report_unblock_qs_rnp(rsp, rnp, flags);
2906 /* rcu_report_unblock_qs_rnp() rlses ->lock */
2907 continue;
2908 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002909 }
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002910 cpu = rnp->grplo;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002911 bit = 1;
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07002912 for (; cpu <= rnp->grphi; cpu++, bit <<= 1) {
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002913 if ((rnp->qsmask & bit) != 0) {
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002914 if (f(per_cpu_ptr(rsp->rda, cpu), isidle, maxj))
2915 mask |= bit;
2916 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002917 }
Paul E. McKenney45f014c52e2010-01-04 15:09:08 -08002918 if (mask != 0) {
Paul E. McKenney654e9532015-03-15 09:19:35 -07002919 /* Idle/offline CPUs, report (releases rnp->lock. */
2920 rcu_report_qs_rnp(mask, rsp, rnp, rnp->gpnum, flags);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08002921 } else {
2922 /* Nothing to do here, so just drop the lock. */
Boqun Feng67c583a72015-12-29 12:18:47 +08002923 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002924 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002925 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002926}
2927
2928/*
2929 * Force quiescent states on reluctant CPUs, and also detect which
2930 * CPUs are in dyntick-idle mode.
2931 */
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002932static void force_quiescent_state(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002933{
2934 unsigned long flags;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002935 bool ret;
2936 struct rcu_node *rnp;
2937 struct rcu_node *rnp_old = NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002938
Paul E. McKenney394f2762012-06-26 17:00:35 -07002939 /* Funnel through hierarchy to reduce memory contention. */
Shan Weid860d402014-06-19 14:12:44 -07002940 rnp = __this_cpu_read(rsp->rda->mynode);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002941 for (; rnp != NULL; rnp = rnp->parent) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002942 ret = (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) ||
Paul E. McKenney394f2762012-06-26 17:00:35 -07002943 !raw_spin_trylock(&rnp->fqslock);
2944 if (rnp_old != NULL)
2945 raw_spin_unlock(&rnp_old->fqslock);
2946 if (ret) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002947 rsp->n_force_qs_lh++;
Paul E. McKenney394f2762012-06-26 17:00:35 -07002948 return;
2949 }
2950 rnp_old = rnp;
2951 }
2952 /* rnp_old == rcu_get_root(rsp), rnp == NULL. */
2953
2954 /* Reached the root of the rcu_node tree, acquire lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02002955 raw_spin_lock_irqsave_rcu_node(rnp_old, flags);
Paul E. McKenney394f2762012-06-26 17:00:35 -07002956 raw_spin_unlock(&rnp_old->fqslock);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002957 if (READ_ONCE(rsp->gp_flags) & RCU_GP_FLAG_FQS) {
Paul E. McKenneya7925632014-06-02 14:54:34 -07002958 rsp->n_force_qs_lh++;
Boqun Feng67c583a72015-12-29 12:18:47 +08002959 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002960 return; /* Someone beat us to it. */
Paul E. McKenney46a1e342010-01-04 15:09:09 -08002961 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002962 WRITE_ONCE(rsp->gp_flags, READ_ONCE(rsp->gp_flags) | RCU_GP_FLAG_FQS);
Boqun Feng67c583a72015-12-29 12:18:47 +08002963 raw_spin_unlock_irqrestore_rcu_node(rnp_old, flags);
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002964 swake_up(&rsp->gp_wq); /* Memory barrier implied by swake_up() path. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002965}
2966
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002967/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07002968 * This does the RCU core processing work for the specified rcu_state
2969 * and rcu_data structures. This may be called only from the CPU to
2970 * whom the rdp belongs.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002971 */
2972static void
Paul E. McKenney1bca8cf2012-06-12 09:40:38 -07002973__rcu_process_callbacks(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002974{
2975 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07002976 bool needwake;
Christoph Lameterfa07a582014-04-15 12:20:12 -07002977 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002978
Paul E. McKenney2e597552009-08-15 09:53:48 -07002979 WARN_ON_ONCE(rdp->beenonline == 0);
2980
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002981 /* Update RCU state based on any recent quiescent states. */
2982 rcu_check_quiescent_state(rsp, rdp);
2983
2984 /* Does this CPU require a not-yet-started grace period? */
Paul E. McKenneydc35c892012-12-03 13:52:00 -08002985 local_irq_save(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002986 if (cpu_needs_another_gp(rsp, rdp)) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07002987 raw_spin_lock_rcu_node(rcu_get_root(rsp)); /* irqs disabled. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07002988 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08002989 raw_spin_unlock_irqrestore_rcu_node(rcu_get_root(rsp), flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07002990 if (needwake)
2991 rcu_gp_kthread_wake(rsp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08002992 } else {
2993 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01002994 }
2995
2996 /* If there are callbacks ready, invoke them. */
Shaohua Li09223372011-06-14 13:26:25 +08002997 if (cpu_has_callbacks_ready_to_invoke(rdp))
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002998 invoke_rcu_callbacks(rsp, rdp);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002999
3000 /* Do any needed deferred wakeups of rcuo kthreads. */
3001 do_nocb_deferred_wakeup(rdp);
Shaohua Li09223372011-06-14 13:26:25 +08003002}
3003
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003004/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003005 * Do RCU core processing for the current CPU.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003006 */
Shaohua Li09223372011-06-14 13:26:25 +08003007static void rcu_process_callbacks(struct softirq_action *unused)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003008{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003009 struct rcu_state *rsp;
3010
Paul E. McKenneybfa00b42012-06-21 09:54:10 -07003011 if (cpu_is_offline(smp_processor_id()))
3012 return;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003013 trace_rcu_utilization(TPS("Start RCU core"));
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003014 for_each_rcu_flavor(rsp)
3015 __rcu_process_callbacks(rsp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04003016 trace_rcu_utilization(TPS("End RCU core"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003017}
3018
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003019/*
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003020 * Schedule RCU callback invocation. If the specified type of RCU
3021 * does not support RCU priority boosting, just do a direct call,
3022 * otherwise wake up the per-CPU kernel kthread. Note that because we
Paul E. McKenney924df8a2014-10-29 15:37:58 -07003023 * are running on the current CPU with softirqs disabled, the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07003024 * rcu_cpu_kthread_task cannot disappear out from under us.
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003025 */
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003026static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003027{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003028 if (unlikely(!READ_ONCE(rcu_scheduler_fully_active)))
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07003029 return;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003030 if (likely(!rsp->boost)) {
3031 rcu_do_batch(rsp, rdp);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003032 return;
3033 }
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003034 invoke_rcu_callbacks_kthread();
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003035}
3036
Paul E. McKenneya46e0892011-06-15 15:47:09 -07003037static void invoke_rcu_core(void)
Shaohua Li09223372011-06-14 13:26:25 +08003038{
Paul E. McKenneyb0f74032013-02-04 12:14:24 -08003039 if (cpu_online(smp_processor_id()))
3040 raise_softirq(RCU_SOFTIRQ);
Shaohua Li09223372011-06-14 13:26:25 +08003041}
3042
Paul E. McKenney29154c52012-05-30 03:21:48 -07003043/*
3044 * Handle any core-RCU processing required by a call_rcu() invocation.
3045 */
3046static void __call_rcu_core(struct rcu_state *rsp, struct rcu_data *rdp,
3047 struct rcu_head *head, unsigned long flags)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003048{
Paul E. McKenney48a76392014-03-11 13:02:16 -07003049 bool needwake;
3050
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003051 /*
Paul E. McKenney29154c52012-05-30 03:21:48 -07003052 * If called from an extended quiescent state, invoke the RCU
3053 * core in order to force a re-evaluation of RCU's idleness.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003054 */
Yao Dongdong9910aff2015-02-25 17:09:46 +08003055 if (!rcu_is_watching())
Paul E. McKenney29154c52012-05-30 03:21:48 -07003056 invoke_rcu_core();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003057
Paul E. McKenney29154c52012-05-30 03:21:48 -07003058 /* If interrupts were disabled or CPU offline, don't invoke RCU core. */
3059 if (irqs_disabled_flags(flags) || cpu_is_offline(smp_processor_id()))
Paul E. McKenney2655d572011-04-07 22:47:23 -07003060 return;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003061
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003062 /*
3063 * Force the grace period if too many callbacks or too long waiting.
3064 * Enforce hysteresis, and don't invoke force_quiescent_state()
3065 * if some other CPU has recently done so. Also, don't bother
3066 * invoking force_quiescent_state() if the newly enqueued callback
3067 * is the only one waiting for a grace period to complete.
3068 */
Paul E. McKenney2655d572011-04-07 22:47:23 -07003069 if (unlikely(rdp->qlen > rdp->qlen_last_fqs_check + qhimark)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003070
3071 /* Are we ignoring a completed grace period? */
Paul E. McKenney470716f2013-03-19 11:32:11 -07003072 note_gp_changes(rsp, rdp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003073
3074 /* Start a new grace period if one not already started. */
3075 if (!rcu_gp_in_progress(rsp)) {
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003076 struct rcu_node *rnp_root = rcu_get_root(rsp);
3077
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003078 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003079 needwake = rcu_start_gp(rsp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003080 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07003081 if (needwake)
3082 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003083 } else {
3084 /* Give the grace period a kick. */
3085 rdp->blimit = LONG_MAX;
3086 if (rsp->n_force_qs == rdp->n_force_qs_snap &&
3087 *rdp->nxttail[RCU_DONE_TAIL] != head)
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07003088 force_quiescent_state(rsp);
Paul E. McKenneyb52573d2010-12-14 17:36:02 -08003089 rdp->n_force_qs_snap = rsp->n_force_qs;
3090 rdp->qlen_last_fqs_check = rdp->qlen;
3091 }
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07003092 }
Paul E. McKenney29154c52012-05-30 03:21:48 -07003093}
3094
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003095/*
Paul E. McKenneyae150182013-04-23 13:20:57 -07003096 * RCU callback function to leak a callback.
3097 */
3098static void rcu_leak_callback(struct rcu_head *rhp)
3099{
3100}
3101
3102/*
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003103 * Helper function for call_rcu() and friends. The cpu argument will
3104 * normally be -1, indicating "currently running CPU". It may specify
3105 * a CPU only if that CPU is a no-CBs CPU. Currently, only _rcu_barrier()
3106 * is expected to specify a CPU.
3107 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003108static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003109__call_rcu(struct rcu_head *head, rcu_callback_t func,
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003110 struct rcu_state *rsp, int cpu, bool lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003111{
3112 unsigned long flags;
3113 struct rcu_data *rdp;
3114
Paul E. McKenney1146edc2014-06-09 08:24:17 -07003115 WARN_ON_ONCE((unsigned long)head & 0x1); /* Misaligned rcu_head! */
Paul E. McKenneyae150182013-04-23 13:20:57 -07003116 if (debug_rcu_head_queue(head)) {
3117 /* Probable double call_rcu(), so leak the callback. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003118 WRITE_ONCE(head->func, rcu_leak_callback);
Paul E. McKenneyae150182013-04-23 13:20:57 -07003119 WARN_ONCE(1, "__call_rcu(): Leaked duplicate callback\n");
3120 return;
3121 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003122 head->func = func;
3123 head->next = NULL;
3124
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003125 /*
3126 * Opportunistically note grace-period endings and beginnings.
3127 * Note that we might see a beginning right after we see an
3128 * end, but never vice versa, since this CPU has to pass through
3129 * a quiescent state betweentimes.
3130 */
3131 local_irq_save(flags);
3132 rdp = this_cpu_ptr(rsp->rda);
3133
3134 /* Add the callback to our list. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003135 if (unlikely(rdp->nxttail[RCU_NEXT_TAIL] == NULL) || cpu != -1) {
3136 int offline;
3137
3138 if (cpu != -1)
3139 rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003140 if (likely(rdp->mynode)) {
3141 /* Post-boot, so this should be for a no-CBs CPU. */
3142 offline = !__call_rcu_nocb(rdp, head, lazy, flags);
3143 WARN_ON_ONCE(offline);
3144 /* Offline CPU, _call_rcu() illegal, leak callback. */
3145 local_irq_restore(flags);
3146 return;
3147 }
3148 /*
3149 * Very early boot, before rcu_init(). Initialize if needed
3150 * and then drop through to queue the callback.
3151 */
3152 BUG_ON(cpu != -1);
Paul E. McKenney34404ca2015-01-19 20:39:20 -08003153 WARN_ON_ONCE(!rcu_is_watching());
Paul E. McKenney143da9c2015-01-19 19:57:32 -08003154 if (!likely(rdp->nxtlist))
3155 init_default_callback_list(rdp);
Paul E. McKenney0d8ee372012-08-03 13:16:15 -07003156 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003157 WRITE_ONCE(rdp->qlen, rdp->qlen + 1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003158 if (lazy)
3159 rdp->qlen_lazy++;
3160 else
3161 rcu_idle_count_callbacks_posted();
3162 smp_mb(); /* Count before adding callback for rcu_barrier(). */
3163 *rdp->nxttail[RCU_NEXT_TAIL] = head;
3164 rdp->nxttail[RCU_NEXT_TAIL] = &head->next;
3165
3166 if (__is_kfree_rcu_offset((unsigned long)func))
3167 trace_rcu_kfree_callback(rsp->name, head, (unsigned long)func,
3168 rdp->qlen_lazy, rdp->qlen);
3169 else
3170 trace_rcu_callback(rsp->name, head, rdp->qlen_lazy, rdp->qlen);
3171
Paul E. McKenney29154c52012-05-30 03:21:48 -07003172 /* Go handle any RCU core processing required. */
3173 __call_rcu_core(rsp, rdp, head, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003174 local_irq_restore(flags);
3175}
3176
3177/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003178 * Queue an RCU-sched callback for invocation after a grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003179 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003180void call_rcu_sched(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003181{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003182 __call_rcu(head, func, &rcu_sched_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003183}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -07003184EXPORT_SYMBOL_GPL(call_rcu_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003185
3186/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08003187 * Queue an RCU callback for invocation after a quicker grace period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003188 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003189void call_rcu_bh(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003190{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003191 __call_rcu(head, func, &rcu_bh_state, -1, 0);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003192}
3193EXPORT_SYMBOL_GPL(call_rcu_bh);
3194
Paul E. McKenney6d813392012-02-23 13:30:16 -08003195/*
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003196 * Queue an RCU callback for lazy invocation after a grace period.
3197 * This will likely be later named something like "call_rcu_lazy()",
3198 * but this change will require some way of tagging the lazy RCU
3199 * callbacks in the list of pending callbacks. Until then, this
3200 * function may only be called from __kfree_rcu().
3201 */
3202void kfree_call_rcu(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +08003203 rcu_callback_t func)
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003204{
Uma Sharmae5341652014-03-23 22:32:09 -07003205 __call_rcu(head, func, rcu_state_p, -1, 1);
Andreea-Cristina Bernat495aa962014-03-18 20:48:48 +02003206}
3207EXPORT_SYMBOL_GPL(kfree_call_rcu);
3208
3209/*
Paul E. McKenney6d813392012-02-23 13:30:16 -08003210 * Because a context switch is a grace period for RCU-sched and RCU-bh,
3211 * any blocking grace-period wait automatically implies a grace period
3212 * if there is only one CPU online at any point time during execution
3213 * of either synchronize_sched() or synchronize_rcu_bh(). It is OK to
3214 * occasionally incorrectly indicate that there are multiple CPUs online
3215 * when there was in fact only one the whole time, as this just adds
3216 * some overhead: RCU still operates correctly.
Paul E. McKenney6d813392012-02-23 13:30:16 -08003217 */
3218static inline int rcu_blocking_is_gp(void)
3219{
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003220 int ret;
3221
Paul E. McKenney6d813392012-02-23 13:30:16 -08003222 might_sleep(); /* Check for RCU read-side critical section. */
Paul E. McKenney95f0c1d2012-06-19 11:58:27 -07003223 preempt_disable();
3224 ret = num_online_cpus() <= 1;
3225 preempt_enable();
3226 return ret;
Paul E. McKenney6d813392012-02-23 13:30:16 -08003227}
3228
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003229/**
3230 * synchronize_sched - wait until an rcu-sched grace period has elapsed.
3231 *
3232 * Control will return to the caller some time after a full rcu-sched
3233 * grace period has elapsed, in other words after all currently executing
3234 * rcu-sched read-side critical sections have completed. These read-side
3235 * critical sections are delimited by rcu_read_lock_sched() and
3236 * rcu_read_unlock_sched(), and may be nested. Note that preempt_disable(),
3237 * local_irq_disable(), and so on may be used in place of
3238 * rcu_read_lock_sched().
3239 *
3240 * This means that all preempt_disable code sequences, including NMI and
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003241 * non-threaded hardware-interrupt handlers, in progress on entry will
3242 * have completed before this primitive returns. However, this does not
3243 * guarantee that softirq handlers will have completed, since in some
3244 * kernels, these handlers can run in process context, and can block.
3245 *
3246 * Note that this guarantee implies further memory-ordering guarantees.
3247 * On systems with more than one CPU, when synchronize_sched() returns,
3248 * each CPU is guaranteed to have executed a full memory barrier since the
3249 * end of its last RCU-sched read-side critical section whose beginning
3250 * preceded the call to synchronize_sched(). In addition, each CPU having
3251 * an RCU read-side critical section that extends beyond the return from
3252 * synchronize_sched() is guaranteed to have executed a full memory barrier
3253 * after the beginning of synchronize_sched() and before the beginning of
3254 * that RCU read-side critical section. Note that these guarantees include
3255 * CPUs that are offline, idle, or executing in user mode, as well as CPUs
3256 * that are executing in the kernel.
3257 *
3258 * Furthermore, if CPU A invoked synchronize_sched(), which returned
3259 * to its caller on CPU B, then both CPU A and CPU B are guaranteed
3260 * to have executed a full memory barrier during the execution of
3261 * synchronize_sched() -- even if CPU A and CPU B are the same CPU (but
3262 * again only if the system has more than one CPU).
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003263 *
3264 * This primitive provides the guarantees made by the (now removed)
3265 * synchronize_kernel() API. In contrast, synchronize_rcu() only
3266 * guarantees that rcu_read_lock() sections will have completed.
3267 * In "classic RCU", these two guarantees happen to be one and
3268 * the same, but can differ in realtime RCU implementations.
3269 */
3270void synchronize_sched(void)
3271{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003272 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3273 lock_is_held(&rcu_lock_map) ||
3274 lock_is_held(&rcu_sched_lock_map),
3275 "Illegal synchronize_sched() in RCU-sched read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003276 if (rcu_blocking_is_gp())
3277 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003278 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003279 synchronize_sched_expedited();
3280 else
3281 wait_rcu_gp(call_rcu_sched);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003282}
3283EXPORT_SYMBOL_GPL(synchronize_sched);
3284
3285/**
3286 * synchronize_rcu_bh - wait until an rcu_bh grace period has elapsed.
3287 *
3288 * Control will return to the caller some time after a full rcu_bh grace
3289 * period has elapsed, in other words after all currently executing rcu_bh
3290 * read-side critical sections have completed. RCU read-side critical
3291 * sections are delimited by rcu_read_lock_bh() and rcu_read_unlock_bh(),
3292 * and may be nested.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -07003293 *
3294 * See the description of synchronize_sched() for more detailed information
3295 * on memory ordering guarantees.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003296 */
3297void synchronize_rcu_bh(void)
3298{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -07003299 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
3300 lock_is_held(&rcu_lock_map) ||
3301 lock_is_held(&rcu_sched_lock_map),
3302 "Illegal synchronize_rcu_bh() in RCU-bh read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003303 if (rcu_blocking_is_gp())
3304 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -08003305 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +03003306 synchronize_rcu_bh_expedited();
3307 else
3308 wait_rcu_gp(call_rcu_bh);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -08003309}
3310EXPORT_SYMBOL_GPL(synchronize_rcu_bh);
3311
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003312/**
3313 * get_state_synchronize_rcu - Snapshot current RCU state
3314 *
3315 * Returns a cookie that is used by a later call to cond_synchronize_rcu()
3316 * to determine whether or not a full grace period has elapsed in the
3317 * meantime.
3318 */
3319unsigned long get_state_synchronize_rcu(void)
3320{
3321 /*
3322 * Any prior manipulation of RCU-protected data must happen
3323 * before the load from ->gpnum.
3324 */
3325 smp_mb(); /* ^^^ */
3326
3327 /*
3328 * Make sure this load happens before the purportedly
3329 * time-consuming work between get_state_synchronize_rcu()
3330 * and cond_synchronize_rcu().
3331 */
Uma Sharmae5341652014-03-23 22:32:09 -07003332 return smp_load_acquire(&rcu_state_p->gpnum);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003333}
3334EXPORT_SYMBOL_GPL(get_state_synchronize_rcu);
3335
3336/**
3337 * cond_synchronize_rcu - Conditionally wait for an RCU grace period
3338 *
3339 * @oldstate: return value from earlier call to get_state_synchronize_rcu()
3340 *
3341 * If a full RCU grace period has elapsed since the earlier call to
3342 * get_state_synchronize_rcu(), just return. Otherwise, invoke
3343 * synchronize_rcu() to wait for a full grace period.
3344 *
3345 * Yes, this function does not take counter wrap into account. But
3346 * counter wrap is harmless. If the counter wraps, we have waited for
3347 * more than 2 billion grace periods (and way more on a 64-bit system!),
3348 * so waiting for one additional grace period should be just fine.
3349 */
3350void cond_synchronize_rcu(unsigned long oldstate)
3351{
3352 unsigned long newstate;
3353
3354 /*
3355 * Ensure that this load happens before any RCU-destructive
3356 * actions the caller might carry out after we return.
3357 */
Uma Sharmae5341652014-03-23 22:32:09 -07003358 newstate = smp_load_acquire(&rcu_state_p->completed);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07003359 if (ULONG_CMP_GE(oldstate, newstate))
3360 synchronize_rcu();
3361}
3362EXPORT_SYMBOL_GPL(cond_synchronize_rcu);
3363
Paul E. McKenney24560052015-05-30 10:11:24 -07003364/**
3365 * get_state_synchronize_sched - Snapshot current RCU-sched state
3366 *
3367 * Returns a cookie that is used by a later call to cond_synchronize_sched()
3368 * to determine whether or not a full grace period has elapsed in the
3369 * meantime.
3370 */
3371unsigned long get_state_synchronize_sched(void)
3372{
3373 /*
3374 * Any prior manipulation of RCU-protected data must happen
3375 * before the load from ->gpnum.
3376 */
3377 smp_mb(); /* ^^^ */
3378
3379 /*
3380 * Make sure this load happens before the purportedly
3381 * time-consuming work between get_state_synchronize_sched()
3382 * and cond_synchronize_sched().
3383 */
3384 return smp_load_acquire(&rcu_sched_state.gpnum);
3385}
3386EXPORT_SYMBOL_GPL(get_state_synchronize_sched);
3387
3388/**
3389 * cond_synchronize_sched - Conditionally wait for an RCU-sched grace period
3390 *
3391 * @oldstate: return value from earlier call to get_state_synchronize_sched()
3392 *
3393 * If a full RCU-sched grace period has elapsed since the earlier call to
3394 * get_state_synchronize_sched(), just return. Otherwise, invoke
3395 * synchronize_sched() to wait for a full grace period.
3396 *
3397 * Yes, this function does not take counter wrap into account. But
3398 * counter wrap is harmless. If the counter wraps, we have waited for
3399 * more than 2 billion grace periods (and way more on a 64-bit system!),
3400 * so waiting for one additional grace period should be just fine.
3401 */
3402void cond_synchronize_sched(unsigned long oldstate)
3403{
3404 unsigned long newstate;
3405
3406 /*
3407 * Ensure that this load happens before any RCU-destructive
3408 * actions the caller might carry out after we return.
3409 */
3410 newstate = smp_load_acquire(&rcu_sched_state.completed);
3411 if (ULONG_CMP_GE(oldstate, newstate))
3412 synchronize_sched();
3413}
3414EXPORT_SYMBOL_GPL(cond_synchronize_sched);
3415
Paul E. McKenney28f00762015-06-25 15:00:58 -07003416/* Adjust sequence number for start of update-side operation. */
3417static void rcu_seq_start(unsigned long *sp)
3418{
3419 WRITE_ONCE(*sp, *sp + 1);
3420 smp_mb(); /* Ensure update-side operation after counter increment. */
3421 WARN_ON_ONCE(!(*sp & 0x1));
3422}
3423
3424/* Adjust sequence number for end of update-side operation. */
3425static void rcu_seq_end(unsigned long *sp)
3426{
3427 smp_mb(); /* Ensure update-side operation before counter increment. */
3428 WRITE_ONCE(*sp, *sp + 1);
3429 WARN_ON_ONCE(*sp & 0x1);
3430}
3431
3432/* Take a snapshot of the update side's sequence number. */
3433static unsigned long rcu_seq_snap(unsigned long *sp)
3434{
3435 unsigned long s;
3436
Paul E. McKenney28f00762015-06-25 15:00:58 -07003437 s = (READ_ONCE(*sp) + 3) & ~0x1;
3438 smp_mb(); /* Above access must not bleed into critical section. */
3439 return s;
3440}
3441
3442/*
3443 * Given a snapshot from rcu_seq_snap(), determine whether or not a
3444 * full update-side operation has occurred.
3445 */
3446static bool rcu_seq_done(unsigned long *sp, unsigned long s)
3447{
3448 return ULONG_CMP_GE(READ_ONCE(*sp), s);
3449}
3450
3451/* Wrapper functions for expedited grace periods. */
3452static void rcu_exp_gp_seq_start(struct rcu_state *rsp)
3453{
3454 rcu_seq_start(&rsp->expedited_sequence);
3455}
3456static void rcu_exp_gp_seq_end(struct rcu_state *rsp)
3457{
3458 rcu_seq_end(&rsp->expedited_sequence);
Paul E. McKenney704dd432015-06-27 09:36:29 -07003459 smp_mb(); /* Ensure that consecutive grace periods serialize. */
Paul E. McKenney28f00762015-06-25 15:00:58 -07003460}
3461static unsigned long rcu_exp_gp_seq_snap(struct rcu_state *rsp)
3462{
Paul E. McKenney179e5dc2016-03-16 16:27:44 -07003463 unsigned long s;
3464
Paul E. McKenney886ef5a2015-09-29 12:34:40 -07003465 smp_mb(); /* Caller's modifications seen first by other CPUs. */
Paul E. McKenney179e5dc2016-03-16 16:27:44 -07003466 s = rcu_seq_snap(&rsp->expedited_sequence);
3467 trace_rcu_exp_grace_period(rsp->name, s, TPS("snap"));
3468 return s;
Paul E. McKenney28f00762015-06-25 15:00:58 -07003469}
3470static bool rcu_exp_gp_seq_done(struct rcu_state *rsp, unsigned long s)
3471{
3472 return rcu_seq_done(&rsp->expedited_sequence, s);
3473}
3474
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003475/*
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003476 * Reset the ->expmaskinit values in the rcu_node tree to reflect any
3477 * recent CPU-online activity. Note that these masks are not cleared
3478 * when CPUs go offline, so they reflect the union of all CPUs that have
3479 * ever been online. This means that this function normally takes its
3480 * no-work-to-do fastpath.
3481 */
3482static void sync_exp_reset_tree_hotplug(struct rcu_state *rsp)
3483{
3484 bool done;
3485 unsigned long flags;
3486 unsigned long mask;
3487 unsigned long oldmask;
3488 int ncpus = READ_ONCE(rsp->ncpus);
3489 struct rcu_node *rnp;
3490 struct rcu_node *rnp_up;
3491
3492 /* If no new CPUs onlined since last time, nothing to do. */
3493 if (likely(ncpus == rsp->ncpus_snap))
3494 return;
3495 rsp->ncpus_snap = ncpus;
3496
3497 /*
3498 * Each pass through the following loop propagates newly onlined
3499 * CPUs for the current rcu_node structure up the rcu_node tree.
3500 */
3501 rcu_for_each_leaf_node(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003502 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003503 if (rnp->expmaskinit == rnp->expmaskinitnext) {
Boqun Feng67c583a72015-12-29 12:18:47 +08003504 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003505 continue; /* No new CPUs, nothing to do. */
3506 }
3507
3508 /* Update this node's mask, track old value for propagation. */
3509 oldmask = rnp->expmaskinit;
3510 rnp->expmaskinit = rnp->expmaskinitnext;
Boqun Feng67c583a72015-12-29 12:18:47 +08003511 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003512
3513 /* If was already nonzero, nothing to propagate. */
3514 if (oldmask)
3515 continue;
3516
3517 /* Propagate the new CPU up the tree. */
3518 mask = rnp->grpmask;
3519 rnp_up = rnp->parent;
3520 done = false;
3521 while (rnp_up) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003522 raw_spin_lock_irqsave_rcu_node(rnp_up, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003523 if (rnp_up->expmaskinit)
3524 done = true;
3525 rnp_up->expmaskinit |= mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003526 raw_spin_unlock_irqrestore_rcu_node(rnp_up, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003527 if (done)
3528 break;
3529 mask = rnp_up->grpmask;
3530 rnp_up = rnp_up->parent;
3531 }
3532 }
3533}
3534
3535/*
3536 * Reset the ->expmask values in the rcu_node tree in preparation for
3537 * a new expedited grace period.
3538 */
3539static void __maybe_unused sync_exp_reset_tree(struct rcu_state *rsp)
3540{
3541 unsigned long flags;
3542 struct rcu_node *rnp;
3543
3544 sync_exp_reset_tree_hotplug(rsp);
3545 rcu_for_each_node_breadth_first(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003546 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003547 WARN_ON_ONCE(rnp->expmask);
3548 rnp->expmask = rnp->expmaskinit;
Boqun Feng67c583a72015-12-29 12:18:47 +08003549 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003550 }
3551}
3552
3553/*
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003554 * Return non-zero if there is no RCU expedited grace period in progress
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003555 * for the specified rcu_node structure, in other words, if all CPUs and
3556 * tasks covered by the specified rcu_node structure have done their bit
3557 * for the current expedited grace period. Works only for preemptible
3558 * RCU -- other RCU implementation use other means.
3559 *
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003560 * Caller must hold the rcu_state's exp_mutex.
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003561 */
3562static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
3563{
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003564 return rnp->exp_tasks == NULL &&
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003565 READ_ONCE(rnp->expmask) == 0;
3566}
3567
3568/*
3569 * Report the exit from RCU read-side critical section for the last task
3570 * that queued itself during or before the current expedited preemptible-RCU
3571 * grace period. This event is reported either to the rcu_node structure on
3572 * which the task was queued or to one of that rcu_node structure's ancestors,
3573 * recursively up the tree. (Calm down, calm down, we do the recursion
3574 * iteratively!)
3575 *
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003576 * Caller must hold the rcu_state's exp_mutex and the specified rcu_node
3577 * structure's ->lock.
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003578 */
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003579static void __rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
3580 bool wake, unsigned long flags)
3581 __releases(rnp->lock)
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003582{
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003583 unsigned long mask;
3584
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003585 for (;;) {
3586 if (!sync_rcu_preempt_exp_done(rnp)) {
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003587 if (!rnp->expmask)
3588 rcu_initiate_boost(rnp, flags);
3589 else
Boqun Feng67c583a72015-12-29 12:18:47 +08003590 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003591 break;
3592 }
3593 if (rnp->parent == NULL) {
Boqun Feng67c583a72015-12-29 12:18:47 +08003594 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003595 if (wake) {
3596 smp_mb(); /* EGP done before wake_up(). */
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01003597 swake_up(&rsp->expedited_wq);
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003598 }
3599 break;
3600 }
3601 mask = rnp->grpmask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003602 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled */
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003603 rnp = rnp->parent;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003604 raw_spin_lock_rcu_node(rnp); /* irqs already disabled */
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003605 WARN_ON_ONCE(!(rnp->expmask & mask));
Paul E. McKenney7922cd02015-07-31 13:34:32 -07003606 rnp->expmask &= ~mask;
3607 }
3608}
3609
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003610/*
3611 * Report expedited quiescent state for specified node. This is a
3612 * lock-acquisition wrapper function for __rcu_report_exp_rnp().
3613 *
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003614 * Caller must hold the rcu_state's exp_mutex.
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003615 */
3616static void __maybe_unused rcu_report_exp_rnp(struct rcu_state *rsp,
3617 struct rcu_node *rnp, bool wake)
3618{
3619 unsigned long flags;
3620
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003621 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003622 __rcu_report_exp_rnp(rsp, rnp, wake, flags);
3623}
3624
3625/*
3626 * Report expedited quiescent state for multiple CPUs, all covered by the
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003627 * specified leaf rcu_node structure. Caller must hold the rcu_state's
3628 * exp_mutex.
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003629 */
3630static void rcu_report_exp_cpu_mult(struct rcu_state *rsp, struct rcu_node *rnp,
3631 unsigned long mask, bool wake)
3632{
3633 unsigned long flags;
3634
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003635 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003636 if (!(rnp->expmask & mask)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08003637 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003638 return;
3639 }
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003640 rnp->expmask &= ~mask;
3641 __rcu_report_exp_rnp(rsp, rnp, wake, flags); /* Releases rnp->lock. */
3642}
3643
3644/*
3645 * Report expedited quiescent state for specified rcu_data (CPU).
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003646 */
Paul E. McKenney6587a232015-08-06 16:50:39 -07003647static void rcu_report_exp_rdp(struct rcu_state *rsp, struct rcu_data *rdp,
3648 bool wake)
Paul E. McKenney8203d6d2015-08-02 13:53:17 -07003649{
3650 rcu_report_exp_cpu_mult(rsp, rdp->mynode, rdp->grpmask, wake);
3651}
3652
Paul E. McKenney29fd9302015-06-25 19:03:16 -07003653/* Common code for synchronize_{rcu,sched}_expedited() work-done checking. */
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003654static bool sync_exp_work_done(struct rcu_state *rsp, atomic_long_t *stat,
3655 unsigned long s)
Paul E. McKenney385b73c2015-06-24 14:20:08 -07003656{
Paul E. McKenney28f00762015-06-25 15:00:58 -07003657 if (rcu_exp_gp_seq_done(rsp, s)) {
Paul E. McKenney4f415302016-01-28 20:49:49 -08003658 trace_rcu_exp_grace_period(rsp->name, s, TPS("done"));
Paul E. McKenney385b73c2015-06-24 14:20:08 -07003659 /* Ensure test happens before caller kfree(). */
3660 smp_mb__before_atomic(); /* ^^^ */
3661 atomic_long_inc(stat);
Paul E. McKenney385b73c2015-06-24 14:20:08 -07003662 return true;
3663 }
3664 return false;
3665}
3666
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003667/*
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003668 * Funnel-lock acquisition for expedited grace periods. Returns true
3669 * if some other task completed an expedited grace period that this task
3670 * can piggy-back on, and with no mutex held. Otherwise, returns false
3671 * with the mutex held, indicating that the caller must actually do the
3672 * expedited grace period.
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003673 */
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003674static bool exp_funnel_lock(struct rcu_state *rsp, unsigned long s)
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003675{
Paul E. McKenneydf5bd512015-10-01 10:26:24 -07003676 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, raw_smp_processor_id());
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003677 struct rcu_node *rnp = rdp->mynode;
Paul E. McKenney356051e2016-03-16 13:22:53 -07003678 struct rcu_node *rnp_root = rcu_get_root(rsp);
3679
3680 /* Low-contention fastpath. */
3681 if (ULONG_CMP_LT(READ_ONCE(rnp->exp_seq_rq), s) &&
3682 (rnp == rnp_root ||
3683 ULONG_CMP_LT(READ_ONCE(rnp_root->exp_seq_rq), s)) &&
3684 !mutex_is_locked(&rsp->exp_mutex) &&
3685 mutex_trylock(&rsp->exp_mutex))
3686 goto fastpath;
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003687
3688 /*
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003689 * Each pass through the following loop works its way up
3690 * the rcu_node tree, returning if others have done the work or
3691 * otherwise falls through to acquire rsp->exp_mutex. The mapping
3692 * from CPU to rcu_node structure can be inexact, as it is just
3693 * promoting locality and is not strictly needed for correctness.
Paul E. McKenneycdacbe12015-07-11 16:24:45 -07003694 */
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003695 for (; rnp != NULL; rnp = rnp->parent) {
3696 if (sync_exp_work_done(rsp, &rdp->exp_workdone1, s))
3697 return true;
3698
3699 /* Work not done, either wait here or go up. */
3700 spin_lock(&rnp->exp_lock);
3701 if (ULONG_CMP_GE(rnp->exp_seq_rq, s)) {
3702
3703 /* Someone else doing GP, so wait for them. */
3704 spin_unlock(&rnp->exp_lock);
3705 trace_rcu_exp_funnel_lock(rsp->name, rnp->level,
3706 rnp->grplo, rnp->grphi,
3707 TPS("wait"));
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07003708 wait_event(rnp->exp_wq[(s >> 1) & 0x3],
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003709 sync_exp_work_done(rsp,
3710 &rdp->exp_workdone2, s));
3711 return true;
Paul E. McKenneycdacbe12015-07-11 16:24:45 -07003712 }
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003713 rnp->exp_seq_rq = s; /* Followers can wait on us. */
3714 spin_unlock(&rnp->exp_lock);
3715 trace_rcu_exp_funnel_lock(rsp->name, rnp->level, rnp->grplo,
3716 rnp->grphi, TPS("nxtlvl"));
Paul E. McKenneycdacbe12015-07-11 16:24:45 -07003717 }
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003718 mutex_lock(&rsp->exp_mutex);
Paul E. McKenney356051e2016-03-16 13:22:53 -07003719fastpath:
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003720 if (sync_exp_work_done(rsp, &rdp->exp_workdone3, s)) {
3721 mutex_unlock(&rsp->exp_mutex);
3722 return true;
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003723 }
Paul E. McKenneyaff12cd2016-03-16 16:32:24 -07003724 rcu_exp_gp_seq_start(rsp);
3725 trace_rcu_exp_grace_period(rsp->name, s, TPS("start"));
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003726 return false;
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003727}
3728
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003729/* Invoked on each online non-idle CPU for expedited quiescent state. */
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003730static void sync_sched_exp_handler(void *data)
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003731{
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003732 struct rcu_data *rdp;
3733 struct rcu_node *rnp;
3734 struct rcu_state *rsp = data;
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003735
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003736 rdp = this_cpu_ptr(rsp->rda);
3737 rnp = rdp->mynode;
3738 if (!(READ_ONCE(rnp->expmask) & rdp->grpmask) ||
3739 __this_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))
3740 return;
Paul E. McKenney28728dd2016-01-12 08:33:37 -08003741 if (rcu_is_cpu_rrupt_from_idle()) {
3742 rcu_report_exp_rdp(&rcu_sched_state,
3743 this_cpu_ptr(&rcu_sched_data), true);
3744 return;
3745 }
Paul E. McKenney6587a232015-08-06 16:50:39 -07003746 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.exp, true);
3747 resched_cpu(smp_processor_id());
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003748}
3749
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003750/* Send IPI for expedited cleanup if needed at end of CPU-hotplug operation. */
3751static void sync_sched_exp_online_cleanup(int cpu)
3752{
3753 struct rcu_data *rdp;
3754 int ret;
3755 struct rcu_node *rnp;
3756 struct rcu_state *rsp = &rcu_sched_state;
3757
3758 rdp = per_cpu_ptr(rsp->rda, cpu);
3759 rnp = rdp->mynode;
3760 if (!(READ_ONCE(rnp->expmask) & rdp->grpmask))
3761 return;
3762 ret = smp_call_function_single(cpu, sync_sched_exp_handler, rsp, 0);
3763 WARN_ON_ONCE(ret);
3764}
3765
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003766/*
3767 * Select the nodes that the upcoming expedited grace period needs
3768 * to wait for.
3769 */
Paul E. McKenneydcdb8802015-08-15 19:00:31 -07003770static void sync_rcu_exp_select_cpus(struct rcu_state *rsp,
3771 smp_call_func_t func)
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003772{
3773 int cpu;
3774 unsigned long flags;
3775 unsigned long mask;
3776 unsigned long mask_ofl_test;
3777 unsigned long mask_ofl_ipi;
Paul E. McKenney6587a232015-08-06 16:50:39 -07003778 int ret;
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003779 struct rcu_node *rnp;
3780
3781 sync_exp_reset_tree(rsp);
3782 rcu_for_each_leaf_node(rsp, rnp) {
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003783 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003784
3785 /* Each pass checks a CPU for identity, offline, and idle. */
3786 mask_ofl_test = 0;
3787 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++) {
3788 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
3789 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
3790
3791 if (raw_smp_processor_id() == cpu ||
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003792 !(atomic_add_return(0, &rdtp->dynticks) & 0x1))
3793 mask_ofl_test |= rdp->grpmask;
3794 }
3795 mask_ofl_ipi = rnp->expmask & ~mask_ofl_test;
3796
3797 /*
3798 * Need to wait for any blocked tasks as well. Note that
3799 * additional blocking tasks will also block the expedited
3800 * GP until such time as the ->expmask bits are cleared.
3801 */
3802 if (rcu_preempt_has_tasks(rnp))
3803 rnp->exp_tasks = rnp->blkd_tasks.next;
Boqun Feng67c583a72015-12-29 12:18:47 +08003804 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003805
3806 /* IPI the remaining CPUs for expedited quiescent state. */
3807 mask = 1;
3808 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask <<= 1) {
3809 if (!(mask_ofl_ipi & mask))
3810 continue;
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003811retry_ipi:
Paul E. McKenneydcdb8802015-08-15 19:00:31 -07003812 ret = smp_call_function_single(cpu, func, rsp, 0);
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003813 if (!ret) {
Paul E. McKenney6587a232015-08-06 16:50:39 -07003814 mask_ofl_ipi &= ~mask;
Paul E. McKenney1307f212015-09-29 15:29:21 -07003815 continue;
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003816 }
Paul E. McKenney1307f212015-09-29 15:29:21 -07003817 /* Failed, raced with offline. */
3818 raw_spin_lock_irqsave_rcu_node(rnp, flags);
3819 if (cpu_online(cpu) &&
3820 (rnp->expmask & mask)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08003821 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney1307f212015-09-29 15:29:21 -07003822 schedule_timeout_uninterruptible(1);
3823 if (cpu_online(cpu) &&
3824 (rnp->expmask & mask))
3825 goto retry_ipi;
3826 raw_spin_lock_irqsave_rcu_node(rnp, flags);
3827 }
3828 if (!(rnp->expmask & mask))
3829 mask_ofl_ipi &= ~mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003830 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003831 }
3832 /* Report quiescent states for those that went offline. */
3833 mask_ofl_test |= mask_ofl_ipi;
3834 if (mask_ofl_test)
3835 rcu_report_exp_cpu_mult(rsp, rnp, mask_ofl_test, false);
3836 }
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003837}
3838
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003839static void synchronize_sched_expedited_wait(struct rcu_state *rsp)
3840{
3841 int cpu;
3842 unsigned long jiffies_stall;
3843 unsigned long jiffies_start;
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003844 unsigned long mask;
Paul E. McKenney72611ab2015-11-17 13:25:21 -08003845 int ndetected;
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003846 struct rcu_node *rnp;
3847 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003848 int ret;
3849
3850 jiffies_stall = rcu_jiffies_till_stall_check();
3851 jiffies_start = jiffies;
3852
3853 for (;;) {
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01003854 ret = swait_event_timeout(
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003855 rsp->expedited_wq,
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003856 sync_rcu_preempt_exp_done(rnp_root),
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003857 jiffies_stall);
Paul E. McKenney73f36f92015-11-17 10:56:55 -08003858 if (ret > 0 || sync_rcu_preempt_exp_done(rnp_root))
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003859 return;
3860 if (ret < 0) {
3861 /* Hit a signal, disable CPU stall warnings. */
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01003862 swait_event(rsp->expedited_wq,
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003863 sync_rcu_preempt_exp_done(rnp_root));
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003864 return;
3865 }
Paul E. McKenneyc5865632015-08-18 11:25:48 -07003866 pr_err("INFO: %s detected expedited stalls on CPUs/tasks: {",
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003867 rsp->name);
Paul E. McKenney72611ab2015-11-17 13:25:21 -08003868 ndetected = 0;
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003869 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney251c6172016-01-13 10:52:35 -08003870 ndetected += rcu_print_task_exp_stall(rnp);
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003871 mask = 1;
3872 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask <<= 1) {
Paul E. McKenney74611ec2015-08-18 10:20:43 -07003873 struct rcu_data *rdp;
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003874
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003875 if (!(rnp->expmask & mask))
3876 continue;
Paul E. McKenney72611ab2015-11-17 13:25:21 -08003877 ndetected++;
Paul E. McKenney74611ec2015-08-18 10:20:43 -07003878 rdp = per_cpu_ptr(rsp->rda, cpu);
3879 pr_cont(" %d-%c%c%c", cpu,
Paul E. McKenneyec3833e2016-01-11 16:29:29 -08003880 "O."[!!cpu_online(cpu)],
Paul E. McKenney74611ec2015-08-18 10:20:43 -07003881 "o."[!!(rdp->grpmask & rnp->expmaskinit)],
3882 "N."[!!(rdp->grpmask & rnp->expmaskinitnext)]);
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003883 }
3884 mask <<= 1;
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003885 }
Paul E. McKenney72611ab2015-11-17 13:25:21 -08003886 pr_cont(" } %lu jiffies s: %lu root: %#lx/%c\n",
3887 jiffies - jiffies_start, rsp->expedited_sequence,
3888 rnp_root->expmask, ".T"[!!rnp_root->exp_tasks]);
Paul E. McKenney251c6172016-01-13 10:52:35 -08003889 if (ndetected) {
Paul E. McKenney72611ab2015-11-17 13:25:21 -08003890 pr_err("blocking rcu_node structures:");
3891 rcu_for_each_node_breadth_first(rsp, rnp) {
3892 if (rnp == rnp_root)
3893 continue; /* printed unconditionally */
3894 if (sync_rcu_preempt_exp_done(rnp))
3895 continue;
3896 pr_cont(" l=%u:%d-%d:%#lx/%c",
3897 rnp->level, rnp->grplo, rnp->grphi,
3898 rnp->expmask,
3899 ".T"[!!rnp->exp_tasks]);
3900 }
3901 pr_cont("\n");
3902 }
Paul E. McKenneybce5fa12015-08-05 16:03:54 -07003903 rcu_for_each_leaf_node(rsp, rnp) {
3904 mask = 1;
3905 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask <<= 1) {
3906 if (!(rnp->expmask & mask))
3907 continue;
3908 dump_cpu_task(cpu);
3909 }
Paul E. McKenneycf3620a2015-06-30 11:14:32 -07003910 }
3911 jiffies_stall = 3 * rcu_jiffies_till_stall_check() + 3;
3912 }
3913}
3914
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003915/*
Paul E. McKenney4ea3e852016-03-16 16:22:25 -07003916 * Wait for the current expedited grace period to complete, and then
3917 * wake up everyone who piggybacked on the just-completed expedited
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003918 * grace period. Also update all the ->exp_seq_rq counters as needed
3919 * in order to avoid counter-wrap problems.
3920 */
Paul E. McKenney4ea3e852016-03-16 16:22:25 -07003921static void rcu_exp_wait_wake(struct rcu_state *rsp, unsigned long s)
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003922{
3923 struct rcu_node *rnp;
3924
Paul E. McKenney4ea3e852016-03-16 16:22:25 -07003925 synchronize_sched_expedited_wait(rsp);
3926 rcu_exp_gp_seq_end(rsp);
3927 trace_rcu_exp_grace_period(rsp->name, s, TPS("end"));
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07003928
3929 /*
3930 * Switch over to wakeup mode, allowing the next GP, but -only- the
3931 * next GP, to proceed.
3932 */
3933 mutex_lock(&rsp->exp_wake_mutex);
3934 mutex_unlock(&rsp->exp_mutex);
3935
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003936 rcu_for_each_node_breadth_first(rsp, rnp) {
3937 if (ULONG_CMP_LT(READ_ONCE(rnp->exp_seq_rq), s)) {
3938 spin_lock(&rnp->exp_lock);
3939 /* Recheck, avoid hang in case someone just arrived. */
3940 if (ULONG_CMP_LT(rnp->exp_seq_rq, s))
3941 rnp->exp_seq_rq = s;
3942 spin_unlock(&rnp->exp_lock);
3943 }
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07003944 wake_up_all(&rnp->exp_wq[(rsp->expedited_sequence >> 1) & 0x3]);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003945 }
Paul E. McKenney4ea3e852016-03-16 16:22:25 -07003946 trace_rcu_exp_grace_period(rsp->name, s, TPS("endwake"));
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07003947 mutex_unlock(&rsp->exp_wake_mutex);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003948}
3949
Paul E. McKenney236fefa2012-01-31 14:00:41 -08003950/**
3951 * synchronize_sched_expedited - Brute-force RCU-sched grace period
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003952 *
Paul E. McKenney236fefa2012-01-31 14:00:41 -08003953 * Wait for an RCU-sched grace period to elapse, but use a "big hammer"
3954 * approach to force the grace period to end quickly. This consumes
3955 * significant time on all CPUs and is unfriendly to real-time workloads,
3956 * so is thus not recommended for any sort of common-case code. In fact,
3957 * if you are using synchronize_sched_expedited() in a loop, please
3958 * restructure your code to batch your updates, and then use a single
3959 * synchronize_sched() instead.
3960 *
Paul E. McKenneyd6ada2c2015-06-24 10:46:30 -07003961 * This implementation can be thought of as an application of sequence
3962 * locking to expedited grace periods, but using the sequence counter to
3963 * determine when someone else has already done the work instead of for
Paul E. McKenney385b73c2015-06-24 14:20:08 -07003964 * retrying readers.
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003965 */
3966void synchronize_sched_expedited(void)
3967{
Paul E. McKenney7fd0ddc2015-06-25 16:35:03 -07003968 unsigned long s;
Paul E. McKenney40694d62012-10-11 15:24:03 -07003969 struct rcu_state *rsp = &rcu_sched_state;
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003970
Paul E. McKenney06f60de2015-09-29 08:15:52 -07003971 /* If only one CPU, this is automatically a grace period. */
3972 if (rcu_blocking_is_gp())
3973 return;
3974
Paul E. McKenney5a9be7c2015-11-24 15:44:06 -08003975 /* If expedited grace periods are prohibited, fall back to normal. */
3976 if (rcu_gp_is_normal()) {
3977 wait_rcu_gp(call_rcu_sched);
3978 return;
3979 }
3980
Paul E. McKenneyd6ada2c2015-06-24 10:46:30 -07003981 /* Take a snapshot of the sequence number. */
Paul E. McKenney28f00762015-06-25 15:00:58 -07003982 s = rcu_exp_gp_seq_snap(rsp);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003983 if (exp_funnel_lock(rsp, s))
Paul E. McKenneyb09e5f82015-06-25 16:30:54 -07003984 return; /* Someone else did our work for us. */
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003985
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003986 /* Initialize the rcu_node tree in preparation for the wait. */
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003987 sync_rcu_exp_select_cpus(rsp, sync_sched_exp_handler);
Peter Zijlstra3a6d7c62015-06-25 11:27:10 -07003988
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08003989 /* Wait and clean up, including waking everyone. */
Paul E. McKenney4ea3e852016-03-16 16:22:25 -07003990 rcu_exp_wait_wake(rsp, s);
Paul E. McKenney3d3b7db2012-01-23 17:05:46 -08003991}
3992EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
3993
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003994/*
3995 * Check to see if there is any immediate RCU-related work to be done
3996 * by the current CPU, for the specified type of RCU, returning 1 if so.
3997 * The checks are in order of increasing expense: checks that can be
3998 * carried out against CPU-local state are performed first. However,
3999 * we must check for CPU stalls first, else we might not get a chance.
4000 */
4001static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
4002{
Paul E. McKenney2f51f982009-11-13 19:51:39 -08004003 struct rcu_node *rnp = rdp->mynode;
4004
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004005 rdp->n_rcu_pending++;
4006
4007 /* Check for CPU stalls, if enabled. */
4008 check_cpu_stall(rsp, rdp);
4009
Paul E. McKenneya0969322013-11-08 09:03:10 -08004010 /* Is this CPU a NO_HZ_FULL CPU that should ignore RCU? */
4011 if (rcu_nohz_full_cpu(rsp))
4012 return 0;
4013
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004014 /* Is the RCU core waiting for a quiescent state from this CPU? */
Paul E. McKenney5c51dd72011-08-04 06:59:03 -07004015 if (rcu_scheduler_fully_active &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07004016 rdp->core_needs_qs && rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08004017 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) {
Paul E. McKenney97c668b2015-08-06 11:31:51 -07004018 rdp->n_rp_core_needs_qs++;
4019 } else if (rdp->core_needs_qs &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07004020 (!rdp->cpu_no_qs.b.norm ||
Paul E. McKenney5cd37192014-12-13 20:32:04 -08004021 rdp->rcu_qs_ctr_snap != __this_cpu_read(rcu_qs_ctr))) {
Paul E. McKenneyd21670a2010-04-14 17:39:26 -07004022 rdp->n_rp_report_qs++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004023 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004024 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004025
4026 /* Does this CPU have callbacks ready to invoke? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004027 if (cpu_has_callbacks_ready_to_invoke(rdp)) {
4028 rdp->n_rp_cb_ready++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004029 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004030 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004031
4032 /* Has RCU gone idle with this CPU needing another grace period? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004033 if (cpu_needs_another_gp(rsp, rdp)) {
4034 rdp->n_rp_cpu_needs_gp++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004035 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004036 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004037
4038 /* Has another RCU grace period completed? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08004039 if (READ_ONCE(rnp->completed) != rdp->completed) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004040 rdp->n_rp_gp_completed++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004041 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004042 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004043
4044 /* Has a new RCU grace period started? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08004045 if (READ_ONCE(rnp->gpnum) != rdp->gpnum ||
4046 unlikely(READ_ONCE(rdp->gpwrap))) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004047 rdp->n_rp_gp_started++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004048 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004049 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004050
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07004051 /* Does this CPU need a deferred NOCB wakeup? */
4052 if (rcu_nocb_need_deferred_wakeup(rdp)) {
4053 rdp->n_rp_nocb_defer_wakeup++;
4054 return 1;
4055 }
4056
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004057 /* nothing to do */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07004058 rdp->n_rp_need_nothing++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004059 return 0;
4060}
4061
4062/*
4063 * Check to see if there is any immediate RCU-related work to be done
4064 * by the current CPU, returning 1 if so. This function is part of the
4065 * RCU implementation; it is -not- an exported member of the RCU API.
4066 */
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07004067static int rcu_pending(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004068{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004069 struct rcu_state *rsp;
4070
4071 for_each_rcu_flavor(rsp)
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07004072 if (__rcu_pending(rsp, this_cpu_ptr(rsp->rda)))
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004073 return 1;
4074 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004075}
4076
4077/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08004078 * Return true if the specified CPU has any callback. If all_lazy is
4079 * non-NULL, store an indication of whether all callbacks are lazy.
4080 * (If there are no callbacks, all of them are deemed to be lazy.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004081 */
Nicholas Mc Guire82072c42015-05-11 18:12:27 +02004082static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004083{
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08004084 bool al = true;
4085 bool hc = false;
4086 struct rcu_data *rdp;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004087 struct rcu_state *rsp;
4088
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08004089 for_each_rcu_flavor(rsp) {
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07004090 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney69c8d282013-09-03 09:52:20 -07004091 if (!rdp->nxtlist)
4092 continue;
4093 hc = true;
4094 if (rdp->qlen != rdp->qlen_lazy || !all_lazy) {
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08004095 al = false;
Paul E. McKenney69c8d282013-09-03 09:52:20 -07004096 break;
4097 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08004098 }
4099 if (all_lazy)
4100 *all_lazy = al;
4101 return hc;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004102}
4103
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004104/*
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004105 * Helper function for _rcu_barrier() tracing. If tracing is disabled,
4106 * the compiler is expected to optimize this away.
4107 */
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04004108static void _rcu_barrier_trace(struct rcu_state *rsp, const char *s,
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004109 int cpu, unsigned long done)
4110{
4111 trace_rcu_barrier(rsp->name, s, cpu,
4112 atomic_read(&rsp->barrier_cpu_count), done);
4113}
4114
4115/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004116 * RCU callback function for _rcu_barrier(). If we are last, wake
4117 * up the task executing _rcu_barrier().
4118 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07004119static void rcu_barrier_callback(struct rcu_head *rhp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004120{
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07004121 struct rcu_data *rdp = container_of(rhp, struct rcu_data, barrier_head);
4122 struct rcu_state *rsp = rdp->rsp;
4123
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004124 if (atomic_dec_and_test(&rsp->barrier_cpu_count)) {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004125 _rcu_barrier_trace(rsp, "LastCB", -1, rsp->barrier_sequence);
Paul E. McKenney7db74df2012-05-29 03:03:37 -07004126 complete(&rsp->barrier_completion);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004127 } else {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004128 _rcu_barrier_trace(rsp, "CB", -1, rsp->barrier_sequence);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004129 }
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004130}
4131
4132/*
4133 * Called with preemption disabled, and from cross-cpu IRQ context.
4134 */
4135static void rcu_barrier_func(void *type)
4136{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07004137 struct rcu_state *rsp = type;
Christoph Lameterfa07a582014-04-15 12:20:12 -07004138 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004139
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004140 _rcu_barrier_trace(rsp, "IRQ", -1, rsp->barrier_sequence);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07004141 atomic_inc(&rsp->barrier_cpu_count);
Paul E. McKenney06668ef2012-05-28 23:57:46 -07004142 rsp->call(&rdp->barrier_head, rcu_barrier_callback);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004143}
4144
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004145/*
4146 * Orchestrate the specified type of RCU barrier, waiting for all
4147 * RCU callbacks of the specified type to complete.
4148 */
Paul E. McKenney037b64e2012-05-28 23:26:01 -07004149static void _rcu_barrier(struct rcu_state *rsp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004150{
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004151 int cpu;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004152 struct rcu_data *rdp;
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004153 unsigned long s = rcu_seq_snap(&rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004154
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004155 _rcu_barrier_trace(rsp, "Begin", -1, s);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004156
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07004157 /* Take mutex to serialize concurrent rcu_barrier() requests. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07004158 mutex_lock(&rsp->barrier_mutex);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004159
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004160 /* Did someone else do our work for us? */
4161 if (rcu_seq_done(&rsp->barrier_sequence, s)) {
4162 _rcu_barrier_trace(rsp, "EarlyExit", -1, rsp->barrier_sequence);
Paul E. McKenneycf3a9c42012-05-29 14:56:46 -07004163 smp_mb(); /* caller's subsequent code after above check. */
4164 mutex_unlock(&rsp->barrier_mutex);
4165 return;
4166 }
4167
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004168 /* Mark the start of the barrier operation. */
4169 rcu_seq_start(&rsp->barrier_sequence);
4170 _rcu_barrier_trace(rsp, "Inc1", -1, rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004171
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004172 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004173 * Initialize the count to one rather than to zero in order to
4174 * avoid a too-soon return to zero in case of a short grace period
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07004175 * (or preemption of this task). Exclude CPU-hotplug operations
4176 * to ensure that no offline CPU has callbacks queued.
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004177 */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07004178 init_completion(&rsp->barrier_completion);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07004179 atomic_set(&rsp->barrier_cpu_count, 1);
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07004180 get_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004181
4182 /*
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07004183 * Force each CPU with callbacks to register a new callback.
4184 * When that callback is invoked, we will know that all of the
4185 * corresponding CPU's preceding callbacks have been invoked.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004186 */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07004187 for_each_possible_cpu(cpu) {
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01004188 if (!cpu_online(cpu) && !rcu_is_nocb_cpu(cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07004189 continue;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004190 rdp = per_cpu_ptr(rsp->rda, cpu);
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01004191 if (rcu_is_nocb_cpu(cpu)) {
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07004192 if (!rcu_nocb_cpu_needs_barrier(rsp, cpu)) {
4193 _rcu_barrier_trace(rsp, "OfflineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004194 rsp->barrier_sequence);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07004195 } else {
4196 _rcu_barrier_trace(rsp, "OnlineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004197 rsp->barrier_sequence);
Paul E. McKenney41050a02014-12-18 12:31:27 -08004198 smp_mb__before_atomic();
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07004199 atomic_inc(&rsp->barrier_cpu_count);
4200 __call_rcu(&rdp->barrier_head,
4201 rcu_barrier_callback, rsp, cpu, 0);
4202 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08004203 } else if (READ_ONCE(rdp->qlen)) {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004204 _rcu_barrier_trace(rsp, "OnlineQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004205 rsp->barrier_sequence);
Paul E. McKenney037b64e2012-05-28 23:26:01 -07004206 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004207 } else {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07004208 _rcu_barrier_trace(rsp, "OnlineNQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004209 rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004210 }
4211 }
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07004212 put_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004213
4214 /*
4215 * Now that we have an rcu_barrier_callback() callback on each
4216 * CPU, and thus each counted, remove the initial count.
4217 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07004218 if (atomic_dec_and_test(&rsp->barrier_cpu_count))
Paul E. McKenney7db74df2012-05-29 03:03:37 -07004219 complete(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004220
4221 /* Wait for all rcu_barrier_callback() callbacks to be invoked. */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07004222 wait_for_completion(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004223
Paul E. McKenney4f525a52015-06-26 11:20:00 -07004224 /* Mark the end of the barrier operation. */
4225 _rcu_barrier_trace(rsp, "Inc2", -1, rsp->barrier_sequence);
4226 rcu_seq_end(&rsp->barrier_sequence);
4227
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08004228 /* Other rcu_barrier() invocations can now safely proceed. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07004229 mutex_unlock(&rsp->barrier_mutex);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004230}
4231
4232/**
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004233 * rcu_barrier_bh - Wait until all in-flight call_rcu_bh() callbacks complete.
4234 */
4235void rcu_barrier_bh(void)
4236{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07004237 _rcu_barrier(&rcu_bh_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004238}
4239EXPORT_SYMBOL_GPL(rcu_barrier_bh);
4240
4241/**
4242 * rcu_barrier_sched - Wait for in-flight call_rcu_sched() callbacks.
4243 */
4244void rcu_barrier_sched(void)
4245{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07004246 _rcu_barrier(&rcu_sched_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004247}
4248EXPORT_SYMBOL_GPL(rcu_barrier_sched);
4249
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004250/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004251 * Propagate ->qsinitmask bits up the rcu_node tree to account for the
4252 * first CPU in a given leaf rcu_node structure coming online. The caller
4253 * must hold the corresponding leaf rcu_node ->lock with interrrupts
4254 * disabled.
4255 */
4256static void rcu_init_new_rnp(struct rcu_node *rnp_leaf)
4257{
4258 long mask;
4259 struct rcu_node *rnp = rnp_leaf;
4260
4261 for (;;) {
4262 mask = rnp->grpmask;
4263 rnp = rnp->parent;
4264 if (rnp == NULL)
4265 return;
Paul E. McKenney6cf10082015-10-08 15:36:54 -07004266 raw_spin_lock_rcu_node(rnp); /* Interrupts already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004267 rnp->qsmaskinit |= mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08004268 raw_spin_unlock_rcu_node(rnp); /* Interrupts remain disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004269 }
4270}
4271
4272/*
Paul E. McKenney27569622009-08-15 09:53:46 -07004273 * Do boot-time initialization of a CPU's per-CPU RCU data.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004274 */
Paul E. McKenney27569622009-08-15 09:53:46 -07004275static void __init
4276rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004277{
4278 unsigned long flags;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004279 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07004280 struct rcu_node *rnp = rcu_get_root(rsp);
4281
4282 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07004283 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07004284 rdp->grpmask = 1UL << (cpu - rdp->mynode->grplo);
Paul E. McKenney27569622009-08-15 09:53:46 -07004285 rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney29e37d82011-11-17 16:55:56 -08004286 WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07004287 WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
Paul E. McKenney27569622009-08-15 09:53:46 -07004288 rdp->cpu = cpu;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07004289 rdp->rsp = rsp;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07004290 rcu_boot_init_nocb_percpu_data(rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08004291 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07004292}
4293
4294/*
4295 * Initialize a CPU's per-CPU RCU data. Note that only one online or
4296 * offline event can be happening at a given time. Note also that we
4297 * can accept some slop in the rsp->completed access due to the fact
4298 * that this CPU cannot possibly have any RCU callbacks in flight yet.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004299 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04004300static void
Iulia Manda9b671222014-03-11 13:18:22 +02004301rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004302{
4303 unsigned long flags;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004304 unsigned long mask;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004305 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004306 struct rcu_node *rnp = rcu_get_root(rsp);
4307
4308 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07004309 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney37c72e52009-10-14 10:15:55 -07004310 rdp->qlen_last_fqs_check = 0;
4311 rdp->n_force_qs_snap = rsp->n_force_qs;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004312 rdp->blimit = blimit;
Paul E. McKenney39c8d312015-01-20 23:42:38 -08004313 if (!rdp->nxtlist)
4314 init_callback_list(rdp); /* Re-enable callbacks on this CPU. */
Paul E. McKenney29e37d82011-11-17 16:55:56 -08004315 rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Paul E. McKenney23332102013-06-21 12:34:33 -07004316 rcu_sysidle_init_percpu_data(rdp->dynticks);
Paul E. McKenneyc92b1312011-11-23 13:38:58 -08004317 atomic_set(&rdp->dynticks->dynticks,
4318 (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
Boqun Feng67c583a72015-12-29 12:18:47 +08004319 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004320
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004321 /*
4322 * Add CPU to leaf rcu_node pending-online bitmask. Any needed
4323 * propagation up the rcu_node tree will happen at the beginning
4324 * of the next grace period.
4325 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004326 rnp = rdp->mynode;
4327 mask = rdp->grpmask;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02004328 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004329 rnp->qsmaskinitnext |= mask;
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07004330 rnp->expmaskinitnext |= mask;
4331 if (!rdp->beenonline)
4332 WRITE_ONCE(rsp->ncpus, READ_ONCE(rsp->ncpus) + 1);
4333 rdp->beenonline = true; /* We have now been online. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004334 rdp->gpnum = rnp->completed; /* Make CPU later note any new GP. */
4335 rdp->completed = rnp->completed;
Paul E. McKenney5b74c452015-08-06 15:16:57 -07004336 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenneya738eec2015-03-10 14:53:29 -07004337 rdp->rcu_qs_ctr_snap = per_cpu(rcu_qs_ctr, cpu);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07004338 rdp->core_needs_qs = false;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08004339 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuonl"));
Boqun Feng67c583a72015-12-29 12:18:47 +08004340 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004341}
4342
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04004343static void rcu_prepare_cpu(int cpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004344{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004345 struct rcu_state *rsp;
4346
4347 for_each_rcu_flavor(rsp)
Iulia Manda9b671222014-03-11 13:18:22 +02004348 rcu_init_percpu_data(cpu, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004349}
4350
Thomas Gleixner27d50c72016-02-26 18:43:44 +00004351#ifdef CONFIG_HOTPLUG_CPU
4352/*
4353 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
4354 * function. We now remove it from the rcu_node tree's ->qsmaskinit
4355 * bit masks.
Linus Torvalds710d60c2016-03-15 13:50:29 -07004356 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
4357 * function. We now remove it from the rcu_node tree's ->qsmaskinit
4358 * bit masks.
Thomas Gleixner27d50c72016-02-26 18:43:44 +00004359 */
4360static void rcu_cleanup_dying_idle_cpu(int cpu, struct rcu_state *rsp)
4361{
4362 unsigned long flags;
4363 unsigned long mask;
4364 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
4365 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
4366
4367 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU))
4368 return;
4369
4370 /* Remove outgoing CPU from mask in the leaf rcu_node structure. */
4371 mask = rdp->grpmask;
4372 raw_spin_lock_irqsave_rcu_node(rnp, flags); /* Enforce GP memory-order guarantee. */
4373 rnp->qsmaskinitnext &= ~mask;
Linus Torvalds710d60c2016-03-15 13:50:29 -07004374 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00004375}
4376
4377void rcu_report_dead(unsigned int cpu)
4378{
4379 struct rcu_state *rsp;
4380
4381 /* QS for any half-done expedited RCU-sched GP. */
4382 preempt_disable();
4383 rcu_report_exp_rdp(&rcu_sched_state,
4384 this_cpu_ptr(rcu_sched_state.rda), true);
4385 preempt_enable();
4386 for_each_rcu_flavor(rsp)
4387 rcu_cleanup_dying_idle_cpu(cpu, rsp);
4388}
4389#endif
4390
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004391/*
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004392 * Handle CPU online/offline notification events.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004393 */
Paul E. McKenney88428cc52015-01-28 14:42:09 -08004394int rcu_cpu_notify(struct notifier_block *self,
4395 unsigned long action, void *hcpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004396{
4397 long cpu = (long)hcpu;
Uma Sharmae5341652014-03-23 22:32:09 -07004398 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08004399 struct rcu_node *rnp = rdp->mynode;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004400 struct rcu_state *rsp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004401
4402 switch (action) {
4403 case CPU_UP_PREPARE:
4404 case CPU_UP_PREPARE_FROZEN:
Peter Zijlstrad72bce02011-05-30 13:34:51 +02004405 rcu_prepare_cpu(cpu);
4406 rcu_prepare_kthreads(cpu);
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07004407 rcu_spawn_all_nocb_kthreads(cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08004408 break;
4409 case CPU_ONLINE:
Paul E. McKenney0f962a52011-04-14 12:13:53 -07004410 case CPU_DOWN_FAILED:
Paul E. McKenney338b0f72015-09-03 00:45:02 -07004411 sync_sched_exp_online_cleanup(cpu);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00004412 rcu_boost_kthread_setaffinity(rnp, -1);
Paul E. McKenney0f962a52011-04-14 12:13:53 -07004413 break;
4414 case CPU_DOWN_PREPARE:
Paul E. McKenney34ed62462013-01-07 13:37:42 -08004415 rcu_boost_kthread_setaffinity(rnp, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004416 break;
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004417 case CPU_DYING:
4418 case CPU_DYING_FROZEN:
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004419 for_each_rcu_flavor(rsp)
4420 rcu_cleanup_dying_cpu(rsp);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07004421 break;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004422 case CPU_DEAD:
4423 case CPU_DEAD_FROZEN:
4424 case CPU_UP_CANCELED:
4425 case CPU_UP_CANCELED_FROZEN:
Paul E. McKenney776d6802014-10-23 10:50:41 -07004426 for_each_rcu_flavor(rsp) {
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004427 rcu_cleanup_dead_cpu(cpu, rsp);
Paul E. McKenney776d6802014-10-23 10:50:41 -07004428 do_nocb_deferred_wakeup(per_cpu_ptr(rsp->rda, cpu));
4429 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004430 break;
4431 default:
4432 break;
4433 }
Paul E. McKenney34ed62462013-01-07 13:37:42 -08004434 return NOTIFY_OK;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004435}
4436
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004437static int rcu_pm_notify(struct notifier_block *self,
4438 unsigned long action, void *hcpu)
4439{
4440 switch (action) {
4441 case PM_HIBERNATION_PREPARE:
4442 case PM_SUSPEND_PREPARE:
4443 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
Paul E. McKenney5afff482015-02-18 16:39:09 -08004444 rcu_expedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004445 break;
4446 case PM_POST_HIBERNATION:
4447 case PM_POST_SUSPEND:
Paul E. McKenney5afff482015-02-18 16:39:09 -08004448 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
4449 rcu_unexpedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004450 break;
4451 default:
4452 break;
4453 }
4454 return NOTIFY_OK;
4455}
4456
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004457/*
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07004458 * Spawn the kthreads that handle each RCU flavor's grace periods.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004459 */
4460static int __init rcu_spawn_gp_kthread(void)
4461{
4462 unsigned long flags;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08004463 int kthread_prio_in = kthread_prio;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004464 struct rcu_node *rnp;
4465 struct rcu_state *rsp;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08004466 struct sched_param sp;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004467 struct task_struct *t;
4468
Paul E. McKenneya94844b2014-12-12 07:37:48 -08004469 /* Force priority into range. */
4470 if (IS_ENABLED(CONFIG_RCU_BOOST) && kthread_prio < 1)
4471 kthread_prio = 1;
4472 else if (kthread_prio < 0)
4473 kthread_prio = 0;
4474 else if (kthread_prio > 99)
4475 kthread_prio = 99;
4476 if (kthread_prio != kthread_prio_in)
4477 pr_alert("rcu_spawn_gp_kthread(): Limited prio to %d from %d\n",
4478 kthread_prio, kthread_prio_in);
4479
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07004480 rcu_scheduler_fully_active = 1;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004481 for_each_rcu_flavor(rsp) {
Paul E. McKenneya94844b2014-12-12 07:37:48 -08004482 t = kthread_create(rcu_gp_kthread, rsp, "%s", rsp->name);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004483 BUG_ON(IS_ERR(t));
4484 rnp = rcu_get_root(rsp);
Paul E. McKenney6cf10082015-10-08 15:36:54 -07004485 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004486 rsp->gp_kthread = t;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08004487 if (kthread_prio) {
4488 sp.sched_priority = kthread_prio;
4489 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
4490 }
Boqun Feng67c583a72015-12-29 12:18:47 +08004491 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Peter Zijlstrae11f1332015-11-04 08:22:05 -08004492 wake_up_process(t);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004493 }
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07004494 rcu_spawn_nocb_kthreads();
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07004495 rcu_spawn_boost_kthreads();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07004496 return 0;
4497}
4498early_initcall(rcu_spawn_gp_kthread);
4499
4500/*
Paul E. McKenneybbad9372010-04-02 16:17:17 -07004501 * This function is invoked towards the end of the scheduler's initialization
4502 * process. Before this is called, the idle task might contain
4503 * RCU read-side critical sections (during which time, this idle
4504 * task is booting the system). After this function is called, the
4505 * idle tasks are prohibited from containing RCU read-side critical
4506 * sections. This function also enables RCU lockdep checking.
4507 */
4508void rcu_scheduler_starting(void)
4509{
4510 WARN_ON(num_online_cpus() != 1);
4511 WARN_ON(nr_context_switches() > 0);
4512 rcu_scheduler_active = 1;
4513}
4514
4515/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004516 * Compute the per-level fanout, either using the exact fanout specified
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004517 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004518 */
Alexander Gordeev199977b2015-06-03 08:18:29 +02004519static void __init rcu_init_levelspread(int *levelspread, const int *levelcnt)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004520{
4521 int i;
4522
Paul E. McKenney7fa27002015-04-20 10:27:15 -07004523 if (rcu_fanout_exact) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004524 levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
Paul E. McKenney66292402015-01-19 19:16:38 -08004525 for (i = rcu_num_lvls - 2; i >= 0; i--)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004526 levelspread[i] = RCU_FANOUT;
Paul E. McKenney66292402015-01-19 19:16:38 -08004527 } else {
4528 int ccur;
4529 int cprv;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004530
Paul E. McKenney66292402015-01-19 19:16:38 -08004531 cprv = nr_cpu_ids;
4532 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004533 ccur = levelcnt[i];
4534 levelspread[i] = (cprv + ccur - 1) / ccur;
Paul E. McKenney66292402015-01-19 19:16:38 -08004535 cprv = ccur;
4536 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004537 }
4538}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004539
4540/*
4541 * Helper function for rcu_init() that initializes one rcu_state structure.
4542 */
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004543static void __init rcu_init_one(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004544{
Alexander Gordeevcb007102015-06-03 08:18:30 +02004545 static const char * const buf[] = RCU_NODE_NAME_INIT;
4546 static const char * const fqs[] = RCU_FQS_NAME_INIT;
Paul E. McKenney3dc5dbe2015-09-26 14:51:24 -07004547 static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
4548 static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004549 static u8 fl_mask = 0x1;
Alexander Gordeev199977b2015-06-03 08:18:29 +02004550
4551 int levelcnt[RCU_NUM_LVLS]; /* # nodes in each level. */
4552 int levelspread[RCU_NUM_LVLS]; /* kids/node in each level. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004553 int cpustride = 1;
4554 int i;
4555 int j;
4556 struct rcu_node *rnp;
4557
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004558 BUILD_BUG_ON(RCU_NUM_LVLS > ARRAY_SIZE(buf)); /* Fix buf[] init! */
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004559
Paul E. McKenney3eaaaf6c2015-03-09 16:51:17 -07004560 /* Silence gcc 4.8 false positive about array index out of range. */
4561 if (rcu_num_lvls <= 0 || rcu_num_lvls > RCU_NUM_LVLS)
4562 panic("rcu_init_one: rcu_num_lvls out of range");
Paul E. McKenney49305212012-11-29 13:49:00 -08004563
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004564 /* Initialize the level-tracking arrays. */
4565
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004566 for (i = 0; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004567 levelcnt[i] = num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004568 for (i = 1; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004569 rsp->level[i] = rsp->level[i - 1] + levelcnt[i - 1];
4570 rcu_init_levelspread(levelspread, levelcnt);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004571 rsp->flavor_mask = fl_mask;
4572 fl_mask <<= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004573
4574 /* Initialize the elements themselves, starting from the leaves. */
4575
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004576 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004577 cpustride *= levelspread[i];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004578 rnp = rsp->level[i];
Alexander Gordeev199977b2015-06-03 08:18:29 +02004579 for (j = 0; j < levelcnt[i]; j++, rnp++) {
Boqun Feng67c583a72015-12-29 12:18:47 +08004580 raw_spin_lock_init(&ACCESS_PRIVATE(rnp, lock));
4581 lockdep_set_class_and_name(&ACCESS_PRIVATE(rnp, lock),
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004582 &rcu_node_class[i], buf[i]);
Paul E. McKenney394f2762012-06-26 17:00:35 -07004583 raw_spin_lock_init(&rnp->fqslock);
4584 lockdep_set_class_and_name(&rnp->fqslock,
4585 &rcu_fqs_class[i], fqs[i]);
Paul E. McKenney25d30cf2012-07-11 05:23:18 -07004586 rnp->gpnum = rsp->gpnum;
4587 rnp->completed = rsp->completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004588 rnp->qsmask = 0;
4589 rnp->qsmaskinit = 0;
4590 rnp->grplo = j * cpustride;
4591 rnp->grphi = (j + 1) * cpustride - 1;
Himangi Saraogi595f3902014-03-18 22:52:26 +05304592 if (rnp->grphi >= nr_cpu_ids)
4593 rnp->grphi = nr_cpu_ids - 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004594 if (i == 0) {
4595 rnp->grpnum = 0;
4596 rnp->grpmask = 0;
4597 rnp->parent = NULL;
4598 } else {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004599 rnp->grpnum = j % levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004600 rnp->grpmask = 1UL << rnp->grpnum;
4601 rnp->parent = rsp->level[i - 1] +
Alexander Gordeev199977b2015-06-03 08:18:29 +02004602 j / levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004603 }
4604 rnp->level = i;
Paul E. McKenney12f5f522010-11-29 21:56:39 -08004605 INIT_LIST_HEAD(&rnp->blkd_tasks);
Paul E. McKenneydae6e642013-02-10 20:48:58 -08004606 rcu_init_one_nocb(rnp);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004607 init_waitqueue_head(&rnp->exp_wq[0]);
4608 init_waitqueue_head(&rnp->exp_wq[1]);
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07004609 init_waitqueue_head(&rnp->exp_wq[2]);
4610 init_waitqueue_head(&rnp->exp_wq[3]);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004611 spin_lock_init(&rnp->exp_lock);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004612 }
4613 }
Lai Jiangshan0c340292010-03-28 11:12:30 +08004614
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01004615 init_swait_queue_head(&rsp->gp_wq);
4616 init_swait_queue_head(&rsp->expedited_wq);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004617 rnp = rsp->level[rcu_num_lvls - 1];
Lai Jiangshan0c340292010-03-28 11:12:30 +08004618 for_each_possible_cpu(i) {
Paul E. McKenney4a90a062010-04-14 16:48:11 -07004619 while (i > rnp->grphi)
Lai Jiangshan0c340292010-03-28 11:12:30 +08004620 rnp++;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004621 per_cpu_ptr(rsp->rda, i)->mynode = rnp;
Lai Jiangshan0c340292010-03-28 11:12:30 +08004622 rcu_boot_init_percpu_data(i, rsp);
4623 }
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004624 list_add(&rsp->flavors, &rcu_struct_flavors);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004625}
4626
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004627/*
4628 * Compute the rcu_node tree geometry from kernel parameters. This cannot
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004629 * replace the definitions in tree.h because those are needed to size
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004630 * the ->node array in the rcu_state structure.
4631 */
4632static void __init rcu_init_geometry(void)
4633{
Paul E. McKenney026ad282013-04-03 22:14:11 -07004634 ulong d;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004635 int i;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004636 int rcu_capacity[RCU_NUM_LVLS];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004637
Paul E. McKenney026ad282013-04-03 22:14:11 -07004638 /*
4639 * Initialize any unspecified boot parameters.
4640 * The default values of jiffies_till_first_fqs and
4641 * jiffies_till_next_fqs are set to the RCU_JIFFIES_TILL_FORCE_QS
4642 * value, which is a function of HZ, then adding one for each
4643 * RCU_JIFFIES_FQS_DIV CPUs that might be on the system.
4644 */
4645 d = RCU_JIFFIES_TILL_FORCE_QS + nr_cpu_ids / RCU_JIFFIES_FQS_DIV;
4646 if (jiffies_till_first_fqs == ULONG_MAX)
4647 jiffies_till_first_fqs = d;
4648 if (jiffies_till_next_fqs == ULONG_MAX)
4649 jiffies_till_next_fqs = d;
4650
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004651 /* If the compile-time values are accurate, just leave. */
Paul E. McKenney47d631a2015-04-21 09:12:13 -07004652 if (rcu_fanout_leaf == RCU_FANOUT_LEAF &&
Paul E. McKenneyb17c7032012-09-06 15:38:02 -07004653 nr_cpu_ids == NR_CPUS)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004654 return;
Paul E. McKenney39479092013-10-09 15:20:33 -07004655 pr_info("RCU: Adjusting geometry for rcu_fanout_leaf=%d, nr_cpu_ids=%d\n",
4656 rcu_fanout_leaf, nr_cpu_ids);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004657
4658 /*
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004659 * The boot-time rcu_fanout_leaf parameter must be at least two
4660 * and cannot exceed the number of bits in the rcu_node masks.
4661 * Complain and fall back to the compile-time values if this
4662 * limit is exceeded.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004663 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004664 if (rcu_fanout_leaf < 2 ||
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004665 rcu_fanout_leaf > sizeof(unsigned long) * 8) {
Paul E. McKenney13bd64942015-06-04 10:06:01 -07004666 rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004667 WARN_ON(1);
4668 return;
4669 }
4670
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004671 /*
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004672 * Compute number of nodes that can be handled an rcu_node tree
Alexander Gordeev96181382015-06-03 08:18:26 +02004673 * with the given number of levels.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004674 */
Alexander Gordeev96181382015-06-03 08:18:26 +02004675 rcu_capacity[0] = rcu_fanout_leaf;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004676 for (i = 1; i < RCU_NUM_LVLS; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004677 rcu_capacity[i] = rcu_capacity[i - 1] * RCU_FANOUT;
4678
4679 /*
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004680 * The tree must be able to accommodate the configured number of CPUs.
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004681 * If this limit is exceeded, fall back to the compile-time values.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004682 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004683 if (nr_cpu_ids > rcu_capacity[RCU_NUM_LVLS - 1]) {
4684 rcu_fanout_leaf = RCU_FANOUT_LEAF;
4685 WARN_ON(1);
4686 return;
4687 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004688
Alexander Gordeev679f9852015-06-03 08:18:25 +02004689 /* Calculate the number of levels in the tree. */
Alexander Gordeev96181382015-06-03 08:18:26 +02004690 for (i = 0; nr_cpu_ids > rcu_capacity[i]; i++) {
Alexander Gordeev679f9852015-06-03 08:18:25 +02004691 }
Alexander Gordeev96181382015-06-03 08:18:26 +02004692 rcu_num_lvls = i + 1;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004693
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004694 /* Calculate the number of rcu_nodes at each level of the tree. */
Alexander Gordeev679f9852015-06-03 08:18:25 +02004695 for (i = 0; i < rcu_num_lvls; i++) {
Alexander Gordeev96181382015-06-03 08:18:26 +02004696 int cap = rcu_capacity[(rcu_num_lvls - 1) - i];
Alexander Gordeev679f9852015-06-03 08:18:25 +02004697 num_rcu_lvl[i] = DIV_ROUND_UP(nr_cpu_ids, cap);
4698 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004699
4700 /* Calculate the total number of rcu_node structures. */
4701 rcu_num_nodes = 0;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004702 for (i = 0; i < rcu_num_lvls; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004703 rcu_num_nodes += num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004704}
4705
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004706/*
4707 * Dump out the structure of the rcu_node combining tree associated
4708 * with the rcu_state structure referenced by rsp.
4709 */
4710static void __init rcu_dump_rcu_node_tree(struct rcu_state *rsp)
4711{
4712 int level = 0;
4713 struct rcu_node *rnp;
4714
4715 pr_info("rcu_node tree layout dump\n");
4716 pr_info(" ");
4717 rcu_for_each_node_breadth_first(rsp, rnp) {
4718 if (rnp->level != level) {
4719 pr_cont("\n");
4720 pr_info(" ");
4721 level = rnp->level;
4722 }
4723 pr_cont("%d:%d ^%d ", rnp->grplo, rnp->grphi, rnp->grpnum);
4724 }
4725 pr_cont("\n");
4726}
4727
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004728void __init rcu_init(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004729{
Paul E. McKenney017c4262010-01-14 16:10:58 -08004730 int cpu;
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004731
Paul E. McKenney47627672015-01-19 21:10:21 -08004732 rcu_early_boot_tests();
4733
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004734 rcu_bootup_announce();
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004735 rcu_init_geometry();
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004736 rcu_init_one(&rcu_bh_state);
4737 rcu_init_one(&rcu_sched_state);
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004738 if (dump_tree)
4739 rcu_dump_rcu_node_tree(&rcu_sched_state);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004740 __rcu_init_preempt();
Jiang Fangb5b39362013-02-02 14:13:42 -08004741 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004742
4743 /*
4744 * We don't need protection against CPU-hotplug here because
4745 * this is called early in boot, before either interrupts
4746 * or the scheduler are operational.
4747 */
4748 cpu_notifier(rcu_cpu_notify, 0);
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004749 pm_notifier(rcu_pm_notify, 0);
Paul E. McKenney017c4262010-01-14 16:10:58 -08004750 for_each_online_cpu(cpu)
4751 rcu_cpu_notify(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004752}
4753
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004754#include "tree_plugin.h"