blob: c844b6142a860cbb6aab0aea5a227bec1c4b6e9c [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. McKenney3549c2b2016-04-15 16:35:29 -0700162static void sync_sched_exp_online_cleanup(int cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800163
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800164/* rcuc/rcub kthread realtime priority */
Paul E. McKenney26730f52015-04-21 09:22:14 -0700165#ifdef CONFIG_RCU_KTHREAD_PRIO
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800166static int kthread_prio = CONFIG_RCU_KTHREAD_PRIO;
Paul E. McKenney26730f52015-04-21 09:22:14 -0700167#else /* #ifdef CONFIG_RCU_KTHREAD_PRIO */
168static int kthread_prio = IS_ENABLED(CONFIG_RCU_BOOST) ? 1 : 0;
169#endif /* #else #ifdef CONFIG_RCU_KTHREAD_PRIO */
Paul E. McKenneya94844b2014-12-12 07:37:48 -0800170module_param(kthread_prio, int, 0644);
171
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700172/* Delay in jiffies for grace-period initialization delays, debug only. */
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700173
174#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT
175static int gp_preinit_delay = CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT_DELAY;
176module_param(gp_preinit_delay, int, 0644);
177#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
178static const int gp_preinit_delay;
179#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_PREINIT */
180
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700181#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT
182static int gp_init_delay = CONFIG_RCU_TORTURE_TEST_SLOW_INIT_DELAY;
Paul E. McKenney37745d22015-01-22 18:24:08 -0800183module_param(gp_init_delay, int, 0644);
Paul E. McKenney8d7dc922015-04-14 19:33:59 -0700184#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
185static const int gp_init_delay;
186#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_INIT */
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700187
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -0700188#ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP
189static int gp_cleanup_delay = CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP_DELAY;
190module_param(gp_cleanup_delay, int, 0644);
191#else /* #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
192static const int gp_cleanup_delay;
193#endif /* #else #ifdef CONFIG_RCU_TORTURE_TEST_SLOW_CLEANUP */
194
Paul E. McKenneyeab128e2015-04-15 12:08:22 -0700195/*
196 * Number of grace periods between delays, normalized by the duration of
197 * the delay. The longer the the delay, the more the grace periods between
198 * each delay. The reason for this normalization is that it means that,
199 * for non-zero delays, the overall slowdown of grace periods is constant
200 * regardless of the duration of the delay. This arrangement balances
201 * the need for long delays to increase some race probabilities with the
202 * need for fast grace periods to increase other race probabilities.
203 */
204#define PER_RCU_NODE_PERIOD 3 /* Number of grace periods between delays. */
Paul E. McKenney37745d22015-01-22 18:24:08 -0800205
Paul E. McKenneya26ac242011-01-12 14:10:23 -0800206/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700207 * Track the rcutorture test sequence number and the update version
208 * number within a given test. The rcutorture_testseq is incremented
209 * on every rcutorture module load and unload, so has an odd value
210 * when a test is running. The rcutorture_vernum is set to zero
211 * when rcutorture starts and is incremented on each rcutorture update.
212 * These variables enable correlating rcutorture output with the
213 * RCU tracing information.
214 */
215unsigned long rcutorture_testseq;
216unsigned long rcutorture_vernum;
217
218/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800219 * Compute the mask of online CPUs for the specified rcu_node structure.
220 * This will not be stable unless the rcu_node structure's ->lock is
221 * held, but the bit corresponding to the current CPU will be stable
222 * in most contexts.
223 */
224unsigned long rcu_rnp_online_cpus(struct rcu_node *rnp)
225{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800226 return READ_ONCE(rnp->qsmaskinitnext);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800227}
228
229/*
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800230 * Return true if an RCU grace period is in progress. The READ_ONCE()s
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700231 * permit this function to be invoked without holding the root rcu_node
232 * structure's ->lock, but of course results can be subject to change.
233 */
234static int rcu_gp_in_progress(struct rcu_state *rsp)
235{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800236 return READ_ONCE(rsp->completed) != READ_ONCE(rsp->gpnum);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700237}
238
239/*
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700240 * Note a quiescent state. Because we do not need to know
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100241 * how many quiescent states passed, just if there was at least
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700242 * one since the start of the grace period, this just sets a flag.
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700243 * The caller must have disabled preemption.
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100244 */
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700245void rcu_sched_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100246{
Paul E. McKenneyfecbf6f2015-09-28 18:19:24 -0700247 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.s))
248 return;
249 trace_rcu_grace_period(TPS("rcu_sched"),
250 __this_cpu_read(rcu_sched_data.gpnum),
251 TPS("cpuqs"));
252 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.norm, false);
253 if (!__this_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))
254 return;
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700255 __this_cpu_write(rcu_sched_data.cpu_no_qs.b.exp, false);
256 rcu_report_exp_rdp(&rcu_sched_state,
257 this_cpu_ptr(&rcu_sched_data), true);
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100258}
259
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700260void rcu_bh_qs(void)
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100261{
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700262 if (__this_cpu_read(rcu_bh_data.cpu_no_qs.s)) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700263 trace_rcu_grace_period(TPS("rcu_bh"),
264 __this_cpu_read(rcu_bh_data.gpnum),
265 TPS("cpuqs"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700266 __this_cpu_write(rcu_bh_data.cpu_no_qs.b.norm, false);
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700267 }
Ingo Molnarb1f77b02009-03-13 03:20:49 +0100268}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100269
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700270static DEFINE_PER_CPU(int, rcu_sched_qs_mask);
271
272static DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks) = {
273 .dynticks_nesting = DYNTICK_TASK_EXIT_IDLE,
274 .dynticks = ATOMIC_INIT(1),
275#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
276 .dynticks_idle_nesting = DYNTICK_TASK_NEST_VALUE,
277 .dynticks_idle = ATOMIC_INIT(1),
278#endif /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
279};
280
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800281DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, rcu_qs_ctr);
282EXPORT_PER_CPU_SYMBOL_GPL(rcu_qs_ctr);
283
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700284/*
285 * Let the RCU core know that this CPU has gone through the scheduler,
286 * which is a quiescent state. This is called when the need for a
287 * quiescent state is urgent, so we burn an atomic operation and full
288 * memory barriers to let the RCU core know about it, regardless of what
289 * this CPU might (or might not) do in the near future.
290 *
291 * We inform the RCU core by emulating a zero-duration dyntick-idle
292 * period, which we in turn do by incrementing the ->dynticks counter
293 * by two.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700294 *
295 * The caller must have disabled interrupts.
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700296 */
297static void rcu_momentary_dyntick_idle(void)
298{
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700299 struct rcu_data *rdp;
300 struct rcu_dynticks *rdtp;
301 int resched_mask;
302 struct rcu_state *rsp;
303
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700304 /*
305 * Yes, we can lose flag-setting operations. This is OK, because
306 * the flag will be set again after some delay.
307 */
308 resched_mask = raw_cpu_read(rcu_sched_qs_mask);
309 raw_cpu_write(rcu_sched_qs_mask, 0);
310
311 /* Find the flavor that needs a quiescent state. */
312 for_each_rcu_flavor(rsp) {
313 rdp = raw_cpu_ptr(rsp->rda);
314 if (!(resched_mask & rsp->flavor_mask))
315 continue;
316 smp_mb(); /* rcu_sched_qs_mask before cond_resched_completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800317 if (READ_ONCE(rdp->mynode->completed) !=
318 READ_ONCE(rdp->cond_resched_completed))
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700319 continue;
320
321 /*
322 * Pretend to be momentarily idle for the quiescent state.
323 * This allows the grace-period kthread to record the
324 * quiescent state, with no need for this CPU to do anything
325 * further.
326 */
327 rdtp = this_cpu_ptr(&rcu_dynticks);
328 smp_mb__before_atomic(); /* Earlier stuff before QS. */
329 atomic_add(2, &rdtp->dynticks); /* QS. */
330 smp_mb__after_atomic(); /* Later stuff after QS. */
331 break;
332 }
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700333}
334
Paul E. McKenney25502a62010-04-01 17:37:01 -0700335/*
336 * Note a context switch. This is a quiescent state for RCU-sched,
337 * and requires special handling for preemptible RCU.
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700338 * The caller must have disabled interrupts.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700339 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700340void rcu_note_context_switch(void)
Paul E. McKenney25502a62010-04-01 17:37:01 -0700341{
Boqun Fengbb73c522015-07-30 16:55:38 -0700342 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400343 trace_rcu_utilization(TPS("Start context switch"));
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700344 rcu_sched_qs();
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700345 rcu_preempt_note_context_switch();
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700346 if (unlikely(raw_cpu_read(rcu_sched_qs_mask)))
347 rcu_momentary_dyntick_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400348 trace_rcu_utilization(TPS("End context switch"));
Boqun Fengbb73c522015-07-30 16:55:38 -0700349 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney25502a62010-04-01 17:37:01 -0700350}
Gleb Natapov29ce8312011-05-04 16:31:03 +0300351EXPORT_SYMBOL_GPL(rcu_note_context_switch);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700352
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800353/*
Paul E. McKenney1925d192015-01-18 17:45:05 -0800354 * Register a quiescent state for all RCU flavors. If there is an
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800355 * emergency, invoke rcu_momentary_dyntick_idle() to do a heavy-weight
356 * dyntick-idle quiescent state visible to other CPUs (but only for those
Paul E. McKenney1925d192015-01-18 17:45:05 -0800357 * RCU flavors in desperate need of a quiescent state, which will normally
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800358 * be none of them). Either way, do a lightweight quiescent state for
359 * all RCU flavors.
Boqun Fengbb73c522015-07-30 16:55:38 -0700360 *
361 * The barrier() calls are redundant in the common case when this is
362 * called externally, but just in case this is called from within this
363 * file.
364 *
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800365 */
366void rcu_all_qs(void)
367{
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700368 unsigned long flags;
369
Boqun Fengbb73c522015-07-30 16:55:38 -0700370 barrier(); /* Avoid RCU read-side critical sections leaking down. */
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700371 if (unlikely(raw_cpu_read(rcu_sched_qs_mask))) {
372 local_irq_save(flags);
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800373 rcu_momentary_dyntick_idle();
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700374 local_irq_restore(flags);
375 }
Paul E. McKenneya1e12242016-01-13 13:57:54 -0800376 if (unlikely(raw_cpu_read(rcu_sched_data.cpu_no_qs.b.exp))) {
377 /*
378 * Yes, we just checked a per-CPU variable with preemption
379 * enabled, so we might be migrated to some other CPU at
380 * this point. That is OK because in that case, the
381 * migration will supply the needed quiescent state.
382 * We might end up needlessly disabling preemption and
383 * invoking rcu_sched_qs() on the destination CPU, but
384 * the probability and cost are both quite low, so this
385 * should not be a problem in practice.
386 */
387 preempt_disable();
388 rcu_sched_qs();
389 preempt_enable();
390 }
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800391 this_cpu_inc(rcu_qs_ctr);
Boqun Fengbb73c522015-07-30 16:55:38 -0700392 barrier(); /* Avoid RCU read-side critical sections leaking up. */
Paul E. McKenney5cd37192014-12-13 20:32:04 -0800393}
394EXPORT_SYMBOL_GPL(rcu_all_qs);
395
Eric Dumazet878d7432012-10-18 04:55:36 -0700396static long blimit = 10; /* Maximum callbacks per rcu_do_batch. */
397static long qhimark = 10000; /* If this many pending, ignore blimit. */
398static long qlowmark = 100; /* Once only this many pending, use blimit. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100399
Eric Dumazet878d7432012-10-18 04:55:36 -0700400module_param(blimit, long, 0444);
401module_param(qhimark, long, 0444);
402module_param(qlowmark, long, 0444);
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700403
Paul E. McKenney026ad282013-04-03 22:14:11 -0700404static ulong jiffies_till_first_fqs = ULONG_MAX;
405static ulong jiffies_till_next_fqs = ULONG_MAX;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800406static bool rcu_kick_kthreads;
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700407
408module_param(jiffies_till_first_fqs, ulong, 0644);
409module_param(jiffies_till_next_fqs, ulong, 0644);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -0800410module_param(rcu_kick_kthreads, bool, 0644);
Paul E. McKenneyd40011f2012-06-26 20:45:57 -0700411
Paul E. McKenney4a81e832014-06-20 16:49:01 -0700412/*
413 * How long the grace period must be before we start recruiting
414 * quiescent-state help from rcu_note_context_switch().
415 */
416static ulong jiffies_till_sched_qs = HZ / 20;
417module_param(jiffies_till_sched_qs, ulong, 0644);
418
Paul E. McKenney48a76392014-03-11 13:02:16 -0700419static bool rcu_start_gp_advanced(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenney910ee452012-12-31 02:24:21 -0800420 struct rcu_data *rdp);
Paul E. McKenney217af2a2013-06-21 15:39:06 -0700421static void force_qs_rnp(struct rcu_state *rsp,
422 int (*f)(struct rcu_data *rsp, bool *isidle,
423 unsigned long *maxj),
424 bool *isidle, unsigned long *maxj);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700425static void force_quiescent_state(struct rcu_state *rsp);
Paul E. McKenneye3950ec2014-10-21 08:03:57 -0700426static int rcu_pending(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100427
428/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800429 * Return the number of RCU batches started thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100430 */
Paul E. McKenney917963d2014-11-21 17:10:16 -0800431unsigned long rcu_batches_started(void)
432{
433 return rcu_state_p->gpnum;
434}
435EXPORT_SYMBOL_GPL(rcu_batches_started);
436
437/*
438 * Return the number of RCU-sched batches started thus far for debug & stats.
439 */
440unsigned long rcu_batches_started_sched(void)
441{
442 return rcu_sched_state.gpnum;
443}
444EXPORT_SYMBOL_GPL(rcu_batches_started_sched);
445
446/*
447 * Return the number of RCU BH batches started thus far for debug & stats.
448 */
449unsigned long rcu_batches_started_bh(void)
450{
451 return rcu_bh_state.gpnum;
452}
453EXPORT_SYMBOL_GPL(rcu_batches_started_bh);
454
455/*
456 * Return the number of RCU batches completed thus far for debug & stats.
457 */
458unsigned long rcu_batches_completed(void)
459{
460 return rcu_state_p->completed;
461}
462EXPORT_SYMBOL_GPL(rcu_batches_completed);
463
464/*
465 * Return the number of RCU-sched batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100466 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800467unsigned long rcu_batches_completed_sched(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100468{
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700469 return rcu_sched_state.completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100470}
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700471EXPORT_SYMBOL_GPL(rcu_batches_completed_sched);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100472
473/*
Paul E. McKenney917963d2014-11-21 17:10:16 -0800474 * Return the number of RCU BH batches completed thus far for debug & stats.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100475 */
Paul E. McKenney9733e4f2014-11-21 12:49:13 -0800476unsigned long rcu_batches_completed_bh(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100477{
478 return rcu_bh_state.completed;
479}
480EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
481
482/*
Paul E. McKenney291783b2016-01-12 13:43:30 -0800483 * Return the number of RCU expedited batches completed thus far for
484 * debug & stats. Odd numbers mean that a batch is in progress, even
485 * numbers mean idle. The value returned will thus be roughly double
486 * the cumulative batches since boot.
487 */
488unsigned long rcu_exp_batches_completed(void)
489{
490 return rcu_state_p->expedited_sequence;
491}
492EXPORT_SYMBOL_GPL(rcu_exp_batches_completed);
493
494/*
495 * Return the number of RCU-sched expedited batches completed thus far
496 * for debug & stats. Similar to rcu_exp_batches_completed().
497 */
498unsigned long rcu_exp_batches_completed_sched(void)
499{
500 return rcu_sched_state.expedited_sequence;
501}
502EXPORT_SYMBOL_GPL(rcu_exp_batches_completed_sched);
503
504/*
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200505 * Force a quiescent state.
506 */
507void rcu_force_quiescent_state(void)
508{
Uma Sharmae5341652014-03-23 22:32:09 -0700509 force_quiescent_state(rcu_state_p);
Andreea-Cristina Bernata381d752014-03-19 11:18:31 +0200510}
511EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
512
513/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800514 * Force a quiescent state for RCU BH.
515 */
516void rcu_bh_force_quiescent_state(void)
517{
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700518 force_quiescent_state(&rcu_bh_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800519}
520EXPORT_SYMBOL_GPL(rcu_bh_force_quiescent_state);
521
522/*
Paul E. McKenneye7580f32015-02-24 14:23:39 -0800523 * Force a quiescent state for RCU-sched.
524 */
525void rcu_sched_force_quiescent_state(void)
526{
527 force_quiescent_state(&rcu_sched_state);
528}
529EXPORT_SYMBOL_GPL(rcu_sched_force_quiescent_state);
530
531/*
Paul E. McKenneyafea2272014-03-12 07:10:41 -0700532 * Show the state of the grace-period kthreads.
533 */
534void show_rcu_gp_kthreads(void)
535{
536 struct rcu_state *rsp;
537
538 for_each_rcu_flavor(rsp) {
539 pr_info("%s: wait state: %d ->state: %#lx\n",
540 rsp->name, rsp->gp_state, rsp->gp_kthread->state);
541 /* sched_show_task(rsp->gp_kthread); */
542 }
543}
544EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
545
546/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700547 * Record the number of times rcutorture tests have been initiated and
548 * terminated. This information allows the debugfs tracing stats to be
549 * correlated to the rcutorture messages, even when the rcutorture module
550 * is being repeatedly loaded and unloaded. In other words, we cannot
551 * store this state in rcutorture itself.
552 */
553void rcutorture_record_test_transition(void)
554{
555 rcutorture_testseq++;
556 rcutorture_vernum = 0;
557}
558EXPORT_SYMBOL_GPL(rcutorture_record_test_transition);
559
560/*
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800561 * Send along grace-period-related data for rcutorture diagnostics.
562 */
563void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
564 unsigned long *gpnum, unsigned long *completed)
565{
566 struct rcu_state *rsp = NULL;
567
568 switch (test_type) {
569 case RCU_FLAVOR:
Uma Sharmae5341652014-03-23 22:32:09 -0700570 rsp = rcu_state_p;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800571 break;
572 case RCU_BH_FLAVOR:
573 rsp = &rcu_bh_state;
574 break;
575 case RCU_SCHED_FLAVOR:
576 rsp = &rcu_sched_state;
577 break;
578 default:
579 break;
580 }
581 if (rsp != NULL) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800582 *flags = READ_ONCE(rsp->gp_flags);
583 *gpnum = READ_ONCE(rsp->gpnum);
584 *completed = READ_ONCE(rsp->completed);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800585 return;
586 }
587 *flags = 0;
588 *gpnum = 0;
589 *completed = 0;
590}
591EXPORT_SYMBOL_GPL(rcutorture_get_gp_data);
592
593/*
Paul E. McKenney4a298652011-04-03 21:33:51 -0700594 * Record the number of writer passes through the current rcutorture test.
595 * This is also used to correlate debugfs tracing stats with the rcutorture
596 * messages.
597 */
598void rcutorture_record_progress(unsigned long vernum)
599{
600 rcutorture_vernum++;
601}
602EXPORT_SYMBOL_GPL(rcutorture_record_progress);
603
604/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100605 * Does the CPU have callbacks ready to be invoked?
606 */
607static int
608cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
609{
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700610 return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL] &&
611 rdp->nxttail[RCU_DONE_TAIL] != NULL;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100612}
613
614/*
Paul E. McKenney365187f2014-03-10 10:55:52 -0700615 * Return the root node of the specified rcu_state structure.
616 */
617static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
618{
619 return &rsp->node[0];
620}
621
622/*
623 * Is there any need for future grace periods?
624 * Interrupts must be disabled. If the caller does not hold the root
625 * rnp_node structure's ->lock, the results are advisory only.
626 */
627static int rcu_future_needs_gp(struct rcu_state *rsp)
628{
629 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800630 int idx = (READ_ONCE(rnp->completed) + 1) & 0x1;
Paul E. McKenney365187f2014-03-10 10:55:52 -0700631 int *fp = &rnp->need_future_gp[idx];
632
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800633 return READ_ONCE(*fp);
Paul E. McKenney365187f2014-03-10 10:55:52 -0700634}
635
636/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800637 * Does the current CPU require a not-yet-started grace period?
638 * The caller must have disabled interrupts to prevent races with
639 * normal callback registry.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100640 */
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700641static bool
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100642cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
643{
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800644 int i;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -0700645
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800646 if (rcu_gp_in_progress(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700647 return false; /* No, a grace period is already in progress. */
Paul E. McKenney365187f2014-03-10 10:55:52 -0700648 if (rcu_future_needs_gp(rsp))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700649 return true; /* Yes, a no-CBs CPU needs one. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800650 if (!rdp->nxttail[RCU_NEXT_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700651 return false; /* No, this is a no-CBs (or offline) CPU. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800652 if (*rdp->nxttail[RCU_NEXT_READY_TAIL])
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700653 return true; /* Yes, CPU has newly registered callbacks. */
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800654 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++)
655 if (rdp->nxttail[i - 1] != rdp->nxttail[i] &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800656 ULONG_CMP_LT(READ_ONCE(rsp->completed),
Paul E. McKenneydc35c892012-12-03 13:52:00 -0800657 rdp->nxtcompleted[i]))
Paul E. McKenneyd117c8a2015-10-31 00:01:18 -0700658 return true; /* Yes, CBs for future grace period. */
659 return false; /* No grace period needed. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100660}
661
662/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700663 * rcu_eqs_enter_common - current CPU is moving towards extended quiescent state
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100664 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700665 * If the new value of the ->dynticks_nesting counter now is zero,
666 * we really have entered idle, and must do the appropriate accounting.
667 * The caller must have disabled interrupts.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100668 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700669static void rcu_eqs_enter_common(long long oldval, bool user)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100670{
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700671 struct rcu_state *rsp;
672 struct rcu_data *rdp;
Christoph Lameter28ced792014-09-02 14:13:44 -0700673 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700674
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400675 trace_rcu_dyntick(TPS("Start"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700676 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
677 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700678 struct task_struct *idle __maybe_unused =
679 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700680
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400681 trace_rcu_dyntick(TPS("Error on entry: not idle task"), oldval, 0);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700682 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700683 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
684 current->pid, current->comm,
685 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700686 }
Paul E. McKenney96d3fd02013-10-04 14:33:34 -0700687 for_each_rcu_flavor(rsp) {
688 rdp = this_cpu_ptr(rsp->rda);
689 do_nocb_deferred_wakeup(rdp);
690 }
Paul E. McKenney198bbf82014-10-22 15:03:43 -0700691 rcu_prepare_for_idle();
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700692 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100693 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700694 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100695 smp_mb__after_atomic(); /* Force ordering with next sojourn. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700696 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
697 atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700698 rcu_dynticks_task_enter();
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800699
700 /*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700701 * It is illegal to enter an extended quiescent state while
Paul E. McKenneyc44e2cd2012-01-12 13:08:18 -0800702 * in an RCU read-side critical section.
703 */
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700704 RCU_LOCKDEP_WARN(lock_is_held(&rcu_lock_map),
705 "Illegal idle entry in RCU read-side critical section.");
706 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map),
707 "Illegal idle entry in RCU-bh read-side critical section.");
708 RCU_LOCKDEP_WARN(lock_is_held(&rcu_sched_lock_map),
709 "Illegal idle entry in RCU-sched read-side critical section.");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100710}
711
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700712/*
713 * Enter an RCU extended quiescent state, which can be either the
714 * idle loop or adaptive-tickless usermode execution.
715 */
716static void rcu_eqs_enter(bool user)
717{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700718 long long oldval;
719 struct rcu_dynticks *rdtp;
720
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700721 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700722 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700723 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
724 (oldval & DYNTICK_TASK_NEST_MASK) == 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700725 if ((oldval & DYNTICK_TASK_NEST_MASK) == DYNTICK_TASK_NEST_VALUE) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700726 rdtp->dynticks_nesting = 0;
Christoph Lameter28ced792014-09-02 14:13:44 -0700727 rcu_eqs_enter_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700728 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700729 rdtp->dynticks_nesting -= DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700730 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700731}
732
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700733/**
734 * rcu_idle_enter - inform RCU that current CPU is entering idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100735 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700736 * Enter idle mode, in other words, -leave- the mode in which RCU
737 * read-side critical sections can occur. (Though RCU read-side
738 * critical sections can occur in irq handlers in idle, a possibility
739 * handled by irq_enter() and irq_exit().)
740 *
741 * We crowbar the ->dynticks_nesting field to zero to allow for
742 * the possibility of usermode upcalls having messed up our count
743 * of interrupt nesting level during the prior busy period.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100744 */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700745void rcu_idle_enter(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100746{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200747 unsigned long flags;
748
749 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700750 rcu_eqs_enter(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700751 rcu_sysidle_enter(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200752 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700753}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800754EXPORT_SYMBOL_GPL(rcu_idle_enter);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700755
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700756#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700757/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700758 * rcu_user_enter - inform RCU that we are resuming userspace.
759 *
760 * Enter RCU idle mode right before resuming userspace. No use of RCU
761 * is permitted between this call and rcu_user_exit(). This way the
762 * CPU doesn't need to maintain the tick for RCU maintenance purposes
763 * when the CPU runs in userspace.
764 */
765void rcu_user_enter(void)
766{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100767 rcu_eqs_enter(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700768}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700769#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700770
771/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700772 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
773 *
774 * Exit from an interrupt handler, which might possibly result in entering
775 * idle mode, in other words, leaving the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700776 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700777 *
778 * This code assumes that the idle loop never does anything that might
779 * result in unbalanced calls to irq_enter() and irq_exit(). If your
780 * architecture violates this assumption, RCU will give you what you
781 * deserve, good and hard. But very infrequently and irreproducibly.
782 *
783 * Use things like work queues to work around this limitation.
784 *
785 * You have been warned.
786 */
787void rcu_irq_exit(void)
788{
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700789 long long oldval;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700790 struct rcu_dynticks *rdtp;
791
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700792 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_exit() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700793 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700794 oldval = rdtp->dynticks_nesting;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700795 rdtp->dynticks_nesting--;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700796 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
797 rdtp->dynticks_nesting < 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800798 if (rdtp->dynticks_nesting)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400799 trace_rcu_dyntick(TPS("--="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800800 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700801 rcu_eqs_enter_common(oldval, true);
802 rcu_sysidle_enter(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700803}
804
805/*
806 * Wrapper for rcu_irq_exit() where interrupts are enabled.
807 */
808void rcu_irq_exit_irqson(void)
809{
810 unsigned long flags;
811
812 local_irq_save(flags);
813 rcu_irq_exit();
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700814 local_irq_restore(flags);
815}
816
817/*
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700818 * rcu_eqs_exit_common - current CPU moving away from extended quiescent state
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700819 *
820 * If the new value of the ->dynticks_nesting counter was previously zero,
821 * we really have exited idle, and must do the appropriate accounting.
822 * The caller must have disabled interrupts.
823 */
Christoph Lameter28ced792014-09-02 14:13:44 -0700824static void rcu_eqs_exit_common(long long oldval, int user)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700825{
Christoph Lameter28ced792014-09-02 14:13:44 -0700826 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
827
Paul E. McKenney176f8f72014-08-04 17:43:50 -0700828 rcu_dynticks_task_exit();
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100829 smp_mb__before_atomic(); /* Force ordering w/previous sojourn. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700830 atomic_inc(&rdtp->dynticks);
831 /* CPUs seeing atomic_inc() must see later RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100832 smp_mb__after_atomic(); /* See above. */
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700833 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
834 !(atomic_read(&rdtp->dynticks) & 0x1));
Paul E. McKenney8fa78452014-10-22 15:07:37 -0700835 rcu_cleanup_after_idle();
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400836 trace_rcu_dyntick(TPS("End"), oldval, rdtp->dynticks_nesting);
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700837 if (IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
838 !user && !is_idle_task(current)) {
Paul E. McKenney289828e2013-08-31 19:23:29 -0700839 struct task_struct *idle __maybe_unused =
840 idle_task(smp_processor_id());
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700841
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400842 trace_rcu_dyntick(TPS("Error on exit: not idle task"),
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700843 oldval, rdtp->dynticks_nesting);
Paul E. McKenney274529b2016-03-21 19:46:04 -0700844 rcu_ftrace_dump(DUMP_ORIG);
Paul E. McKenney0989cb42011-11-01 08:57:21 -0700845 WARN_ONCE(1, "Current pid: %d comm: %s / Idle pid: %d comm: %s",
846 current->pid, current->comm,
847 idle->pid, idle->comm); /* must be idle task! */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700848 }
849}
850
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700851/*
852 * Exit an RCU extended quiescent state, which can be either the
853 * idle loop or adaptive-tickless usermode execution.
854 */
855static void rcu_eqs_exit(bool user)
856{
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700857 struct rcu_dynticks *rdtp;
858 long long oldval;
859
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700860 rdtp = this_cpu_ptr(&rcu_dynticks);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700861 oldval = rdtp->dynticks_nesting;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700862 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) && oldval < 0);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700863 if (oldval & DYNTICK_TASK_NEST_MASK) {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700864 rdtp->dynticks_nesting += DYNTICK_TASK_NEST_VALUE;
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700865 } else {
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700866 rdtp->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Christoph Lameter28ced792014-09-02 14:13:44 -0700867 rcu_eqs_exit_common(oldval, user);
Paul E. McKenney3a5924052013-10-04 18:48:55 -0700868 }
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700869}
870
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700871/**
872 * rcu_idle_exit - inform RCU that current CPU is leaving idle
873 *
874 * Exit idle mode, in other words, -enter- the mode in which RCU
875 * read-side critical sections can occur.
876 *
Paul E. McKenney29e37d82011-11-17 16:55:56 -0800877 * We crowbar the ->dynticks_nesting field to DYNTICK_TASK_NEST to
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700878 * allow for the possibility of usermode upcalls messing up our count
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700879 * of interrupt nesting level during the busy period that is just
880 * now starting.
881 */
882void rcu_idle_exit(void)
883{
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200884 unsigned long flags;
885
886 local_irq_save(flags);
Paul E. McKenneycb349ca2012-09-04 17:35:31 -0700887 rcu_eqs_exit(false);
Christoph Lameter28ced792014-09-02 14:13:44 -0700888 rcu_sysidle_exit(0);
Frederic Weisbeckerc5d900b2012-07-11 20:26:31 +0200889 local_irq_restore(flags);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700890}
Paul E. McKenney8a2ecf42012-02-02 15:42:04 -0800891EXPORT_SYMBOL_GPL(rcu_idle_exit);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700892
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700893#ifdef CONFIG_NO_HZ_FULL
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700894/**
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700895 * rcu_user_exit - inform RCU that we are exiting userspace.
896 *
897 * Exit RCU idle mode while entering the kernel because it can
898 * run a RCU read side critical section anytime.
899 */
900void rcu_user_exit(void)
901{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100902 rcu_eqs_exit(1);
Frederic Weisbeckeradf50912012-06-28 11:20:21 -0700903}
Paul E. McKenneyd1ec4c32015-05-13 10:41:58 -0700904#endif /* CONFIG_NO_HZ_FULL */
Frederic Weisbecker19dd15912012-06-04 16:42:35 -0700905
906/**
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700907 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle
908 *
909 * Enter an interrupt handler, which might possibly result in exiting
910 * idle mode, in other words, entering the mode in which read-side critical
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700911 * sections can occur. The caller must have disabled interrupts.
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700912 *
913 * Note that the Linux kernel is fully capable of entering an interrupt
914 * handler that it never exits, for example when doing upcalls to
915 * user mode! This code assumes that the idle loop never does upcalls to
916 * user mode. If your architecture does do upcalls from the idle loop (or
917 * does anything else that results in unbalanced calls to the irq_enter()
918 * and irq_exit() functions), RCU will give you what you deserve, good
919 * and hard. But very infrequently and irreproducibly.
920 *
921 * Use things like work queues to work around this limitation.
922 *
923 * You have been warned.
924 */
925void rcu_irq_enter(void)
926{
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700927 struct rcu_dynticks *rdtp;
928 long long oldval;
929
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700930 RCU_LOCKDEP_WARN(!irqs_disabled(), "rcu_irq_enter() invoked with irqs enabled!!!");
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700931 rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700932 oldval = rdtp->dynticks_nesting;
933 rdtp->dynticks_nesting++;
Paul E. McKenney1ce46ee2015-05-05 23:04:22 -0700934 WARN_ON_ONCE(IS_ENABLED(CONFIG_RCU_EQS_DEBUG) &&
935 rdtp->dynticks_nesting == 0);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800936 if (oldval)
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400937 trace_rcu_dyntick(TPS("++="), oldval, rdtp->dynticks_nesting);
Frederic Weisbeckerb6fc6022011-11-28 16:18:56 -0800938 else
Christoph Lameter28ced792014-09-02 14:13:44 -0700939 rcu_eqs_exit_common(oldval, true);
940 rcu_sysidle_exit(1);
Paul E. McKenney7c9906c2015-10-31 00:59:01 -0700941}
942
943/*
944 * Wrapper for rcu_irq_enter() where interrupts are enabled.
945 */
946void rcu_irq_enter_irqson(void)
947{
948 unsigned long flags;
949
950 local_irq_save(flags);
951 rcu_irq_enter();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100952 local_irq_restore(flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100953}
954
955/**
956 * rcu_nmi_enter - inform RCU of entry to NMI context
957 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800958 * If the CPU was idle from RCU's viewpoint, update rdtp->dynticks and
959 * rdtp->dynticks_nmi_nesting to let the RCU grace-period handling know
960 * that the CPU is active. This implementation permits nested NMIs, as
961 * long as the nesting level does not overflow an int. (You will probably
962 * run out of stack space first.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100963 */
964void rcu_nmi_enter(void)
965{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -0700966 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney734d1682014-11-21 14:45:12 -0800967 int incby = 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100968
Paul E. McKenney734d1682014-11-21 14:45:12 -0800969 /* Complain about underflow. */
970 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting < 0);
971
972 /*
973 * If idle from RCU viewpoint, atomically increment ->dynticks
974 * to mark non-idle and increment ->dynticks_nmi_nesting by one.
975 * Otherwise, increment ->dynticks_nmi_nesting by two. This means
976 * if ->dynticks_nmi_nesting is equal to one, we are guaranteed
977 * to be in the outermost NMI handler that interrupted an RCU-idle
978 * period (observation due to Andy Lutomirski).
979 */
980 if (!(atomic_read(&rdtp->dynticks) & 0x1)) {
981 smp_mb__before_atomic(); /* Force delay from prior write. */
982 atomic_inc(&rdtp->dynticks);
983 /* atomic_inc() before later RCU read-side crit sects */
984 smp_mb__after_atomic(); /* See above. */
985 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
986 incby = 1;
987 }
988 rdtp->dynticks_nmi_nesting += incby;
989 barrier();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100990}
991
992/**
993 * rcu_nmi_exit - inform RCU of exit from NMI context
994 *
Paul E. McKenney734d1682014-11-21 14:45:12 -0800995 * If we are returning from the outermost NMI handler that interrupted an
996 * RCU-idle period, update rdtp->dynticks and rdtp->dynticks_nmi_nesting
997 * to let the RCU grace-period handling know that the CPU is back to
998 * being RCU-idle.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100999 */
1000void rcu_nmi_exit(void)
1001{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001002 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001003
Paul E. McKenney734d1682014-11-21 14:45:12 -08001004 /*
1005 * Check for ->dynticks_nmi_nesting underflow and bad ->dynticks.
1006 * (We are exiting an NMI handler, so RCU better be paying attention
1007 * to us!)
1008 */
1009 WARN_ON_ONCE(rdtp->dynticks_nmi_nesting <= 0);
1010 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
1011
1012 /*
1013 * If the nesting level is not 1, the CPU wasn't RCU-idle, so
1014 * leave it in non-RCU-idle state.
1015 */
1016 if (rdtp->dynticks_nmi_nesting != 1) {
1017 rdtp->dynticks_nmi_nesting -= 2;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001018 return;
Paul E. McKenney734d1682014-11-21 14:45:12 -08001019 }
1020
1021 /* This NMI interrupted an RCU-idle CPU, restore RCU-idleness. */
1022 rdtp->dynticks_nmi_nesting = 0;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001023 /* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001024 smp_mb__before_atomic(); /* See above. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001025 atomic_inc(&rdtp->dynticks);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001026 smp_mb__after_atomic(); /* Force delay to next write. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001027 WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001028}
1029
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001030/**
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001031 * __rcu_is_watching - are RCU read-side critical sections safe?
1032 *
1033 * Return true if RCU is watching the running CPU, which means that
1034 * this CPU can safely enter RCU read-side critical sections. Unlike
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001035 * rcu_is_watching(), the caller of __rcu_is_watching() must have at
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001036 * least disabled preemption.
1037 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001038bool notrace __rcu_is_watching(void)
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001039{
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001040 return atomic_read(this_cpu_ptr(&rcu_dynticks.dynticks)) & 0x1;
Paul E. McKenneycc6783f2013-09-06 17:39:49 -07001041}
1042
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001043/**
1044 * rcu_is_watching - see if RCU thinks that the current CPU is idle
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001045 *
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001046 * If the current CPU is in its idle loop and is neither in an interrupt
Paul E. McKenney34240692011-10-03 11:38:52 -07001047 * or NMI handler, return true.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001048 */
Linus Torvaldsb29c8302013-11-16 12:23:18 -08001049bool notrace rcu_is_watching(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001050{
Pranith Kumarf534ed12014-07-08 18:26:11 -04001051 bool ret;
Paul E. McKenney34240692011-10-03 11:38:52 -07001052
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001053 preempt_disable_notrace();
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001054 ret = __rcu_is_watching();
Alexei Starovoitov46f00d12015-06-16 10:35:18 -07001055 preempt_enable_notrace();
Paul E. McKenney34240692011-10-03 11:38:52 -07001056 return ret;
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001057}
Paul E. McKenney5c173eb2013-09-13 17:20:11 -07001058EXPORT_SYMBOL_GPL(rcu_is_watching);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001059
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001060#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001061
1062/*
1063 * Is the current CPU online? Disable preemption to avoid false positives
1064 * that could otherwise happen due to the current CPU number being sampled,
1065 * this task being preempted, its old CPU being taken offline, resuming
1066 * on some other CPU, then determining that its old CPU is now offline.
1067 * It is OK to use RCU on an offline processor during initial boot, hence
Paul E. McKenney2036d942012-01-30 17:02:47 -08001068 * the check for rcu_scheduler_fully_active. Note also that it is OK
1069 * for a CPU coming online to use RCU for one jiffy prior to marking itself
1070 * online in the cpu_online_mask. Similarly, it is OK for a CPU going
1071 * offline to continue to use RCU for one jiffy after marking itself
1072 * offline in the cpu_online_mask. This leniency is necessary given the
1073 * non-atomic nature of the online and offline processing, for example,
1074 * the fact that a CPU enters the scheduler after completing the CPU_DYING
1075 * notifiers.
1076 *
1077 * This is also why RCU internally marks CPUs online during the
1078 * CPU_UP_PREPARE phase and offline during the CPU_DEAD phase.
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001079 *
1080 * Disable checking if in an NMI handler because we cannot safely report
1081 * errors from NMI handlers anyway.
1082 */
1083bool rcu_lockdep_current_cpu_online(void)
1084{
Paul E. McKenney2036d942012-01-30 17:02:47 -08001085 struct rcu_data *rdp;
1086 struct rcu_node *rnp;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001087 bool ret;
1088
1089 if (in_nmi())
Fengguang Wuf6f7ee92013-10-10 11:08:33 -07001090 return true;
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001091 preempt_disable();
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001092 rdp = this_cpu_ptr(&rcu_sched_data);
Paul E. McKenney2036d942012-01-30 17:02:47 -08001093 rnp = rdp->mynode;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001094 ret = (rdp->grpmask & rcu_rnp_online_cpus(rnp)) ||
Paul E. McKenneyc0d6d012012-01-23 12:41:26 -08001095 !rcu_scheduler_fully_active;
1096 preempt_enable();
1097 return ret;
1098}
1099EXPORT_SYMBOL_GPL(rcu_lockdep_current_cpu_online);
1100
Paul E. McKenney62fde6e2012-05-22 22:10:24 -07001101#endif /* #if defined(CONFIG_PROVE_RCU) && defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001102
1103/**
1104 * rcu_is_cpu_rrupt_from_idle - see if idle or immediately interrupted from idle
1105 *
1106 * If the current CPU is idle or running at a first-level (not nested)
1107 * interrupt from idle, return true. The caller must have at least
1108 * disabled preemption.
1109 */
Josh Triplett62e3cb12012-11-20 09:55:26 -08001110static int rcu_is_cpu_rrupt_from_idle(void)
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07001111{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001112 return __this_cpu_read(rcu_dynticks.dynticks_nesting) <= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001113}
1114
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001115/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001116 * Snapshot the specified CPU's dynticks counter so that we can later
1117 * credit them with an implicit quiescent state. Return 1 if this CPU
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001118 * is in dynticks idle mode, which is an extended quiescent state.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001119 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001120static int dyntick_save_progress_counter(struct rcu_data *rdp,
1121 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001122{
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001123 rdp->dynticks_snap = atomic_add_return(0, &rdp->dynticks->dynticks);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07001124 rcu_sysidle_check_cpu(rdp, isidle, maxj);
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001125 if ((rdp->dynticks_snap & 0x1) == 0) {
1126 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001127 if (ULONG_CMP_LT(READ_ONCE(rdp->gpnum) + ULONG_MAX / 4,
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001128 rdp->mynode->gpnum))
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001129 WRITE_ONCE(rdp->gpwrap, true);
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001130 return 1;
Andreea-Cristina Bernat7941dbd2014-03-17 18:33:28 +02001131 }
Paul E. McKenney23a9bac2015-12-13 08:57:10 -08001132 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001133}
1134
1135/*
1136 * Return true if the specified CPU has passed through a quiescent
1137 * state by virtue of being in or having passed through an dynticks
1138 * idle state since the last call to dyntick_save_progress_counter()
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001139 * for this same CPU, or by virtue of having been offline.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001140 */
Paul E. McKenney217af2a2013-06-21 15:39:06 -07001141static int rcu_implicit_dynticks_qs(struct rcu_data *rdp,
1142 bool *isidle, unsigned long *maxj)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001143{
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001144 unsigned int curr;
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001145 int *rcrmp;
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001146 unsigned int snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001147
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001148 curr = (unsigned int)atomic_add_return(0, &rdp->dynticks->dynticks);
1149 snap = (unsigned int)rdp->dynticks_snap;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001150
1151 /*
1152 * If the CPU passed through or entered a dynticks idle phase with
1153 * no active irq/NMI handlers, then we can safely pretend that the CPU
1154 * already acknowledged the request to pass through a quiescent
1155 * state. Either way, that CPU cannot possibly be in an RCU
1156 * read-side critical section that started before the beginning
1157 * of the current RCU grace period.
1158 */
Paul E. McKenney7eb4f452011-07-30 07:32:48 -07001159 if ((curr & 0x1) == 0 || UINT_CMP_GE(curr, snap + 2)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001160 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("dti"));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001161 rdp->dynticks_fqs++;
1162 return 1;
1163 }
1164
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001165 /*
1166 * Check for the CPU being offline, but only if the grace period
1167 * is old enough. We don't need to worry about the CPU changing
1168 * state: If we see it offline even once, it has been through a
1169 * quiescent state.
1170 *
1171 * The reason for insisting that the grace period be at least
1172 * one jiffy old is that CPUs that are not quite online and that
1173 * have just gone offline can still execute RCU read-side critical
1174 * sections.
1175 */
1176 if (ULONG_CMP_GE(rdp->rsp->gp_start + 2, jiffies))
1177 return 0; /* Grace period is not old enough. */
1178 barrier();
1179 if (cpu_is_offline(rdp->cpu)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001180 trace_rcu_fqs(rdp->rsp->name, rdp->gpnum, rdp->cpu, TPS("ofl"));
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001181 rdp->offline_fqs++;
1182 return 1;
1183 }
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001184
1185 /*
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001186 * A CPU running for an extended time within the kernel can
1187 * delay RCU grace periods. When the CPU is in NO_HZ_FULL mode,
1188 * even context-switching back and forth between a pair of
1189 * in-kernel CPU-bound tasks cannot advance grace periods.
1190 * So if the grace period is old enough, make the CPU pay attention.
1191 * Note that the unsynchronized assignments to the per-CPU
1192 * rcu_sched_qs_mask variable are safe. Yes, setting of
1193 * bits can be lost, but they will be set again on the next
1194 * force-quiescent-state pass. So lost bit sets do not result
1195 * in incorrect behavior, merely in a grace period lasting
1196 * a few jiffies longer than it might otherwise. Because
1197 * there are at most four threads involved, and because the
1198 * updates are only once every few jiffies, the probability of
1199 * lossage (and thus of slight grace-period extension) is
1200 * quite low.
1201 *
1202 * Note that if the jiffies_till_sched_qs boot/sysfs parameter
1203 * is set too high, we override with half of the RCU CPU stall
1204 * warning delay.
Paul E. McKenney65d798f2013-04-12 16:19:10 -07001205 */
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001206 rcrmp = &per_cpu(rcu_sched_qs_mask, rdp->cpu);
1207 if (ULONG_CMP_GE(jiffies,
1208 rdp->rsp->gp_start + jiffies_till_sched_qs) ||
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001209 ULONG_CMP_GE(jiffies, rdp->rsp->jiffies_resched)) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001210 if (!(READ_ONCE(*rcrmp) & rdp->rsp->flavor_mask)) {
1211 WRITE_ONCE(rdp->cond_resched_completed,
1212 READ_ONCE(rdp->mynode->completed));
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001213 smp_mb(); /* ->cond_resched_completed before *rcrmp. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001214 WRITE_ONCE(*rcrmp,
1215 READ_ONCE(*rcrmp) + rdp->rsp->flavor_mask);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07001216 }
Paul E. McKenney49149502015-12-11 13:48:43 -08001217 rdp->rsp->jiffies_resched += 5; /* Re-enable beating. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001218 }
1219
Paul E. McKenney49149502015-12-11 13:48:43 -08001220 /* And if it has been a really long time, kick the CPU as well. */
1221 if (ULONG_CMP_GE(jiffies,
1222 rdp->rsp->gp_start + 2 * jiffies_till_sched_qs) ||
1223 ULONG_CMP_GE(jiffies, rdp->rsp->gp_start + jiffies_till_sched_qs))
1224 resched_cpu(rdp->cpu); /* Force CPU into scheduler. */
1225
Paul E. McKenneya82dcc72012-08-01 14:29:20 -07001226 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001227}
1228
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001229static void record_gp_stall_check_time(struct rcu_state *rsp)
1230{
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001231 unsigned long j = jiffies;
Paul E. McKenney6193c762013-09-23 13:57:18 -07001232 unsigned long j1;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001233
1234 rsp->gp_start = j;
1235 smp_wmb(); /* Record start time before stall time. */
Paul E. McKenney6193c762013-09-23 13:57:18 -07001236 j1 = rcu_jiffies_till_stall_check();
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001237 WRITE_ONCE(rsp->jiffies_stall, j + j1);
Paul E. McKenney6193c762013-09-23 13:57:18 -07001238 rsp->jiffies_resched = j + j1 / 2;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001239 rsp->n_force_qs_gpstart = READ_ONCE(rsp->n_force_qs);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001240}
1241
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001242/*
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001243 * Convert a ->gp_state value to a character string.
1244 */
1245static const char *gp_state_getname(short gs)
1246{
1247 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
1248 return "???";
1249 return gp_state_names[gs];
1250}
1251
1252/*
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001253 * Complain about starvation of grace-period kthread.
1254 */
1255static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp)
1256{
1257 unsigned long gpa;
1258 unsigned long j;
1259
1260 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001261 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001262 if (j - gpa > 2 * HZ) {
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001263 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 -07001264 rsp->name, j - gpa,
Paul E. McKenney319362c2015-05-19 14:16:52 -07001265 rsp->gpnum, rsp->completed,
Paul E. McKenney6b50e112015-11-17 14:39:26 -08001266 rsp->gp_flags,
1267 gp_state_getname(rsp->gp_state), rsp->gp_state,
Paul E. McKenneya0e3a3a2015-12-05 17:34:10 -08001268 rsp->gp_kthread ? rsp->gp_kthread->state : ~0);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001269 if (rsp->gp_kthread) {
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001270 sched_show_task(rsp->gp_kthread);
Paul E. McKenney86057b82015-12-31 08:48:36 -08001271 wake_up_process(rsp->gp_kthread);
1272 }
Paul E. McKenneyb1adb3e2015-10-01 10:38:16 -07001273 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001274}
1275
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001276/*
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001277 * Dump stacks of all tasks running on stalled CPUs.
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001278 */
1279static void rcu_dump_cpu_stacks(struct rcu_state *rsp)
1280{
1281 int cpu;
1282 unsigned long flags;
1283 struct rcu_node *rnp;
1284
1285 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001286 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001287 if (rnp->qsmask != 0) {
1288 for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
1289 if (rnp->qsmask & (1UL << cpu))
1290 dump_cpu_task(rnp->grplo + cpu);
1291 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001292 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001293 }
1294}
1295
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001296/*
1297 * If too much time has passed in the current grace period, and if
1298 * so configured, go kick the relevant kthreads.
1299 */
1300static void rcu_stall_kick_kthreads(struct rcu_state *rsp)
1301{
1302 unsigned long j;
1303
1304 if (!rcu_kick_kthreads)
1305 return;
1306 j = READ_ONCE(rsp->jiffies_kick_kthreads);
1307 if (time_after(jiffies, j) && rsp->gp_kthread) {
1308 WARN_ONCE(1, "Kicking %s grace-period kthread\n", rsp->name);
Paul E. McKenney5dffed12016-02-17 11:54:28 -08001309 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001310 wake_up_process(rsp->gp_kthread);
1311 WRITE_ONCE(rsp->jiffies_kick_kthreads, j + HZ);
1312 }
1313}
1314
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001315static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gpnum)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001316{
1317 int cpu;
1318 long delta;
1319 unsigned long flags;
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001320 unsigned long gpa;
1321 unsigned long j;
Paul E. McKenney285fe292012-05-09 08:45:12 -07001322 int ndetected = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001323 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001324 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001325
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001326 /* Kick and suppress, if so configured. */
1327 rcu_stall_kick_kthreads(rsp);
1328 if (rcu_cpu_stall_suppress)
1329 return;
1330
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001331 /* Only let one CPU complain about others per time interval. */
1332
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001333 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001334 delta = jiffies - READ_ONCE(rsp->jiffies_stall);
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -07001335 if (delta < RCU_STALL_RAT_DELAY || !rcu_gp_in_progress(rsp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +08001336 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001337 return;
1338 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001339 WRITE_ONCE(rsp->jiffies_stall,
1340 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001341 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001342
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001343 /*
1344 * OK, time to rat on our buddy...
1345 * See Documentation/RCU/stallwarn.txt for info on how to debug
1346 * RCU CPU stall warnings.
1347 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001348 pr_err("INFO: %s detected stalls on CPUs/tasks:",
Paul E. McKenney4300aa62010-04-13 16:18:22 -07001349 rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001350 print_cpu_stall_info_begin();
Paul E. McKenneya0b6c9a2009-09-28 07:46:33 -07001351 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001352 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001353 ndetected += rcu_print_task_stall(rnp);
Paul E. McKenneyc8020a62012-08-10 16:55:59 -07001354 if (rnp->qsmask != 0) {
1355 for (cpu = 0; cpu <= rnp->grphi - rnp->grplo; cpu++)
1356 if (rnp->qsmask & (1UL << cpu)) {
1357 print_cpu_stall_info(rsp,
1358 rnp->grplo + cpu);
1359 ndetected++;
1360 }
1361 }
Boqun Feng67c583a72015-12-29 12:18:47 +08001362 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001363 }
Paul E. McKenneya858af22012-01-16 13:29:10 -08001364
Paul E. McKenneya858af22012-01-16 13:29:10 -08001365 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001366 for_each_possible_cpu(cpu)
1367 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001368 pr_cont("(detected by %d, t=%ld jiffies, g=%ld, c=%ld, q=%lu)\n",
Paul E. McKenneyeee05882012-09-21 14:15:05 -07001369 smp_processor_id(), (long)(jiffies - rsp->gp_start),
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001370 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001371 if (ndetected) {
Paul E. McKenneyb637a322012-09-19 16:58:38 -07001372 rcu_dump_cpu_stacks(rsp);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001373 } else {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001374 if (READ_ONCE(rsp->gpnum) != gpnum ||
1375 READ_ONCE(rsp->completed) == gpnum) {
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001376 pr_err("INFO: Stall ended before state dump start\n");
1377 } else {
1378 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001379 gpa = READ_ONCE(rsp->gp_activity);
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001380 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 -08001381 rsp->name, j - gpa, j, gpa,
Paul E. McKenney237a0f22015-01-22 14:32:06 -08001382 jiffies_till_next_fqs,
1383 rcu_get_root(rsp)->qsmask);
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001384 /* In this case, the current CPU might be at fault. */
1385 sched_show_task(current);
1386 }
1387 }
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001388
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001389 /* Complain about tasks blocking the grace period. */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001390 rcu_print_detail_task_stall(rsp);
1391
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001392 rcu_check_gp_kthread_starvation(rsp);
1393
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07001394 force_quiescent_state(rsp); /* Kick them all. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001395}
1396
1397static void print_cpu_stall(struct rcu_state *rsp)
1398{
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001399 int cpu;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001400 unsigned long flags;
1401 struct rcu_node *rnp = rcu_get_root(rsp);
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001402 long totqlen = 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001403
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001404 /* Kick and suppress, if so configured. */
1405 rcu_stall_kick_kthreads(rsp);
1406 if (rcu_cpu_stall_suppress)
1407 return;
1408
Paul E. McKenney8cdd32a2010-08-09 14:23:03 -07001409 /*
1410 * OK, time to rat on ourselves...
1411 * See Documentation/RCU/stallwarn.txt for info on how to debug
1412 * RCU CPU stall warnings.
1413 */
Paul E. McKenneyd7f3e202013-03-18 16:19:52 -07001414 pr_err("INFO: %s self-detected stall on CPU", rsp->name);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001415 print_cpu_stall_info_begin();
1416 print_cpu_stall_info(rsp, smp_processor_id());
1417 print_cpu_stall_info_end();
Paul E. McKenney53bb8572012-09-21 16:35:25 -07001418 for_each_possible_cpu(cpu)
1419 totqlen += per_cpu_ptr(rsp->rda, cpu)->qlen;
Paul E. McKenney83ebe632014-03-06 11:09:10 -08001420 pr_cont(" (t=%lu jiffies g=%ld c=%ld q=%lu)\n",
1421 jiffies - rsp->gp_start,
1422 (long)rsp->gpnum, (long)rsp->completed, totqlen);
Paul E. McKenneyfb81a442014-12-17 08:35:02 -08001423
1424 rcu_check_gp_kthread_starvation(rsp);
1425
Paul E. McKenneybc1dce52014-06-18 09:18:31 -07001426 rcu_dump_cpu_stacks(rsp);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001427
Paul E. McKenney6cf10082015-10-08 15:36:54 -07001428 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001429 if (ULONG_CMP_GE(jiffies, READ_ONCE(rsp->jiffies_stall)))
1430 WRITE_ONCE(rsp->jiffies_stall,
1431 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
Boqun Feng67c583a72015-12-29 12:18:47 +08001432 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Ingo Molnarc1dc0b92009-08-02 11:28:21 +02001433
Peter Zijlstrab021fe32013-09-17 09:30:55 +02001434 /*
1435 * Attempt to revive the RCU machinery by forcing a context switch.
1436 *
1437 * A context switch would normally allow the RCU state machine to make
1438 * progress and it could be we're stuck in kernel space without context
1439 * switches for an entirely unreasonable amount of time.
1440 */
1441 resched_cpu(smp_processor_id());
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001442}
1443
1444static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
1445{
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001446 unsigned long completed;
1447 unsigned long gpnum;
1448 unsigned long gps;
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001449 unsigned long j;
1450 unsigned long js;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001451 struct rcu_node *rnp;
1452
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001453 if ((rcu_cpu_stall_suppress && !rcu_kick_kthreads) ||
1454 !rcu_gp_in_progress(rsp))
Paul E. McKenneyc68de202010-04-15 10:12:40 -07001455 return;
Paul E. McKenney8c7c4822016-01-03 20:29:57 -08001456 rcu_stall_kick_kthreads(rsp);
Paul E. McKenneycb1e78c2013-12-04 18:42:03 -08001457 j = jiffies;
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001458
1459 /*
1460 * Lots of memory barriers to reject false positives.
1461 *
1462 * The idea is to pick up rsp->gpnum, then rsp->jiffies_stall,
1463 * then rsp->gp_start, and finally rsp->completed. These values
1464 * are updated in the opposite order with memory barriers (or
1465 * equivalent) during grace-period initialization and cleanup.
1466 * Now, a false positive can occur if we get an new value of
1467 * rsp->gp_start and a old value of rsp->jiffies_stall. But given
1468 * the memory barriers, the only way that this can happen is if one
1469 * grace period ends and another starts between these two fetches.
1470 * Detect this by comparing rsp->completed with the previous fetch
1471 * from rsp->gpnum.
1472 *
1473 * Given this check, comparisons of jiffies, rsp->jiffies_stall,
1474 * and rsp->gp_start suffice to forestall false positives.
1475 */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001476 gpnum = READ_ONCE(rsp->gpnum);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001477 smp_rmb(); /* Pick up ->gpnum first... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001478 js = READ_ONCE(rsp->jiffies_stall);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001479 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001480 gps = READ_ONCE(rsp->gp_start);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001481 smp_rmb(); /* ...and finally ->gp_start before ->completed. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001482 completed = READ_ONCE(rsp->completed);
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001483 if (ULONG_CMP_GE(completed, gpnum) ||
1484 ULONG_CMP_LT(j, js) ||
1485 ULONG_CMP_GE(gps, js))
1486 return; /* No stall or GP completed since entering function. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001487 rnp = rdp->mynode;
Paul E. McKenneyc96ea7c2012-08-13 11:17:06 -07001488 if (rcu_gp_in_progress(rsp) &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001489 (READ_ONCE(rnp->qsmask) & rdp->grpmask)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001490
1491 /* We haven't checked in, so go dump stack. */
1492 print_cpu_stall(rsp);
1493
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001494 } else if (rcu_gp_in_progress(rsp) &&
1495 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001496
Paul E. McKenneybad6e132011-05-02 23:40:04 -07001497 /* They had a few time units to dump stack, so complain. */
Paul E. McKenney6ccd2ec2014-12-11 10:20:59 -08001498 print_other_cpu_stall(rsp, gpnum);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001499 }
1500}
1501
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001502/**
1503 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
1504 *
1505 * Set the stall-warning timeout way off into the future, thus preventing
1506 * any RCU CPU stall-warning messages from appearing in the current set of
1507 * RCU grace periods.
1508 *
1509 * The caller must disable hard irqs.
1510 */
1511void rcu_cpu_stall_reset(void)
1512{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07001513 struct rcu_state *rsp;
1514
1515 for_each_rcu_flavor(rsp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001516 WRITE_ONCE(rsp->jiffies_stall, jiffies + ULONG_MAX / 2);
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001517}
1518
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001519/*
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001520 * Initialize the specified rcu_data structure's default callback list
1521 * to empty. The default callback list is the one that is not used by
1522 * no-callbacks CPUs.
1523 */
1524static void init_default_callback_list(struct rcu_data *rdp)
1525{
1526 int i;
1527
1528 rdp->nxtlist = NULL;
1529 for (i = 0; i < RCU_NEXT_SIZE; i++)
1530 rdp->nxttail[i] = &rdp->nxtlist;
1531}
1532
1533/*
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001534 * Initialize the specified rcu_data structure's callback list to empty.
1535 */
1536static void init_callback_list(struct rcu_data *rdp)
1537{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001538 if (init_nocb_callback_list(rdp))
1539 return;
Paul E. McKenneyd3f3f3f2015-01-18 18:21:09 -08001540 init_default_callback_list(rdp);
Paul E. McKenney3f5d3ea2012-05-09 15:39:56 -07001541}
1542
1543/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001544 * Determine the value that ->completed will have at the end of the
1545 * next subsequent grace period. This is used to tag callbacks so that
1546 * a CPU can invoke callbacks in a timely fashion even if that CPU has
1547 * been dyntick-idle for an extended period with callbacks under the
1548 * influence of RCU_FAST_NO_HZ.
1549 *
1550 * The caller must hold rnp->lock with interrupts disabled.
1551 */
1552static unsigned long rcu_cbs_completed(struct rcu_state *rsp,
1553 struct rcu_node *rnp)
1554{
1555 /*
1556 * If RCU is idle, we just wait for the next grace period.
1557 * But we can only be sure that RCU is idle if we are looking
1558 * at the root rcu_node structure -- otherwise, a new grace
1559 * period might have started, but just not yet gotten around
1560 * to initializing the current non-root rcu_node structure.
1561 */
1562 if (rcu_get_root(rsp) == rnp && rnp->gpnum == rnp->completed)
1563 return rnp->completed + 1;
1564
1565 /*
1566 * Otherwise, wait for a possible partial grace period and
1567 * then the subsequent full grace period.
1568 */
1569 return rnp->completed + 2;
1570}
1571
1572/*
Paul E. McKenney0446be42012-12-30 15:21:01 -08001573 * Trace-event helper function for rcu_start_future_gp() and
1574 * rcu_nocb_wait_gp().
1575 */
1576static void trace_rcu_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001577 unsigned long c, const char *s)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001578{
1579 trace_rcu_future_grace_period(rdp->rsp->name, rnp->gpnum,
1580 rnp->completed, c, rnp->level,
1581 rnp->grplo, rnp->grphi, s);
1582}
1583
1584/*
1585 * Start some future grace period, as needed to handle newly arrived
1586 * callbacks. The required future grace periods are recorded in each
Paul E. McKenney48a76392014-03-11 13:02:16 -07001587 * rcu_node structure's ->need_future_gp field. Returns true if there
1588 * is reason to awaken the grace-period kthread.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001589 *
1590 * The caller must hold the specified rcu_node structure's ->lock.
1591 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001592static bool __maybe_unused
1593rcu_start_future_gp(struct rcu_node *rnp, struct rcu_data *rdp,
1594 unsigned long *c_out)
Paul E. McKenney0446be42012-12-30 15:21:01 -08001595{
1596 unsigned long c;
1597 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001598 bool ret = false;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001599 struct rcu_node *rnp_root = rcu_get_root(rdp->rsp);
1600
1601 /*
1602 * Pick up grace-period number for new callbacks. If this
1603 * grace period is already marked as needed, return to the caller.
1604 */
1605 c = rcu_cbs_completed(rdp->rsp, rnp);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001606 trace_rcu_future_gp(rnp, rdp, c, TPS("Startleaf"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001607 if (rnp->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001608 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001609 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001610 }
1611
1612 /*
1613 * If either this rcu_node structure or the root rcu_node structure
1614 * believe that a grace period is in progress, then we must wait
1615 * for the one following, which is in "c". Because our request
1616 * will be noticed at the end of the current grace period, we don't
Pranith Kumar48bd8e92014-06-11 10:32:47 -07001617 * need to explicitly start one. We only do the lockless check
1618 * of rnp_root's fields if the current rcu_node structure thinks
1619 * there is no grace period in flight, and because we hold rnp->lock,
1620 * the only possible change is when rnp_root's two fields are
1621 * equal, in which case rnp_root->gpnum might be concurrently
1622 * incremented. But that is OK, as it will just result in our
1623 * doing some extra useless work.
Paul E. McKenney0446be42012-12-30 15:21:01 -08001624 */
1625 if (rnp->gpnum != rnp->completed ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001626 READ_ONCE(rnp_root->gpnum) != READ_ONCE(rnp_root->completed)) {
Paul E. McKenney0446be42012-12-30 15:21:01 -08001627 rnp->need_future_gp[c & 0x1]++;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001628 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleaf"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001629 goto out;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001630 }
1631
1632 /*
1633 * There might be no grace period in progress. If we don't already
1634 * hold it, acquire the root rcu_node structure's lock in order to
1635 * start one (if needed).
1636 */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001637 if (rnp != rnp_root)
1638 raw_spin_lock_rcu_node(rnp_root);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001639
1640 /*
1641 * Get a new grace-period number. If there really is no grace
1642 * period in progress, it will be smaller than the one we obtained
1643 * earlier. Adjust callbacks as needed. Note that even no-CBs
1644 * CPUs have a ->nxtcompleted[] array, so no no-CBs checks needed.
1645 */
1646 c = rcu_cbs_completed(rdp->rsp, rnp_root);
1647 for (i = RCU_DONE_TAIL; i < RCU_NEXT_TAIL; i++)
1648 if (ULONG_CMP_LT(c, rdp->nxtcompleted[i]))
1649 rdp->nxtcompleted[i] = c;
1650
1651 /*
1652 * If the needed for the required grace period is already
1653 * recorded, trace and leave.
1654 */
1655 if (rnp_root->need_future_gp[c & 0x1]) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001656 trace_rcu_future_gp(rnp, rdp, c, TPS("Prestartedroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001657 goto unlock_out;
1658 }
1659
1660 /* Record the need for the future grace period. */
1661 rnp_root->need_future_gp[c & 0x1]++;
1662
1663 /* If a grace period is not already in progress, start one. */
1664 if (rnp_root->gpnum != rnp_root->completed) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001665 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedleafroot"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001666 } else {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001667 trace_rcu_future_gp(rnp, rdp, c, TPS("Startedroot"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001668 ret = rcu_start_gp_advanced(rdp->rsp, rnp_root, rdp);
Paul E. McKenney0446be42012-12-30 15:21:01 -08001669 }
1670unlock_out:
1671 if (rnp != rnp_root)
Boqun Feng67c583a72015-12-29 12:18:47 +08001672 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001673out:
1674 if (c_out != NULL)
1675 *c_out = c;
1676 return ret;
Paul E. McKenney0446be42012-12-30 15:21:01 -08001677}
1678
1679/*
1680 * Clean up any old requests for the just-ended grace period. Also return
1681 * whether any additional grace periods have been requested. Also invoke
1682 * rcu_nocb_gp_cleanup() in order to wake up any no-callbacks kthreads
1683 * waiting for this grace period to complete.
1684 */
1685static int rcu_future_gp_cleanup(struct rcu_state *rsp, struct rcu_node *rnp)
1686{
1687 int c = rnp->completed;
1688 int needmore;
1689 struct rcu_data *rdp = this_cpu_ptr(rsp->rda);
1690
Paul E. McKenney0446be42012-12-30 15:21:01 -08001691 rnp->need_future_gp[c & 0x1] = 0;
1692 needmore = rnp->need_future_gp[(c + 1) & 0x1];
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001693 trace_rcu_future_gp(rnp, rdp, c,
1694 needmore ? TPS("CleanupMore") : TPS("Cleanup"));
Paul E. McKenney0446be42012-12-30 15:21:01 -08001695 return needmore;
1696}
1697
1698/*
Paul E. McKenney48a76392014-03-11 13:02:16 -07001699 * Awaken the grace-period kthread for the specified flavor of RCU.
1700 * Don't do a self-awaken, and don't bother awakening when there is
1701 * nothing for the grace-period kthread to do (as in several CPUs
1702 * raced to awaken, and we lost), and finally don't try to awaken
1703 * a kthread that has not yet been created.
1704 */
1705static void rcu_gp_kthread_wake(struct rcu_state *rsp)
1706{
1707 if (current == rsp->gp_kthread ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001708 !READ_ONCE(rsp->gp_flags) ||
Paul E. McKenney48a76392014-03-11 13:02:16 -07001709 !rsp->gp_kthread)
1710 return;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001711 swake_up(&rsp->gp_wq);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001712}
1713
1714/*
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001715 * If there is room, assign a ->completed number to any callbacks on
1716 * this CPU that have not already been assigned. Also accelerate any
1717 * callbacks that were previously assigned a ->completed number that has
1718 * since proven to be too conservative, which can happen if callbacks get
1719 * assigned a ->completed number while RCU is idle, but with reference to
1720 * a non-root rcu_node structure. This function is idempotent, so it does
Paul E. McKenney48a76392014-03-11 13:02:16 -07001721 * not hurt to call it repeatedly. Returns an flag saying that we should
1722 * awaken the RCU grace-period kthread.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001723 *
1724 * The caller must hold rnp->lock with interrupts disabled.
1725 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001726static bool rcu_accelerate_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001727 struct rcu_data *rdp)
1728{
1729 unsigned long c;
1730 int i;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001731 bool ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001732
1733 /* If the CPU has no callbacks, nothing to do. */
1734 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001735 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001736
1737 /*
1738 * Starting from the sublist containing the callbacks most
1739 * recently assigned a ->completed number and working down, find the
1740 * first sublist that is not assignable to an upcoming grace period.
1741 * Such a sublist has something in it (first two tests) and has
1742 * a ->completed number assigned that will complete sooner than
1743 * the ->completed number for newly arrived callbacks (last test).
1744 *
1745 * The key point is that any later sublist can be assigned the
1746 * same ->completed number as the newly arrived callbacks, which
1747 * means that the callbacks in any of these later sublist can be
1748 * grouped into a single sublist, whether or not they have already
1749 * been assigned a ->completed number.
1750 */
1751 c = rcu_cbs_completed(rsp, rnp);
1752 for (i = RCU_NEXT_TAIL - 1; i > RCU_DONE_TAIL; i--)
1753 if (rdp->nxttail[i] != rdp->nxttail[i - 1] &&
1754 !ULONG_CMP_GE(rdp->nxtcompleted[i], c))
1755 break;
1756
1757 /*
1758 * If there are no sublist for unassigned callbacks, leave.
1759 * At the same time, advance "i" one sublist, so that "i" will
1760 * index into the sublist where all the remaining callbacks should
1761 * be grouped into.
1762 */
1763 if (++i >= RCU_NEXT_TAIL)
Paul E. McKenney48a76392014-03-11 13:02:16 -07001764 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001765
1766 /*
1767 * Assign all subsequent callbacks' ->completed number to the next
1768 * full grace period and group them all in the sublist initially
1769 * indexed by "i".
1770 */
1771 for (; i <= RCU_NEXT_TAIL; i++) {
1772 rdp->nxttail[i] = rdp->nxttail[RCU_NEXT_TAIL];
1773 rdp->nxtcompleted[i] = c;
1774 }
Paul E. McKenney910ee452012-12-31 02:24:21 -08001775 /* Record any needed additional grace periods. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001776 ret = rcu_start_future_gp(rnp, rdp, NULL);
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001777
1778 /* Trace depending on how much we were able to accelerate. */
1779 if (!*rdp->nxttail[RCU_WAIT_TAIL])
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001780 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccWaitCB"));
Paul E. McKenney6d4b4182012-11-27 16:55:44 -08001781 else
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001782 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("AccReadyCB"));
Paul E. McKenney48a76392014-03-11 13:02:16 -07001783 return ret;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001784}
1785
1786/*
1787 * Move any callbacks whose grace period has completed to the
1788 * RCU_DONE_TAIL sublist, then compact the remaining sublists and
1789 * assign ->completed numbers to any callbacks in the RCU_NEXT_TAIL
1790 * sublist. This function is idempotent, so it does not hurt to
1791 * invoke it repeatedly. As long as it is not invoked -too- often...
Paul E. McKenney48a76392014-03-11 13:02:16 -07001792 * Returns true if the RCU grace-period kthread needs to be awakened.
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001793 *
1794 * The caller must hold rnp->lock with interrupts disabled.
1795 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001796static bool rcu_advance_cbs(struct rcu_state *rsp, struct rcu_node *rnp,
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001797 struct rcu_data *rdp)
1798{
1799 int i, j;
1800
1801 /* If the CPU has no callbacks, nothing to do. */
1802 if (!rdp->nxttail[RCU_NEXT_TAIL] || !*rdp->nxttail[RCU_DONE_TAIL])
Paul E. McKenney48a76392014-03-11 13:02:16 -07001803 return false;
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001804
1805 /*
1806 * Find all callbacks whose ->completed numbers indicate that they
1807 * are ready to invoke, and put them into the RCU_DONE_TAIL sublist.
1808 */
1809 for (i = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++) {
1810 if (ULONG_CMP_LT(rnp->completed, rdp->nxtcompleted[i]))
1811 break;
1812 rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[i];
1813 }
1814 /* Clean up any sublist tail pointers that were misordered above. */
1815 for (j = RCU_WAIT_TAIL; j < i; j++)
1816 rdp->nxttail[j] = rdp->nxttail[RCU_DONE_TAIL];
1817
1818 /* Copy down callbacks to fill in empty sublists. */
1819 for (j = RCU_WAIT_TAIL; i < RCU_NEXT_TAIL; i++, j++) {
1820 if (rdp->nxttail[j] == rdp->nxttail[RCU_NEXT_TAIL])
1821 break;
1822 rdp->nxttail[j] = rdp->nxttail[i];
1823 rdp->nxtcompleted[j] = rdp->nxtcompleted[i];
1824 }
1825
1826 /* Classify any remaining callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001827 return rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001828}
1829
1830/*
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001831 * Update CPU-local rcu_data state to record the beginnings and ends of
1832 * grace periods. The caller must hold the ->lock of the leaf rcu_node
1833 * structure corresponding to the current CPU, and must have irqs disabled.
Paul E. McKenney48a76392014-03-11 13:02:16 -07001834 * Returns true if the grace-period kthread needs to be awakened.
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001835 */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001836static bool __note_gp_changes(struct rcu_state *rsp, struct rcu_node *rnp,
1837 struct rcu_data *rdp)
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001838{
Paul E. McKenney48a76392014-03-11 13:02:16 -07001839 bool ret;
1840
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001841 /* Handle the ends of any preceding grace periods first. */
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001842 if (rdp->completed == rnp->completed &&
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001843 !unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001844
Paul E. McKenneyba9fbe92013-03-19 11:53:31 -07001845 /* No grace period end, so just accelerate recent callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001846 ret = rcu_accelerate_cbs(rsp, rnp, rdp);
Paul E. McKenneydc35c892012-12-03 13:52:00 -08001847
1848 } else {
1849
1850 /* Advance callbacks. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001851 ret = rcu_advance_cbs(rsp, rnp, rdp);
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001852
1853 /* Remember that we saw this grace-period completion. */
1854 rdp->completed = rnp->completed;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001855 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuend"));
Paul E. McKenneyd09b62d2009-11-02 13:52:28 -08001856 }
Paul E. McKenney398ebe62013-03-19 10:53:14 -07001857
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001858 if (rdp->gpnum != rnp->gpnum || unlikely(READ_ONCE(rdp->gpwrap))) {
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001859 /*
1860 * If the current grace period is waiting for this CPU,
1861 * set up to detect a quiescent state, otherwise don't
1862 * go looking for one.
1863 */
1864 rdp->gpnum = rnp->gpnum;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001865 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpustart"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -07001866 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenney5cd37192014-12-13 20:32:04 -08001867 rdp->rcu_qs_ctr_snap = __this_cpu_read(rcu_qs_ctr);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07001868 rdp->core_needs_qs = !!(rnp->qsmask & rdp->grpmask);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001869 zero_cpu_stall_ticks(rdp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001870 WRITE_ONCE(rdp->gpwrap, false);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001871 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001872 return ret;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001873}
1874
Paul E. McKenneyd34ea322013-03-19 11:10:43 -07001875static void note_gp_changes(struct rcu_state *rsp, struct rcu_data *rdp)
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001876{
1877 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001878 bool needwake;
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001879 struct rcu_node *rnp;
1880
1881 local_irq_save(flags);
1882 rnp = rdp->mynode;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001883 if ((rdp->gpnum == READ_ONCE(rnp->gpnum) &&
1884 rdp->completed == READ_ONCE(rnp->completed) &&
1885 !unlikely(READ_ONCE(rdp->gpwrap))) || /* w/out lock. */
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001886 !raw_spin_trylock_rcu_node(rnp)) { /* irqs already off, so later. */
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001887 local_irq_restore(flags);
1888 return;
1889 }
Paul E. McKenney48a76392014-03-11 13:02:16 -07001890 needwake = __note_gp_changes(rsp, rnp, rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001891 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001892 if (needwake)
1893 rcu_gp_kthread_wake(rsp);
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001894}
1895
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001896static void rcu_gp_slow(struct rcu_state *rsp, int delay)
1897{
1898 if (delay > 0 &&
1899 !(rsp->gpnum % (rcu_num_nodes * PER_RCU_NODE_PERIOD * delay)))
1900 schedule_timeout_uninterruptible(delay);
1901}
1902
Paul E. McKenney6eaef632013-03-19 10:08:37 -07001903/*
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001904 * Initialize a new grace period. Return false if no grace period required.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001905 */
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001906static bool rcu_gp_init(struct rcu_state *rsp)
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001907{
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001908 unsigned long oldmask;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001909 struct rcu_data *rdp;
1910 struct rcu_node *rnp = rcu_get_root(rsp);
1911
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001912 WRITE_ONCE(rsp->gp_activity, jiffies);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001913 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001914 if (!READ_ONCE(rsp->gp_flags)) {
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001915 /* Spurious wakeup, tell caller to go back to sleep. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001916 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001917 return false;
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001918 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001919 WRITE_ONCE(rsp->gp_flags, 0); /* Clear all flags: New grace period. */
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001920
Paul E. McKenneyf7be8202013-08-08 18:27:52 -07001921 if (WARN_ON_ONCE(rcu_gp_in_progress(rsp))) {
1922 /*
1923 * Grace period already in progress, don't start another.
1924 * Not supposed to be able to happen.
1925 */
Boqun Feng67c583a72015-12-29 12:18:47 +08001926 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney45fed3e2015-11-07 23:35:00 -08001927 return false;
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001928 }
1929
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001930 /* Advance to a new grace period and initialize state. */
Paul E. McKenney26cdfed2013-09-04 10:51:13 -07001931 record_gp_stall_check_time(rsp);
Paul E. McKenney765a3f42014-03-14 16:37:08 -07001932 /* Record GP times before starting GP, hence smp_store_release(). */
1933 smp_store_release(&rsp->gpnum, rsp->gpnum + 1);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001934 trace_rcu_grace_period(rsp->name, rsp->gpnum, TPS("start"));
Boqun Feng67c583a72015-12-29 12:18:47 +08001935 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001936
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001937 /*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001938 * Apply per-leaf buffered online and offline operations to the
1939 * rcu_node tree. Note that this new grace period need not wait
1940 * for subsequent online CPUs, and that quiescent-state forcing
1941 * will handle subsequent offline CPUs.
1942 */
1943 rcu_for_each_leaf_node(rsp, rnp) {
Paul E. McKenney0f41c0d2015-03-10 18:33:20 -07001944 rcu_gp_slow(rsp, gp_preinit_delay);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001945 raw_spin_lock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001946 if (rnp->qsmaskinit == rnp->qsmaskinitnext &&
1947 !rnp->wait_blkd_tasks) {
1948 /* Nothing to do on this leaf rcu_node structure. */
Boqun Feng67c583a72015-12-29 12:18:47 +08001949 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001950 continue;
1951 }
1952
1953 /* Record old state, apply changes to ->qsmaskinit field. */
1954 oldmask = rnp->qsmaskinit;
1955 rnp->qsmaskinit = rnp->qsmaskinitnext;
1956
1957 /* If zero-ness of ->qsmaskinit changed, propagate up tree. */
1958 if (!oldmask != !rnp->qsmaskinit) {
1959 if (!oldmask) /* First online CPU for this rcu_node. */
1960 rcu_init_new_rnp(rnp);
1961 else if (rcu_preempt_has_tasks(rnp)) /* blocked tasks */
1962 rnp->wait_blkd_tasks = true;
1963 else /* Last offline CPU and can propagate. */
1964 rcu_cleanup_dead_rnp(rnp);
1965 }
1966
1967 /*
1968 * If all waited-on tasks from prior grace period are
1969 * done, and if all this rcu_node structure's CPUs are
1970 * still offline, propagate up the rcu_node tree and
1971 * clear ->wait_blkd_tasks. Otherwise, if one of this
1972 * rcu_node structure's CPUs has since come back online,
1973 * simply clear ->wait_blkd_tasks (but rcu_cleanup_dead_rnp()
1974 * checks for this, so just call it unconditionally).
1975 */
1976 if (rnp->wait_blkd_tasks &&
1977 (!rcu_preempt_has_tasks(rnp) ||
1978 rnp->qsmaskinit)) {
1979 rnp->wait_blkd_tasks = false;
1980 rcu_cleanup_dead_rnp(rnp);
1981 }
1982
Boqun Feng67c583a72015-12-29 12:18:47 +08001983 raw_spin_unlock_irq_rcu_node(rnp);
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001984 }
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001985
1986 /*
1987 * Set the quiescent-state-needed bits in all the rcu_node
1988 * structures for all currently online CPUs in breadth-first order,
1989 * starting from the root rcu_node structure, relying on the layout
1990 * of the tree within the rsp->node[] array. Note that other CPUs
1991 * will access only the leaves of the hierarchy, thus seeing that no
1992 * grace period is in progress, at least until the corresponding
Paul E. McKenney590d1752016-04-10 08:23:24 -07001993 * leaf node has been initialized.
Paul E. McKenney7fdefc12012-06-22 11:08:41 -07001994 *
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
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003451/*
3452 * Check to see if there is any immediate RCU-related work to be done
3453 * by the current CPU, for the specified type of RCU, returning 1 if so.
3454 * The checks are in order of increasing expense: checks that can be
3455 * carried out against CPU-local state are performed first. However,
3456 * we must check for CPU stalls first, else we might not get a chance.
3457 */
3458static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
3459{
Paul E. McKenney2f51f982009-11-13 19:51:39 -08003460 struct rcu_node *rnp = rdp->mynode;
3461
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003462 rdp->n_rcu_pending++;
3463
3464 /* Check for CPU stalls, if enabled. */
3465 check_cpu_stall(rsp, rdp);
3466
Paul E. McKenneya0969322013-11-08 09:03:10 -08003467 /* Is this CPU a NO_HZ_FULL CPU that should ignore RCU? */
3468 if (rcu_nohz_full_cpu(rsp))
3469 return 0;
3470
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003471 /* Is the RCU core waiting for a quiescent state from this CPU? */
Paul E. McKenney5c51dd72011-08-04 06:59:03 -07003472 if (rcu_scheduler_fully_active &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003473 rdp->core_needs_qs && rdp->cpu_no_qs.b.norm &&
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003474 rdp->rcu_qs_ctr_snap == __this_cpu_read(rcu_qs_ctr)) {
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003475 rdp->n_rp_core_needs_qs++;
3476 } else if (rdp->core_needs_qs &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003477 (!rdp->cpu_no_qs.b.norm ||
Paul E. McKenney5cd37192014-12-13 20:32:04 -08003478 rdp->rcu_qs_ctr_snap != __this_cpu_read(rcu_qs_ctr))) {
Paul E. McKenneyd21670a2010-04-14 17:39:26 -07003479 rdp->n_rp_report_qs++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003480 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003481 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003482
3483 /* Does this CPU have callbacks ready to invoke? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003484 if (cpu_has_callbacks_ready_to_invoke(rdp)) {
3485 rdp->n_rp_cb_ready++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003486 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003487 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003488
3489 /* Has RCU gone idle with this CPU needing another grace period? */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003490 if (cpu_needs_another_gp(rsp, rdp)) {
3491 rdp->n_rp_cpu_needs_gp++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003492 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003493 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003494
3495 /* Has another RCU grace period completed? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003496 if (READ_ONCE(rnp->completed) != rdp->completed) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003497 rdp->n_rp_gp_completed++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003498 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003499 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003500
3501 /* Has a new RCU grace period started? */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003502 if (READ_ONCE(rnp->gpnum) != rdp->gpnum ||
3503 unlikely(READ_ONCE(rdp->gpwrap))) { /* outside lock */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003504 rdp->n_rp_gp_started++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003505 return 1;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003506 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003507
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07003508 /* Does this CPU need a deferred NOCB wakeup? */
3509 if (rcu_nocb_need_deferred_wakeup(rdp)) {
3510 rdp->n_rp_nocb_defer_wakeup++;
3511 return 1;
3512 }
3513
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003514 /* nothing to do */
Paul E. McKenney7ba5c842009-04-13 21:31:17 -07003515 rdp->n_rp_need_nothing++;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003516 return 0;
3517}
3518
3519/*
3520 * Check to see if there is any immediate RCU-related work to be done
3521 * by the current CPU, returning 1 if so. This function is part of the
3522 * RCU implementation; it is -not- an exported member of the RCU API.
3523 */
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003524static int rcu_pending(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003525{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003526 struct rcu_state *rsp;
3527
3528 for_each_rcu_flavor(rsp)
Paul E. McKenneye3950ec2014-10-21 08:03:57 -07003529 if (__rcu_pending(rsp, this_cpu_ptr(rsp->rda)))
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003530 return 1;
3531 return 0;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003532}
3533
3534/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003535 * Return true if the specified CPU has any callback. If all_lazy is
3536 * non-NULL, store an indication of whether all callbacks are lazy.
3537 * (If there are no callbacks, all of them are deemed to be lazy.)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003538 */
Nicholas Mc Guire82072c42015-05-11 18:12:27 +02003539static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003540{
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003541 bool al = true;
3542 bool hc = false;
3543 struct rcu_data *rdp;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003544 struct rcu_state *rsp;
3545
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003546 for_each_rcu_flavor(rsp) {
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07003547 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003548 if (!rdp->nxtlist)
3549 continue;
3550 hc = true;
3551 if (rdp->qlen != rdp->qlen_lazy || !all_lazy) {
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003552 al = false;
Paul E. McKenney69c8d282013-09-03 09:52:20 -07003553 break;
3554 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08003555 }
3556 if (all_lazy)
3557 *all_lazy = al;
3558 return hc;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003559}
3560
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003561/*
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003562 * Helper function for _rcu_barrier() tracing. If tracing is disabled,
3563 * the compiler is expected to optimize this away.
3564 */
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04003565static void _rcu_barrier_trace(struct rcu_state *rsp, const char *s,
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003566 int cpu, unsigned long done)
3567{
3568 trace_rcu_barrier(rsp->name, s, cpu,
3569 atomic_read(&rsp->barrier_cpu_count), done);
3570}
3571
3572/*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003573 * RCU callback function for _rcu_barrier(). If we are last, wake
3574 * up the task executing _rcu_barrier().
3575 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003576static void rcu_barrier_callback(struct rcu_head *rhp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003577{
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003578 struct rcu_data *rdp = container_of(rhp, struct rcu_data, barrier_head);
3579 struct rcu_state *rsp = rdp->rsp;
3580
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003581 if (atomic_dec_and_test(&rsp->barrier_cpu_count)) {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003582 _rcu_barrier_trace(rsp, "LastCB", -1, rsp->barrier_sequence);
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003583 complete(&rsp->barrier_completion);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003584 } else {
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003585 _rcu_barrier_trace(rsp, "CB", -1, rsp->barrier_sequence);
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003586 }
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003587}
3588
3589/*
3590 * Called with preemption disabled, and from cross-cpu IRQ context.
3591 */
3592static void rcu_barrier_func(void *type)
3593{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003594 struct rcu_state *rsp = type;
Christoph Lameterfa07a582014-04-15 12:20:12 -07003595 struct rcu_data *rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003596
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003597 _rcu_barrier_trace(rsp, "IRQ", -1, rsp->barrier_sequence);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003598 atomic_inc(&rsp->barrier_cpu_count);
Paul E. McKenney06668ef2012-05-28 23:57:46 -07003599 rsp->call(&rdp->barrier_head, rcu_barrier_callback);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003600}
3601
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003602/*
3603 * Orchestrate the specified type of RCU barrier, waiting for all
3604 * RCU callbacks of the specified type to complete.
3605 */
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003606static void _rcu_barrier(struct rcu_state *rsp)
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003607{
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003608 int cpu;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003609 struct rcu_data *rdp;
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003610 unsigned long s = rcu_seq_snap(&rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003611
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003612 _rcu_barrier_trace(rsp, "Begin", -1, s);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003613
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07003614 /* Take mutex to serialize concurrent rcu_barrier() requests. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003615 mutex_lock(&rsp->barrier_mutex);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003616
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003617 /* Did someone else do our work for us? */
3618 if (rcu_seq_done(&rsp->barrier_sequence, s)) {
3619 _rcu_barrier_trace(rsp, "EarlyExit", -1, rsp->barrier_sequence);
Paul E. McKenneycf3a9c42012-05-29 14:56:46 -07003620 smp_mb(); /* caller's subsequent code after above check. */
3621 mutex_unlock(&rsp->barrier_mutex);
3622 return;
3623 }
3624
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003625 /* Mark the start of the barrier operation. */
3626 rcu_seq_start(&rsp->barrier_sequence);
3627 _rcu_barrier_trace(rsp, "Inc1", -1, rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003628
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003629 /*
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003630 * Initialize the count to one rather than to zero in order to
3631 * avoid a too-soon return to zero in case of a short grace period
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003632 * (or preemption of this task). Exclude CPU-hotplug operations
3633 * to ensure that no offline CPU has callbacks queued.
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003634 */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003635 init_completion(&rsp->barrier_completion);
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003636 atomic_set(&rsp->barrier_cpu_count, 1);
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003637 get_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003638
3639 /*
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003640 * Force each CPU with callbacks to register a new callback.
3641 * When that callback is invoked, we will know that all of the
3642 * corresponding CPU's preceding callbacks have been invoked.
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003643 */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003644 for_each_possible_cpu(cpu) {
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003645 if (!cpu_online(cpu) && !rcu_is_nocb_cpu(cpu))
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003646 continue;
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003647 rdp = per_cpu_ptr(rsp->rda, cpu);
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01003648 if (rcu_is_nocb_cpu(cpu)) {
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003649 if (!rcu_nocb_cpu_needs_barrier(rsp, cpu)) {
3650 _rcu_barrier_trace(rsp, "OfflineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003651 rsp->barrier_sequence);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003652 } else {
3653 _rcu_barrier_trace(rsp, "OnlineNoCB", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003654 rsp->barrier_sequence);
Paul E. McKenney41050a02014-12-18 12:31:27 -08003655 smp_mb__before_atomic();
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07003656 atomic_inc(&rsp->barrier_cpu_count);
3657 __call_rcu(&rdp->barrier_head,
3658 rcu_barrier_callback, rsp, cpu, 0);
3659 }
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08003660 } else if (READ_ONCE(rdp->qlen)) {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003661 _rcu_barrier_trace(rsp, "OnlineQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003662 rsp->barrier_sequence);
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003663 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003664 } else {
Paul E. McKenneya83eff02012-05-23 18:47:05 -07003665 _rcu_barrier_trace(rsp, "OnlineNQ", cpu,
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003666 rsp->barrier_sequence);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003667 }
3668 }
Paul E. McKenney1331e7a2012-08-02 17:43:50 -07003669 put_online_cpus();
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003670
3671 /*
3672 * Now that we have an rcu_barrier_callback() callback on each
3673 * CPU, and thus each counted, remove the initial count.
3674 */
Paul E. McKenney24ebbca2012-05-29 00:34:56 -07003675 if (atomic_dec_and_test(&rsp->barrier_cpu_count))
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003676 complete(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003677
3678 /* Wait for all rcu_barrier_callback() callbacks to be invoked. */
Paul E. McKenney7db74df2012-05-29 03:03:37 -07003679 wait_for_completion(&rsp->barrier_completion);
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003680
Paul E. McKenney4f525a52015-06-26 11:20:00 -07003681 /* Mark the end of the barrier operation. */
3682 _rcu_barrier_trace(rsp, "Inc2", -1, rsp->barrier_sequence);
3683 rcu_seq_end(&rsp->barrier_sequence);
3684
Paul E. McKenneyb1420f12012-03-01 13:18:08 -08003685 /* Other rcu_barrier() invocations can now safely proceed. */
Paul E. McKenney7be7f0b2012-05-29 05:18:53 -07003686 mutex_unlock(&rsp->barrier_mutex);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003687}
3688
3689/**
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003690 * rcu_barrier_bh - Wait until all in-flight call_rcu_bh() callbacks complete.
3691 */
3692void rcu_barrier_bh(void)
3693{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003694 _rcu_barrier(&rcu_bh_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003695}
3696EXPORT_SYMBOL_GPL(rcu_barrier_bh);
3697
3698/**
3699 * rcu_barrier_sched - Wait for in-flight call_rcu_sched() callbacks.
3700 */
3701void rcu_barrier_sched(void)
3702{
Paul E. McKenney037b64e2012-05-28 23:26:01 -07003703 _rcu_barrier(&rcu_sched_state);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003704}
3705EXPORT_SYMBOL_GPL(rcu_barrier_sched);
3706
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003707/*
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003708 * Propagate ->qsinitmask bits up the rcu_node tree to account for the
3709 * first CPU in a given leaf rcu_node structure coming online. The caller
3710 * must hold the corresponding leaf rcu_node ->lock with interrrupts
3711 * disabled.
3712 */
3713static void rcu_init_new_rnp(struct rcu_node *rnp_leaf)
3714{
3715 long mask;
3716 struct rcu_node *rnp = rnp_leaf;
3717
3718 for (;;) {
3719 mask = rnp->grpmask;
3720 rnp = rnp->parent;
3721 if (rnp == NULL)
3722 return;
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003723 raw_spin_lock_rcu_node(rnp); /* Interrupts already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003724 rnp->qsmaskinit |= mask;
Boqun Feng67c583a72015-12-29 12:18:47 +08003725 raw_spin_unlock_rcu_node(rnp); /* Interrupts remain disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003726 }
3727}
3728
3729/*
Paul E. McKenney27569622009-08-15 09:53:46 -07003730 * Do boot-time initialization of a CPU's per-CPU RCU data.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003731 */
Paul E. McKenney27569622009-08-15 09:53:46 -07003732static void __init
3733rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003734{
3735 unsigned long flags;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003736 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney27569622009-08-15 09:53:46 -07003737 struct rcu_node *rnp = rcu_get_root(rsp);
3738
3739 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003740 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07003741 rdp->grpmask = 1UL << (cpu - rdp->mynode->grplo);
Paul E. McKenney27569622009-08-15 09:53:46 -07003742 rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003743 WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -07003744 WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
Paul E. McKenney27569622009-08-15 09:53:46 -07003745 rdp->cpu = cpu;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -07003746 rdp->rsp = rsp;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07003747 rcu_boot_init_nocb_percpu_data(rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08003748 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27569622009-08-15 09:53:46 -07003749}
3750
3751/*
3752 * Initialize a CPU's per-CPU RCU data. Note that only one online or
3753 * offline event can be happening at a given time. Note also that we
3754 * can accept some slop in the rsp->completed access due to the fact
3755 * that this CPU cannot possibly have any RCU callbacks in flight yet.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003756 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04003757static void
Iulia Manda9b671222014-03-11 13:18:22 +02003758rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003759{
3760 unsigned long flags;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003761 unsigned long mask;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08003762 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003763 struct rcu_node *rnp = rcu_get_root(rsp);
3764
3765 /* Set up local state, ensuring consistent view of global state. */
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003766 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney37c72e52009-10-14 10:15:55 -07003767 rdp->qlen_last_fqs_check = 0;
3768 rdp->n_force_qs_snap = rsp->n_force_qs;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003769 rdp->blimit = blimit;
Paul E. McKenney39c8d312015-01-20 23:42:38 -08003770 if (!rdp->nxtlist)
3771 init_callback_list(rdp); /* Re-enable callbacks on this CPU. */
Paul E. McKenney29e37d82011-11-17 16:55:56 -08003772 rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
Paul E. McKenney23332102013-06-21 12:34:33 -07003773 rcu_sysidle_init_percpu_data(rdp->dynticks);
Paul E. McKenneyc92b1312011-11-23 13:38:58 -08003774 atomic_set(&rdp->dynticks->dynticks,
3775 (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
Boqun Feng67c583a72015-12-29 12:18:47 +08003776 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003777
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003778 /*
3779 * Add CPU to leaf rcu_node pending-online bitmask. Any needed
3780 * propagation up the rcu_node tree will happen at the beginning
3781 * of the next grace period.
3782 */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003783 rnp = rdp->mynode;
3784 mask = rdp->grpmask;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02003785 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003786 rnp->qsmaskinitnext |= mask;
Paul E. McKenneyb9585e92015-07-31 16:04:45 -07003787 rnp->expmaskinitnext |= mask;
3788 if (!rdp->beenonline)
3789 WRITE_ONCE(rsp->ncpus, READ_ONCE(rsp->ncpus) + 1);
3790 rdp->beenonline = true; /* We have now been online. */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003791 rdp->gpnum = rnp->completed; /* Make CPU later note any new GP. */
3792 rdp->completed = rnp->completed;
Paul E. McKenney5b74c452015-08-06 15:16:57 -07003793 rdp->cpu_no_qs.b.norm = true;
Paul E. McKenneya738eec2015-03-10 14:53:29 -07003794 rdp->rcu_qs_ctr_snap = per_cpu(rcu_qs_ctr, cpu);
Paul E. McKenney97c668b2015-08-06 11:31:51 -07003795 rdp->core_needs_qs = false;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08003796 trace_rcu_grace_period(rsp->name, rdp->gpnum, TPS("cpuonl"));
Boqun Feng67c583a72015-12-29 12:18:47 +08003797 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003798}
3799
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04003800static void rcu_prepare_cpu(int cpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003801{
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003802 struct rcu_state *rsp;
3803
3804 for_each_rcu_flavor(rsp)
Iulia Manda9b671222014-03-11 13:18:22 +02003805 rcu_init_percpu_data(cpu, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003806}
3807
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003808#ifdef CONFIG_HOTPLUG_CPU
3809/*
3810 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3811 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3812 * bit masks.
Linus Torvalds710d60c2016-03-15 13:50:29 -07003813 * The CPU is exiting the idle loop into the arch_cpu_idle_dead()
3814 * function. We now remove it from the rcu_node tree's ->qsmaskinit
3815 * bit masks.
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003816 */
3817static void rcu_cleanup_dying_idle_cpu(int cpu, struct rcu_state *rsp)
3818{
3819 unsigned long flags;
3820 unsigned long mask;
3821 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
3822 struct rcu_node *rnp = rdp->mynode; /* Outgoing CPU's rdp & rnp. */
3823
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003824 /* Remove outgoing CPU from mask in the leaf rcu_node structure. */
3825 mask = rdp->grpmask;
3826 raw_spin_lock_irqsave_rcu_node(rnp, flags); /* Enforce GP memory-order guarantee. */
3827 rnp->qsmaskinitnext &= ~mask;
Linus Torvalds710d60c2016-03-15 13:50:29 -07003828 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00003829}
3830
3831void rcu_report_dead(unsigned int cpu)
3832{
3833 struct rcu_state *rsp;
3834
3835 /* QS for any half-done expedited RCU-sched GP. */
3836 preempt_disable();
3837 rcu_report_exp_rdp(&rcu_sched_state,
3838 this_cpu_ptr(rcu_sched_state.rda), true);
3839 preempt_enable();
3840 for_each_rcu_flavor(rsp)
3841 rcu_cleanup_dying_idle_cpu(cpu, rsp);
3842}
3843#endif
3844
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003845/*
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07003846 * Handle CPU online/offline notification events.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003847 */
Paul E. McKenney88428cc52015-01-28 14:42:09 -08003848int rcu_cpu_notify(struct notifier_block *self,
3849 unsigned long action, void *hcpu)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003850{
3851 long cpu = (long)hcpu;
Uma Sharmae5341652014-03-23 22:32:09 -07003852 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003853 struct rcu_node *rnp = rdp->mynode;
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003854 struct rcu_state *rsp;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003855
3856 switch (action) {
3857 case CPU_UP_PREPARE:
3858 case CPU_UP_PREPARE_FROZEN:
Peter Zijlstrad72bce02011-05-30 13:34:51 +02003859 rcu_prepare_cpu(cpu);
3860 rcu_prepare_kthreads(cpu);
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07003861 rcu_spawn_all_nocb_kthreads(cpu);
Paul E. McKenneya26ac242011-01-12 14:10:23 -08003862 break;
3863 case CPU_ONLINE:
Paul E. McKenney0f962a52011-04-14 12:13:53 -07003864 case CPU_DOWN_FAILED:
Paul E. McKenney338b0f72015-09-03 00:45:02 -07003865 sync_sched_exp_online_cleanup(cpu);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00003866 rcu_boost_kthread_setaffinity(rnp, -1);
Paul E. McKenney0f962a52011-04-14 12:13:53 -07003867 break;
3868 case CPU_DOWN_PREPARE:
Paul E. McKenney34ed62462013-01-07 13:37:42 -08003869 rcu_boost_kthread_setaffinity(rnp, cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003870 break;
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003871 case CPU_DYING:
3872 case CPU_DYING_FROZEN:
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003873 for_each_rcu_flavor(rsp)
3874 rcu_cleanup_dying_cpu(rsp);
Paul E. McKenneyd0ec7742009-10-06 21:48:16 -07003875 break;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003876 case CPU_DEAD:
3877 case CPU_DEAD_FROZEN:
3878 case CPU_UP_CANCELED:
3879 case CPU_UP_CANCELED_FROZEN:
Paul E. McKenney776d6802014-10-23 10:50:41 -07003880 for_each_rcu_flavor(rsp) {
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07003881 rcu_cleanup_dead_cpu(cpu, rsp);
Paul E. McKenney776d6802014-10-23 10:50:41 -07003882 do_nocb_deferred_wakeup(per_cpu_ptr(rsp->rda, cpu));
3883 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003884 break;
3885 default:
3886 break;
3887 }
Paul E. McKenney34ed62462013-01-07 13:37:42 -08003888 return NOTIFY_OK;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003889}
3890
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003891static int rcu_pm_notify(struct notifier_block *self,
3892 unsigned long action, void *hcpu)
3893{
3894 switch (action) {
3895 case PM_HIBERNATION_PREPARE:
3896 case PM_SUSPEND_PREPARE:
3897 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
Paul E. McKenney5afff482015-02-18 16:39:09 -08003898 rcu_expedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003899 break;
3900 case PM_POST_HIBERNATION:
3901 case PM_POST_SUSPEND:
Paul E. McKenney5afff482015-02-18 16:39:09 -08003902 if (nr_cpu_ids <= 256) /* Expediting bad for large systems. */
3903 rcu_unexpedite_gp();
Borislav Petkovd1d74d12013-04-22 00:12:42 +02003904 break;
3905 default:
3906 break;
3907 }
3908 return NOTIFY_OK;
3909}
3910
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003911/*
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003912 * Spawn the kthreads that handle each RCU flavor's grace periods.
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003913 */
3914static int __init rcu_spawn_gp_kthread(void)
3915{
3916 unsigned long flags;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003917 int kthread_prio_in = kthread_prio;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003918 struct rcu_node *rnp;
3919 struct rcu_state *rsp;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003920 struct sched_param sp;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003921 struct task_struct *t;
3922
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003923 /* Force priority into range. */
3924 if (IS_ENABLED(CONFIG_RCU_BOOST) && kthread_prio < 1)
3925 kthread_prio = 1;
3926 else if (kthread_prio < 0)
3927 kthread_prio = 0;
3928 else if (kthread_prio > 99)
3929 kthread_prio = 99;
3930 if (kthread_prio != kthread_prio_in)
3931 pr_alert("rcu_spawn_gp_kthread(): Limited prio to %d from %d\n",
3932 kthread_prio, kthread_prio_in);
3933
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003934 rcu_scheduler_fully_active = 1;
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003935 for_each_rcu_flavor(rsp) {
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003936 t = kthread_create(rcu_gp_kthread, rsp, "%s", rsp->name);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003937 BUG_ON(IS_ERR(t));
3938 rnp = rcu_get_root(rsp);
Paul E. McKenney6cf10082015-10-08 15:36:54 -07003939 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003940 rsp->gp_kthread = t;
Paul E. McKenneya94844b2014-12-12 07:37:48 -08003941 if (kthread_prio) {
3942 sp.sched_priority = kthread_prio;
3943 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
3944 }
Boqun Feng67c583a72015-12-29 12:18:47 +08003945 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Peter Zijlstrae11f1332015-11-04 08:22:05 -08003946 wake_up_process(t);
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003947 }
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07003948 rcu_spawn_nocb_kthreads();
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07003949 rcu_spawn_boost_kthreads();
Paul E. McKenneyb3dbec72012-06-18 18:36:08 -07003950 return 0;
3951}
3952early_initcall(rcu_spawn_gp_kthread);
3953
3954/*
Paul E. McKenneybbad9372010-04-02 16:17:17 -07003955 * This function is invoked towards the end of the scheduler's initialization
3956 * process. Before this is called, the idle task might contain
3957 * RCU read-side critical sections (during which time, this idle
3958 * task is booting the system). After this function is called, the
3959 * idle tasks are prohibited from containing RCU read-side critical
3960 * sections. This function also enables RCU lockdep checking.
3961 */
3962void rcu_scheduler_starting(void)
3963{
3964 WARN_ON(num_online_cpus() != 1);
3965 WARN_ON(nr_context_switches() > 0);
3966 rcu_scheduler_active = 1;
3967}
3968
3969/*
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003970 * Compute the per-level fanout, either using the exact fanout specified
Paul E. McKenney7fa27002015-04-20 10:27:15 -07003971 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003972 */
Alexander Gordeev199977b2015-06-03 08:18:29 +02003973static void __init rcu_init_levelspread(int *levelspread, const int *levelcnt)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003974{
3975 int i;
3976
Paul E. McKenney7fa27002015-04-20 10:27:15 -07003977 if (rcu_fanout_exact) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02003978 levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
Paul E. McKenney66292402015-01-19 19:16:38 -08003979 for (i = rcu_num_lvls - 2; i >= 0; i--)
Alexander Gordeev199977b2015-06-03 08:18:29 +02003980 levelspread[i] = RCU_FANOUT;
Paul E. McKenney66292402015-01-19 19:16:38 -08003981 } else {
3982 int ccur;
3983 int cprv;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003984
Paul E. McKenney66292402015-01-19 19:16:38 -08003985 cprv = nr_cpu_ids;
3986 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02003987 ccur = levelcnt[i];
3988 levelspread[i] = (cprv + ccur - 1) / ccur;
Paul E. McKenney66292402015-01-19 19:16:38 -08003989 cprv = ccur;
3990 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003991 }
3992}
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003993
3994/*
3995 * Helper function for rcu_init() that initializes one rcu_state structure.
3996 */
Paul E. McKenneya87f2032015-10-20 12:38:49 -07003997static void __init rcu_init_one(struct rcu_state *rsp)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01003998{
Alexander Gordeevcb007102015-06-03 08:18:30 +02003999 static const char * const buf[] = RCU_NODE_NAME_INIT;
4000 static const char * const fqs[] = RCU_FQS_NAME_INIT;
Paul E. McKenney3dc5dbe2015-09-26 14:51:24 -07004001 static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
4002 static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004003 static u8 fl_mask = 0x1;
Alexander Gordeev199977b2015-06-03 08:18:29 +02004004
4005 int levelcnt[RCU_NUM_LVLS]; /* # nodes in each level. */
4006 int levelspread[RCU_NUM_LVLS]; /* kids/node in each level. */
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004007 int cpustride = 1;
4008 int i;
4009 int j;
4010 struct rcu_node *rnp;
4011
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004012 BUILD_BUG_ON(RCU_NUM_LVLS > ARRAY_SIZE(buf)); /* Fix buf[] init! */
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004013
Paul E. McKenney3eaaaf6c2015-03-09 16:51:17 -07004014 /* Silence gcc 4.8 false positive about array index out of range. */
4015 if (rcu_num_lvls <= 0 || rcu_num_lvls > RCU_NUM_LVLS)
4016 panic("rcu_init_one: rcu_num_lvls out of range");
Paul E. McKenney49305212012-11-29 13:49:00 -08004017
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004018 /* Initialize the level-tracking arrays. */
4019
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004020 for (i = 0; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004021 levelcnt[i] = num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004022 for (i = 1; i < rcu_num_lvls; i++)
Alexander Gordeev199977b2015-06-03 08:18:29 +02004023 rsp->level[i] = rsp->level[i - 1] + levelcnt[i - 1];
4024 rcu_init_levelspread(levelspread, levelcnt);
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004025 rsp->flavor_mask = fl_mask;
4026 fl_mask <<= 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004027
4028 /* Initialize the elements themselves, starting from the leaves. */
4029
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004030 for (i = rcu_num_lvls - 1; i >= 0; i--) {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004031 cpustride *= levelspread[i];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004032 rnp = rsp->level[i];
Alexander Gordeev199977b2015-06-03 08:18:29 +02004033 for (j = 0; j < levelcnt[i]; j++, rnp++) {
Boqun Feng67c583a72015-12-29 12:18:47 +08004034 raw_spin_lock_init(&ACCESS_PRIVATE(rnp, lock));
4035 lockdep_set_class_and_name(&ACCESS_PRIVATE(rnp, lock),
Paul E. McKenneyb6407e82010-01-04 16:04:02 -08004036 &rcu_node_class[i], buf[i]);
Paul E. McKenney394f2762012-06-26 17:00:35 -07004037 raw_spin_lock_init(&rnp->fqslock);
4038 lockdep_set_class_and_name(&rnp->fqslock,
4039 &rcu_fqs_class[i], fqs[i]);
Paul E. McKenney25d30cf2012-07-11 05:23:18 -07004040 rnp->gpnum = rsp->gpnum;
4041 rnp->completed = rsp->completed;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004042 rnp->qsmask = 0;
4043 rnp->qsmaskinit = 0;
4044 rnp->grplo = j * cpustride;
4045 rnp->grphi = (j + 1) * cpustride - 1;
Himangi Saraogi595f3902014-03-18 22:52:26 +05304046 if (rnp->grphi >= nr_cpu_ids)
4047 rnp->grphi = nr_cpu_ids - 1;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004048 if (i == 0) {
4049 rnp->grpnum = 0;
4050 rnp->grpmask = 0;
4051 rnp->parent = NULL;
4052 } else {
Alexander Gordeev199977b2015-06-03 08:18:29 +02004053 rnp->grpnum = j % levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004054 rnp->grpmask = 1UL << rnp->grpnum;
4055 rnp->parent = rsp->level[i - 1] +
Alexander Gordeev199977b2015-06-03 08:18:29 +02004056 j / levelspread[i - 1];
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004057 }
4058 rnp->level = i;
Paul E. McKenney12f5f522010-11-29 21:56:39 -08004059 INIT_LIST_HEAD(&rnp->blkd_tasks);
Paul E. McKenneydae6e642013-02-10 20:48:58 -08004060 rcu_init_one_nocb(rnp);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004061 init_waitqueue_head(&rnp->exp_wq[0]);
4062 init_waitqueue_head(&rnp->exp_wq[1]);
Paul E. McKenney3b5f6682016-03-16 16:47:55 -07004063 init_waitqueue_head(&rnp->exp_wq[2]);
4064 init_waitqueue_head(&rnp->exp_wq[3]);
Paul E. McKenneyf6a12f32016-01-30 17:57:35 -08004065 spin_lock_init(&rnp->exp_lock);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004066 }
4067 }
Lai Jiangshan0c340292010-03-28 11:12:30 +08004068
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01004069 init_swait_queue_head(&rsp->gp_wq);
4070 init_swait_queue_head(&rsp->expedited_wq);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004071 rnp = rsp->level[rcu_num_lvls - 1];
Lai Jiangshan0c340292010-03-28 11:12:30 +08004072 for_each_possible_cpu(i) {
Paul E. McKenney4a90a062010-04-14 16:48:11 -07004073 while (i > rnp->grphi)
Lai Jiangshan0c340292010-03-28 11:12:30 +08004074 rnp++;
Lai Jiangshan394f99a2010-06-28 16:25:04 +08004075 per_cpu_ptr(rsp->rda, i)->mynode = rnp;
Lai Jiangshan0c340292010-03-28 11:12:30 +08004076 rcu_boot_init_percpu_data(i, rsp);
4077 }
Paul E. McKenney6ce75a22012-06-12 11:01:13 -07004078 list_add(&rsp->flavors, &rcu_struct_flavors);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004079}
4080
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004081/*
4082 * Compute the rcu_node tree geometry from kernel parameters. This cannot
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004083 * replace the definitions in tree.h because those are needed to size
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004084 * the ->node array in the rcu_state structure.
4085 */
4086static void __init rcu_init_geometry(void)
4087{
Paul E. McKenney026ad282013-04-03 22:14:11 -07004088 ulong d;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004089 int i;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004090 int rcu_capacity[RCU_NUM_LVLS];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004091
Paul E. McKenney026ad282013-04-03 22:14:11 -07004092 /*
4093 * Initialize any unspecified boot parameters.
4094 * The default values of jiffies_till_first_fqs and
4095 * jiffies_till_next_fqs are set to the RCU_JIFFIES_TILL_FORCE_QS
4096 * value, which is a function of HZ, then adding one for each
4097 * RCU_JIFFIES_FQS_DIV CPUs that might be on the system.
4098 */
4099 d = RCU_JIFFIES_TILL_FORCE_QS + nr_cpu_ids / RCU_JIFFIES_FQS_DIV;
4100 if (jiffies_till_first_fqs == ULONG_MAX)
4101 jiffies_till_first_fqs = d;
4102 if (jiffies_till_next_fqs == ULONG_MAX)
4103 jiffies_till_next_fqs = d;
4104
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004105 /* If the compile-time values are accurate, just leave. */
Paul E. McKenney47d631a2015-04-21 09:12:13 -07004106 if (rcu_fanout_leaf == RCU_FANOUT_LEAF &&
Paul E. McKenneyb17c7032012-09-06 15:38:02 -07004107 nr_cpu_ids == NR_CPUS)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004108 return;
Paul E. McKenney39479092013-10-09 15:20:33 -07004109 pr_info("RCU: Adjusting geometry for rcu_fanout_leaf=%d, nr_cpu_ids=%d\n",
4110 rcu_fanout_leaf, nr_cpu_ids);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004111
4112 /*
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004113 * The boot-time rcu_fanout_leaf parameter must be at least two
4114 * and cannot exceed the number of bits in the rcu_node masks.
4115 * Complain and fall back to the compile-time values if this
4116 * limit is exceeded.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004117 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004118 if (rcu_fanout_leaf < 2 ||
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004119 rcu_fanout_leaf > sizeof(unsigned long) * 8) {
Paul E. McKenney13bd64942015-06-04 10:06:01 -07004120 rcu_fanout_leaf = RCU_FANOUT_LEAF;
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004121 WARN_ON(1);
4122 return;
4123 }
4124
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004125 /*
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004126 * Compute number of nodes that can be handled an rcu_node tree
Alexander Gordeev96181382015-06-03 08:18:26 +02004127 * with the given number of levels.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004128 */
Alexander Gordeev96181382015-06-03 08:18:26 +02004129 rcu_capacity[0] = rcu_fanout_leaf;
Alexander Gordeev05b84ae2015-06-03 08:18:28 +02004130 for (i = 1; i < RCU_NUM_LVLS; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004131 rcu_capacity[i] = rcu_capacity[i - 1] * RCU_FANOUT;
4132
4133 /*
Alexander Gordeev75cf15a2015-06-03 08:18:23 +02004134 * The tree must be able to accommodate the configured number of CPUs.
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004135 * If this limit is exceeded, fall back to the compile-time values.
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004136 */
Paul E. McKenneyee968ac2015-07-31 08:28:35 -07004137 if (nr_cpu_ids > rcu_capacity[RCU_NUM_LVLS - 1]) {
4138 rcu_fanout_leaf = RCU_FANOUT_LEAF;
4139 WARN_ON(1);
4140 return;
4141 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004142
Alexander Gordeev679f9852015-06-03 08:18:25 +02004143 /* Calculate the number of levels in the tree. */
Alexander Gordeev96181382015-06-03 08:18:26 +02004144 for (i = 0; nr_cpu_ids > rcu_capacity[i]; i++) {
Alexander Gordeev679f9852015-06-03 08:18:25 +02004145 }
Alexander Gordeev96181382015-06-03 08:18:26 +02004146 rcu_num_lvls = i + 1;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004147
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004148 /* Calculate the number of rcu_nodes at each level of the tree. */
Alexander Gordeev679f9852015-06-03 08:18:25 +02004149 for (i = 0; i < rcu_num_lvls; i++) {
Alexander Gordeev96181382015-06-03 08:18:26 +02004150 int cap = rcu_capacity[(rcu_num_lvls - 1) - i];
Alexander Gordeev679f9852015-06-03 08:18:25 +02004151 num_rcu_lvl[i] = DIV_ROUND_UP(nr_cpu_ids, cap);
4152 }
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004153
4154 /* Calculate the total number of rcu_node structures. */
4155 rcu_num_nodes = 0;
Alexander Gordeev679f9852015-06-03 08:18:25 +02004156 for (i = 0; i < rcu_num_lvls; i++)
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004157 rcu_num_nodes += num_rcu_lvl[i];
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004158}
4159
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004160/*
4161 * Dump out the structure of the rcu_node combining tree associated
4162 * with the rcu_state structure referenced by rsp.
4163 */
4164static void __init rcu_dump_rcu_node_tree(struct rcu_state *rsp)
4165{
4166 int level = 0;
4167 struct rcu_node *rnp;
4168
4169 pr_info("rcu_node tree layout dump\n");
4170 pr_info(" ");
4171 rcu_for_each_node_breadth_first(rsp, rnp) {
4172 if (rnp->level != level) {
4173 pr_cont("\n");
4174 pr_info(" ");
4175 level = rnp->level;
4176 }
4177 pr_cont("%d:%d ^%d ", rnp->grplo, rnp->grphi, rnp->grpnum);
4178 }
4179 pr_cont("\n");
4180}
4181
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004182void __init rcu_init(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004183{
Paul E. McKenney017c4262010-01-14 16:10:58 -08004184 int cpu;
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004185
Paul E. McKenney47627672015-01-19 21:10:21 -08004186 rcu_early_boot_tests();
4187
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004188 rcu_bootup_announce();
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -07004189 rcu_init_geometry();
Paul E. McKenneya87f2032015-10-20 12:38:49 -07004190 rcu_init_one(&rcu_bh_state);
4191 rcu_init_one(&rcu_sched_state);
Paul E. McKenneya3dc2942015-04-20 11:40:50 -07004192 if (dump_tree)
4193 rcu_dump_rcu_node_tree(&rcu_sched_state);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07004194 __rcu_init_preempt();
Jiang Fangb5b39362013-02-02 14:13:42 -08004195 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Paul E. McKenney9f680ab2009-11-22 08:53:49 -08004196
4197 /*
4198 * We don't need protection against CPU-hotplug here because
4199 * this is called early in boot, before either interrupts
4200 * or the scheduler are operational.
4201 */
4202 cpu_notifier(rcu_cpu_notify, 0);
Borislav Petkovd1d74d12013-04-22 00:12:42 +02004203 pm_notifier(rcu_pm_notify, 0);
Paul E. McKenney017c4262010-01-14 16:10:58 -08004204 for_each_online_cpu(cpu)
4205 rcu_cpu_notify(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01004206}
4207
Paul E. McKenney3549c2b2016-04-15 16:35:29 -07004208#include "tree_exp.h"
Paul E. McKenney4102ada2013-10-08 20:23:47 -07004209#include "tree_plugin.h"