blob: e3944c4b072d93415c3c800b33a081acbf2836da [file] [log] [blame]
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001/*
2 * Read-Copy Update mechanism for mutual exclusion (tree-based version)
3 * Internal non-public definitions that provide either classic
Paul E. McKenney6cc68792011-03-02 13:15:15 -08004 * or preemptible semantics.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
Paul E. McKenney87de1cf2013-12-03 10:02:52 -080017 * along with this program; if not, you can access it online at
18 * http://www.gnu.org/licenses/gpl-2.0.html.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070019 *
20 * Copyright Red Hat, 2009
21 * Copyright IBM Corporation, 2009
22 *
23 * Author: Ingo Molnar <mingo@elte.hu>
24 * Paul E. McKenney <paulmck@linux.vnet.ibm.com>
25 */
26
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080027#include <linux/delay.h>
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -070028#include <linux/gfp.h>
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -070029#include <linux/oom.h>
Paul E. McKenney62ab7072012-07-16 10:42:38 +000030#include <linux/smpboot.h>
Paul E. McKenney4102ada2013-10-08 20:23:47 -070031#include "../time/tick-internal.h"
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070032
Mike Galbraith5b61b0b2011-08-19 11:39:11 -070033#ifdef CONFIG_RCU_BOOST
Paul E. McKenney61cfd092014-09-02 12:30:58 -070034
Paul E. McKenneyabaa93d2014-06-12 13:30:25 -070035#include "../locking/rtmutex_common.h"
Clark Williams21871d72014-09-12 21:21:09 -050036
Paul E. McKenney61cfd092014-09-02 12:30:58 -070037/*
38 * Control variables for per-CPU and per-rcu_node kthreads. These
39 * handle all flavors of RCU.
40 */
41static DEFINE_PER_CPU(struct task_struct *, rcu_cpu_kthread_task);
42DEFINE_PER_CPU(unsigned int, rcu_cpu_kthread_status);
43DEFINE_PER_CPU(unsigned int, rcu_cpu_kthread_loops);
44DEFINE_PER_CPU(char, rcu_cpu_has_work);
45
Paul E. McKenney727b7052015-03-03 14:49:26 -080046#else /* #ifdef CONFIG_RCU_BOOST */
47
48/*
49 * Some architectures do not define rt_mutexes, but if !CONFIG_RCU_BOOST,
50 * all uses are in dead code. Provide a definition to keep the compiler
51 * happy, but add WARN_ON_ONCE() to complain if used in the wrong place.
52 * This probably needs to be excluded from -rt builds.
53 */
54#define rt_mutex_owner(a) ({ WARN_ON_ONCE(1); NULL; })
55
56#endif /* #else #ifdef CONFIG_RCU_BOOST */
Mike Galbraith5b61b0b2011-08-19 11:39:11 -070057
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -070058#ifdef CONFIG_RCU_NOCB_CPU
59static cpumask_var_t rcu_nocb_mask; /* CPUs to have callbacks offloaded. */
60static bool have_rcu_nocb_mask; /* Was rcu_nocb_mask allocated? */
Paul Gortmaker1b0048a2012-12-20 13:19:22 -080061static bool __read_mostly rcu_nocb_poll; /* Offload kthread are to poll. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -070062#endif /* #ifdef CONFIG_RCU_NOCB_CPU */
63
Paul E. McKenney26845c22010-04-13 14:19:23 -070064/*
65 * Check the RCU kernel configuration parameters and print informative
Paul E. McKenney699d4032015-09-29 08:47:49 -070066 * messages about anything out of the ordinary.
Paul E. McKenney26845c22010-04-13 14:19:23 -070067 */
68static void __init rcu_bootup_announce_oddness(void)
69{
Paul E. McKenneyab6f5bd2015-01-21 16:58:06 -080070 if (IS_ENABLED(CONFIG_RCU_TRACE))
71 pr_info("\tRCU debugfs-based tracing is enabled.\n");
Paul E. McKenney05c5df32015-04-20 14:27:43 -070072 if ((IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 64) ||
73 (!IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 32))
Paul E. McKenneyab6f5bd2015-01-21 16:58:06 -080074 pr_info("\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
Paul E. McKenney05c5df32015-04-20 14:27:43 -070075 RCU_FANOUT);
Paul E. McKenney7fa27002015-04-20 10:27:15 -070076 if (rcu_fanout_exact)
Paul E. McKenneyab6f5bd2015-01-21 16:58:06 -080077 pr_info("\tHierarchical RCU autobalancing is disabled.\n");
78 if (IS_ENABLED(CONFIG_RCU_FAST_NO_HZ))
79 pr_info("\tRCU dyntick-idle grace-period acceleration is enabled.\n");
80 if (IS_ENABLED(CONFIG_PROVE_RCU))
81 pr_info("\tRCU lockdep checking is enabled.\n");
Alexander Gordeev42621692015-06-03 08:18:31 +020082 if (RCU_NUM_LVLS >= 4)
83 pr_info("\tFour(or more)-level hierarchy is enabled.\n");
Paul E. McKenney47d631a2015-04-21 09:12:13 -070084 if (RCU_FANOUT_LEAF != 16)
Paul E. McKenneya3bd2c02015-01-21 20:58:57 -080085 pr_info("\tBuild-time adjustment of leaf fanout to %d.\n",
Paul E. McKenney47d631a2015-04-21 09:12:13 -070086 RCU_FANOUT_LEAF);
87 if (rcu_fanout_leaf != RCU_FANOUT_LEAF)
Paul E. McKenney9a5739d2013-03-28 20:48:36 -070088 pr_info("\tBoot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf);
Paul E. McKenneycca6f392012-05-08 21:00:28 -070089 if (nr_cpu_ids != NR_CPUS)
Paul E. McKenneyefc151c2013-03-18 16:24:11 -070090 pr_info("\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%d.\n", NR_CPUS, nr_cpu_ids);
Paul E. McKenneyab6f5bd2015-01-21 16:58:06 -080091 if (IS_ENABLED(CONFIG_RCU_BOOST))
92 pr_info("\tRCU kthread priority: %d.\n", kthread_prio);
Paul E. McKenney26845c22010-04-13 14:19:23 -070093}
94
Pranith Kumar28f65692014-09-22 14:00:48 -040095#ifdef CONFIG_PREEMPT_RCU
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070096
Steven Rostedt (Red Hat)a41bfeb2013-07-12 17:00:28 -040097RCU_STATE_INITIALIZER(rcu_preempt, 'p', call_rcu);
Paul E. McKenneyb28a7c02015-03-04 07:39:27 -080098static struct rcu_state *const rcu_state_p = &rcu_preempt_state;
Paul E. McKenney2927a682015-03-04 07:53:04 -080099static struct rcu_data __percpu *const rcu_data_p = &rcu_preempt_data;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700100
Paul E. McKenneyd19fb8d2014-10-31 12:56:16 -0700101static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
102 bool wake);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800103
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700104/*
105 * Tell them what RCU they are running.
106 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800107static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700108{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -0700109 pr_info("Preemptible hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700110 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700111}
112
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700113/* Flags for rcu_preempt_ctxt_queue() decision table. */
114#define RCU_GP_TASKS 0x8
115#define RCU_EXP_TASKS 0x4
116#define RCU_GP_BLKD 0x2
117#define RCU_EXP_BLKD 0x1
118
119/*
120 * Queues a task preempted within an RCU-preempt read-side critical
121 * section into the appropriate location within the ->blkd_tasks list,
122 * depending on the states of any ongoing normal and expedited grace
123 * periods. The ->gp_tasks pointer indicates which element the normal
124 * grace period is waiting on (NULL if none), and the ->exp_tasks pointer
125 * indicates which element the expedited grace period is waiting on (again,
126 * NULL if none). If a grace period is waiting on a given element in the
127 * ->blkd_tasks list, it also waits on all subsequent elements. Thus,
128 * adding a task to the tail of the list blocks any grace period that is
129 * already waiting on one of the elements. In contrast, adding a task
130 * to the head of the list won't block any grace period that is already
131 * waiting on one of the elements.
132 *
133 * This queuing is imprecise, and can sometimes make an ongoing grace
134 * period wait for a task that is not strictly speaking blocking it.
135 * Given the choice, we needlessly block a normal grace period rather than
136 * blocking an expedited grace period.
137 *
138 * Note that an endless sequence of expedited grace periods still cannot
139 * indefinitely postpone a normal grace period. Eventually, all of the
140 * fixed number of preempted tasks blocking the normal grace period that are
141 * not also blocking the expedited grace period will resume and complete
142 * their RCU read-side critical sections. At that point, the ->gp_tasks
143 * pointer will equal the ->exp_tasks pointer, at which point the end of
144 * the corresponding expedited grace period will also be the end of the
145 * normal grace period.
146 */
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700147static void rcu_preempt_ctxt_queue(struct rcu_node *rnp, struct rcu_data *rdp)
148 __releases(rnp->lock) /* But leaves rrupts disabled. */
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700149{
150 int blkd_state = (rnp->gp_tasks ? RCU_GP_TASKS : 0) +
151 (rnp->exp_tasks ? RCU_EXP_TASKS : 0) +
152 (rnp->qsmask & rdp->grpmask ? RCU_GP_BLKD : 0) +
153 (rnp->expmask & rdp->grpmask ? RCU_EXP_BLKD : 0);
154 struct task_struct *t = current;
155
156 /*
157 * Decide where to queue the newly blocked task. In theory,
158 * this could be an if-statement. In practice, when I tried
159 * that, it was quite messy.
160 */
161 switch (blkd_state) {
162 case 0:
163 case RCU_EXP_TASKS:
164 case RCU_EXP_TASKS + RCU_GP_BLKD:
165 case RCU_GP_TASKS:
166 case RCU_GP_TASKS + RCU_EXP_TASKS:
167
168 /*
169 * Blocking neither GP, or first task blocking the normal
170 * GP but not blocking the already-waiting expedited GP.
171 * Queue at the head of the list to avoid unnecessarily
172 * blocking the already-waiting GPs.
173 */
174 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
175 break;
176
177 case RCU_EXP_BLKD:
178 case RCU_GP_BLKD:
179 case RCU_GP_BLKD + RCU_EXP_BLKD:
180 case RCU_GP_TASKS + RCU_EXP_BLKD:
181 case RCU_GP_TASKS + RCU_GP_BLKD + RCU_EXP_BLKD:
182 case RCU_GP_TASKS + RCU_EXP_TASKS + RCU_GP_BLKD + RCU_EXP_BLKD:
183
184 /*
185 * First task arriving that blocks either GP, or first task
186 * arriving that blocks the expedited GP (with the normal
187 * GP already waiting), or a task arriving that blocks
188 * both GPs with both GPs already waiting. Queue at the
189 * tail of the list to avoid any GP waiting on any of the
190 * already queued tasks that are not blocking it.
191 */
192 list_add_tail(&t->rcu_node_entry, &rnp->blkd_tasks);
193 break;
194
195 case RCU_EXP_TASKS + RCU_EXP_BLKD:
196 case RCU_EXP_TASKS + RCU_GP_BLKD + RCU_EXP_BLKD:
197 case RCU_GP_TASKS + RCU_EXP_TASKS + RCU_EXP_BLKD:
198
199 /*
200 * Second or subsequent task blocking the expedited GP.
201 * The task either does not block the normal GP, or is the
202 * first task blocking the normal GP. Queue just after
203 * the first task blocking the expedited GP.
204 */
205 list_add(&t->rcu_node_entry, rnp->exp_tasks);
206 break;
207
208 case RCU_GP_TASKS + RCU_GP_BLKD:
209 case RCU_GP_TASKS + RCU_EXP_TASKS + RCU_GP_BLKD:
210
211 /*
212 * Second or subsequent task blocking the normal GP.
213 * The task does not block the expedited GP. Queue just
214 * after the first task blocking the normal GP.
215 */
216 list_add(&t->rcu_node_entry, rnp->gp_tasks);
217 break;
218
219 default:
220
221 /* Yet another exercise in excessive paranoia. */
222 WARN_ON_ONCE(1);
223 break;
224 }
225
226 /*
227 * We have now queued the task. If it was the first one to
228 * block either grace period, update the ->gp_tasks and/or
229 * ->exp_tasks pointers, respectively, to reference the newly
230 * blocked tasks.
231 */
232 if (!rnp->gp_tasks && (blkd_state & RCU_GP_BLKD))
233 rnp->gp_tasks = &t->rcu_node_entry;
234 if (!rnp->exp_tasks && (blkd_state & RCU_EXP_BLKD))
235 rnp->exp_tasks = &t->rcu_node_entry;
Boqun Feng67c583a72015-12-29 12:18:47 +0800236 raw_spin_unlock_rcu_node(rnp); /* interrupts remain disabled. */
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700237
238 /*
239 * Report the quiescent state for the expedited GP. This expedited
240 * GP should not be able to end until we report, so there should be
241 * no need to check for a subsequent expedited GP. (Though we are
242 * still in a quiescent state in any case.)
243 */
244 if (blkd_state & RCU_EXP_BLKD &&
245 t->rcu_read_unlock_special.b.exp_need_qs) {
246 t->rcu_read_unlock_special.b.exp_need_qs = false;
247 rcu_report_exp_rdp(rdp->rsp, rdp, true);
248 } else {
249 WARN_ON_ONCE(t->rcu_read_unlock_special.b.exp_need_qs);
250 }
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700251}
252
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700253/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800254 * Record a preemptible-RCU quiescent state for the specified CPU. Note
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700255 * that this just means that the task currently running on the CPU is
256 * not in a quiescent state. There might be any number of tasks blocked
257 * while in an RCU read-side critical section.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700258 *
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700259 * As with the other rcu_*_qs() functions, callers to this function
260 * must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700261 */
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700262static void rcu_preempt_qs(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700263{
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700264 if (__this_cpu_read(rcu_data_p->cpu_no_qs.s)) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700265 trace_rcu_grace_period(TPS("rcu_preempt"),
Paul E. McKenney2927a682015-03-04 07:53:04 -0800266 __this_cpu_read(rcu_data_p->gpnum),
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700267 TPS("cpuqs"));
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700268 __this_cpu_write(rcu_data_p->cpu_no_qs.b.norm, false);
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700269 barrier(); /* Coordinate with rcu_preempt_check_callbacks(). */
270 current->rcu_read_unlock_special.b.need_qs = false;
271 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700272}
273
274/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700275 * We have entered the scheduler, and the current task might soon be
276 * context-switched away from. If this task is in an RCU read-side
277 * critical section, we will no longer be able to rely on the CPU to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800278 * record that fact, so we enqueue the task on the blkd_tasks list.
279 * The task will dequeue itself when it exits the outermost enclosing
280 * RCU read-side critical section. Therefore, the current grace period
281 * cannot be permitted to complete until the blkd_tasks list entries
282 * predating the current grace period drain, in other words, until
283 * rnp->gp_tasks becomes NULL.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700284 *
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700285 * Caller must disable interrupts.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700286 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700287static void rcu_preempt_note_context_switch(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700288{
289 struct task_struct *t = current;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700290 struct rcu_data *rdp;
291 struct rcu_node *rnp;
292
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700293 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700294 !t->rcu_read_unlock_special.b.blocked) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700295
296 /* Possibly blocking in an RCU read-side critical section. */
Paul E. McKenneye63c8872015-03-03 12:56:43 -0800297 rdp = this_cpu_ptr(rcu_state_p->rda);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700298 rnp = rdp->mynode;
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700299 raw_spin_lock_rcu_node(rnp);
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700300 t->rcu_read_unlock_special.b.blocked = true;
Paul E. McKenney86848962009-08-27 15:00:12 -0700301 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700302
303 /*
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700304 * Verify the CPU's sanity, trace the preemption, and
305 * then queue the task as required based on the states
306 * of any ongoing and expedited grace periods.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700307 */
Paul E. McKenney0aa04b02015-01-23 21:52:37 -0800308 WARN_ON_ONCE((rdp->grpmask & rcu_rnp_online_cpus(rnp)) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700309 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700310 trace_rcu_preempt_task(rdp->rsp->name,
311 t->pid,
312 (rnp->qsmask & rdp->grpmask)
313 ? rnp->gpnum
314 : rnp->gpnum + 1);
Paul E. McKenney46a5d162015-10-07 09:10:48 -0700315 rcu_preempt_ctxt_queue(rnp, rdp);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700316 } else if (t->rcu_read_lock_nesting < 0 &&
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700317 t->rcu_read_unlock_special.s) {
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700318
319 /*
320 * Complete exit from RCU read-side critical section on
321 * behalf of preempted instance of __rcu_read_unlock().
322 */
323 rcu_read_unlock_special(t);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700324 }
325
326 /*
327 * Either we were not in an RCU read-side critical section to
328 * begin with, or we have now recorded that critical section
329 * globally. Either way, we can now note a quiescent state
330 * for this CPU. Again, if we were in an RCU read-side critical
331 * section, and if that critical section was blocking the current
332 * grace period, then the fact that the task has been enqueued
333 * means that we continue to block the current grace period.
334 */
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700335 rcu_preempt_qs();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700336}
337
338/*
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700339 * Check for preempted RCU readers blocking the current grace period
340 * for the specified rcu_node structure. If the caller needs a reliable
341 * answer, it must hold the rcu_node's ->lock.
342 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800343static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700344{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800345 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700346}
347
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800348/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800349 * Advance a ->blkd_tasks-list pointer to the next entry, instead
350 * returning NULL if at the end of the list.
351 */
352static struct list_head *rcu_next_node_entry(struct task_struct *t,
353 struct rcu_node *rnp)
354{
355 struct list_head *np;
356
357 np = t->rcu_node_entry.next;
358 if (np == &rnp->blkd_tasks)
359 np = NULL;
360 return np;
361}
362
363/*
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -0700364 * Return true if the specified rcu_node structure has tasks that were
365 * preempted within an RCU read-side critical section.
366 */
367static bool rcu_preempt_has_tasks(struct rcu_node *rnp)
368{
369 return !list_empty(&rnp->blkd_tasks);
370}
371
372/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800373 * Handle special cases during rcu_read_unlock(), such as needing to
374 * notify RCU core processing or task having blocked during the RCU
375 * read-side critical section.
376 */
Paul E. McKenney2a3fa842012-05-21 11:58:36 -0700377void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700378{
Paul E. McKenneyb6a932d2014-10-31 12:05:04 -0700379 bool empty_exp;
380 bool empty_norm;
381 bool empty_exp_now;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700382 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800383 struct list_head *np;
Paul E. McKenneyabaa93d2014-06-12 13:30:25 -0700384 bool drop_boost_mutex = false;
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700385 struct rcu_data *rdp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700386 struct rcu_node *rnp;
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700387 union rcu_special special;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700388
389 /* NMI handlers cannot block and cannot safely manipulate state. */
390 if (in_nmi())
391 return;
392
393 local_irq_save(flags);
394
395 /*
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700396 * If RCU core is waiting for this CPU to exit its critical section,
397 * report the fact that it has exited. Because irqs are disabled,
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700398 * t->rcu_read_unlock_special cannot change.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700399 */
400 special = t->rcu_read_unlock_special;
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700401 if (special.b.need_qs) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700402 rcu_preempt_qs();
Paul E. McKenneyc0135d02015-01-22 22:47:14 -0800403 t->rcu_read_unlock_special.b.need_qs = false;
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700404 if (!t->rcu_read_unlock_special.s) {
Lai Jiangshan79a62f92013-10-30 04:13:22 -0700405 local_irq_restore(flags);
406 return;
407 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700408 }
409
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700410 /*
411 * Respond to a request for an expedited grace period, but only if
412 * we were not preempted, meaning that we were running on the same
413 * CPU throughout. If we were preempted, the exp_need_qs flag
414 * would have been cleared at the time of the first preemption,
415 * and the quiescent state would be reported when we were dequeued.
416 */
417 if (special.b.exp_need_qs) {
418 WARN_ON_ONCE(special.b.blocked);
419 t->rcu_read_unlock_special.b.exp_need_qs = false;
420 rdp = this_cpu_ptr(rcu_state_p->rda);
421 rcu_report_exp_rdp(rcu_state_p, rdp, true);
422 if (!t->rcu_read_unlock_special.s) {
423 local_irq_restore(flags);
424 return;
425 }
426 }
427
Lai Jiangshan79a62f92013-10-30 04:13:22 -0700428 /* Hardware IRQ handlers cannot block, complain if they get here. */
Paul E. McKenneyd24209bb2015-01-21 15:26:03 -0800429 if (in_irq() || in_serving_softirq()) {
430 lockdep_rcu_suspicious(__FILE__, __LINE__,
431 "rcu_read_unlock() from irq or softirq with blocking in critical section!!!\n");
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700432 pr_alert("->rcu_read_unlock_special: %#x (b: %d, enq: %d nq: %d)\n",
Paul E. McKenneyd24209bb2015-01-21 15:26:03 -0800433 t->rcu_read_unlock_special.s,
434 t->rcu_read_unlock_special.b.blocked,
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700435 t->rcu_read_unlock_special.b.exp_need_qs,
Paul E. McKenneyd24209bb2015-01-21 15:26:03 -0800436 t->rcu_read_unlock_special.b.need_qs);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700437 local_irq_restore(flags);
438 return;
439 }
440
441 /* Clean up if blocked during RCU read-side critical section. */
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700442 if (special.b.blocked) {
443 t->rcu_read_unlock_special.b.blocked = false;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700444
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700445 /*
Paul E. McKenney0a0ba1c2015-03-08 14:20:30 -0700446 * Remove this task from the list it blocked on. The task
Paul E. McKenney8ba91532015-09-29 07:55:41 -0700447 * now remains queued on the rcu_node corresponding to the
448 * CPU it first blocked on, so there is no longer any need
449 * to loop. Retain a WARN_ON_ONCE() out of sheer paranoia.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700450 */
Paul E. McKenney8ba91532015-09-29 07:55:41 -0700451 rnp = t->rcu_blocked_node;
452 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
453 WARN_ON_ONCE(rnp != t->rcu_blocked_node);
Paul E. McKenney74e871ac2014-10-30 21:08:53 -0700454 empty_norm = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700455 empty_exp = sync_rcu_preempt_exp_done(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800456 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800457 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700458 list_del_init(&t->rcu_node_entry);
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700459 t->rcu_blocked_node = NULL;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400460 trace_rcu_unlock_preempted_task(TPS("rcu_preempt"),
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700461 rnp->gpnum, t->pid);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800462 if (&t->rcu_node_entry == rnp->gp_tasks)
463 rnp->gp_tasks = np;
464 if (&t->rcu_node_entry == rnp->exp_tasks)
465 rnp->exp_tasks = np;
Paul E. McKenney727b7052015-03-03 14:49:26 -0800466 if (IS_ENABLED(CONFIG_RCU_BOOST)) {
467 if (&t->rcu_node_entry == rnp->boost_tasks)
468 rnp->boost_tasks = np;
469 /* Snapshot ->boost_mtx ownership w/rnp->lock held. */
470 drop_boost_mutex = rt_mutex_owner(&rnp->boost_mtx) == t;
471 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700472
473 /*
474 * If this was the last task on the current list, and if
475 * we aren't waiting on any CPUs, report the quiescent state.
Paul E. McKenney389abd42011-09-21 14:41:37 -0700476 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
477 * so we must take a snapshot of the expedited state.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700478 */
Paul E. McKenney8203d6d2015-08-02 13:53:17 -0700479 empty_exp_now = sync_rcu_preempt_exp_done(rnp);
Paul E. McKenney74e871ac2014-10-30 21:08:53 -0700480 if (!empty_norm && !rcu_preempt_blocked_readers_cgp(rnp)) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400481 trace_rcu_quiescent_state_report(TPS("preempt_rcu"),
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700482 rnp->gpnum,
483 0, rnp->qsmask,
484 rnp->level,
485 rnp->grplo,
486 rnp->grphi,
487 !!rnp->gp_tasks);
Paul E. McKenneye63c8872015-03-03 12:56:43 -0800488 rcu_report_unblock_qs_rnp(rcu_state_p, rnp, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700489 } else {
Boqun Feng67c583a72015-12-29 12:18:47 +0800490 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700491 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800492
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800493 /* Unboost if we were boosted. */
Paul E. McKenney727b7052015-03-03 14:49:26 -0800494 if (IS_ENABLED(CONFIG_RCU_BOOST) && drop_boost_mutex)
Paul E. McKenneyabaa93d2014-06-12 13:30:25 -0700495 rt_mutex_unlock(&rnp->boost_mtx);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800496
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800497 /*
498 * If this was the last task on the expedited lists,
499 * then we need to report up the rcu_node hierarchy.
500 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700501 if (!empty_exp && empty_exp_now)
Paul E. McKenneye63c8872015-03-03 12:56:43 -0800502 rcu_report_exp_rnp(rcu_state_p, rnp, true);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800503 } else {
504 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700505 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700506}
507
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800508/*
509 * Dump detailed information for all tasks blocking the current RCU
510 * grace period on the specified rcu_node structure.
511 */
512static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
513{
514 unsigned long flags;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800515 struct task_struct *t;
516
Paul E. McKenney6cf10082015-10-08 15:36:54 -0700517 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney5fd4dc02012-08-10 16:00:11 -0700518 if (!rcu_preempt_blocked_readers_cgp(rnp)) {
Boqun Feng67c583a72015-12-29 12:18:47 +0800519 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney5fd4dc02012-08-10 16:00:11 -0700520 return;
521 }
Patrick Daly82efed02015-04-07 15:12:07 -0700522 t = list_entry(rnp->gp_tasks->prev,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800523 struct task_struct, rcu_node_entry);
524 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
525 sched_show_task(t);
Boqun Feng67c583a72015-12-29 12:18:47 +0800526 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800527}
528
529/*
530 * Dump detailed information for all tasks blocking the current RCU
531 * grace period.
532 */
533static void rcu_print_detail_task_stall(struct rcu_state *rsp)
534{
535 struct rcu_node *rnp = rcu_get_root(rsp);
536
537 rcu_print_detail_task_stall_rnp(rnp);
538 rcu_for_each_leaf_node(rsp, rnp)
539 rcu_print_detail_task_stall_rnp(rnp);
540}
541
Paul E. McKenneya858af22012-01-16 13:29:10 -0800542static void rcu_print_task_stall_begin(struct rcu_node *rnp)
543{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -0700544 pr_err("\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
Paul E. McKenneya858af22012-01-16 13:29:10 -0800545 rnp->level, rnp->grplo, rnp->grphi);
546}
547
548static void rcu_print_task_stall_end(void)
549{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -0700550 pr_cont("\n");
Paul E. McKenneya858af22012-01-16 13:29:10 -0800551}
552
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700553/*
554 * Scan the current list of tasks blocked within RCU read-side critical
555 * sections, printing out the tid of each.
556 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700557static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700558{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700559 struct task_struct *t;
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700560 int ndetected = 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700561
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800562 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700563 return 0;
Paul E. McKenneya858af22012-01-16 13:29:10 -0800564 rcu_print_task_stall_begin(rnp);
Patrick Daly82efed02015-04-07 15:12:07 -0700565 t = list_entry(rnp->gp_tasks->prev,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800566 struct task_struct, rcu_node_entry);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700567 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenneyefc151c2013-03-18 16:24:11 -0700568 pr_cont(" P%d", t->pid);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700569 ndetected++;
570 }
Paul E. McKenneya858af22012-01-16 13:29:10 -0800571 rcu_print_task_stall_end();
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700572 return ndetected;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700573}
574
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700575/*
Paul E. McKenney74611ec2015-08-18 10:20:43 -0700576 * Scan the current list of tasks blocked within RCU read-side critical
577 * sections, printing out the tid of each that is blocking the current
578 * expedited grace period.
579 */
580static int rcu_print_task_exp_stall(struct rcu_node *rnp)
581{
582 struct task_struct *t;
583 int ndetected = 0;
584
585 if (!rnp->exp_tasks)
586 return 0;
587 t = list_entry(rnp->exp_tasks->prev,
588 struct task_struct, rcu_node_entry);
589 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
590 pr_cont(" P%d", t->pid);
591 ndetected++;
592 }
593 return ndetected;
594}
595
596/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700597 * Check that the list of blocked tasks for the newly completed grace
598 * period is in fact empty. It is a serious bug to complete a grace
599 * period that still has RCU readers blocked! This function must be
600 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
601 * must be held by the caller.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800602 *
603 * Also, if there are blocked tasks on the list, they automatically
604 * block the newly created grace period, so set up ->gp_tasks accordingly.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700605 */
606static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
607{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800608 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney96e92022014-10-31 14:09:23 -0700609 if (rcu_preempt_has_tasks(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800610 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700611 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700612}
613
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700614/*
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700615 * Check for a quiescent state from the current CPU. When a task blocks,
616 * the task is recorded in the corresponding CPU's rcu_node structure,
617 * which is checked elsewhere.
618 *
619 * Caller must disable hard irqs.
620 */
Paul E. McKenney86aea0e2014-10-21 08:12:00 -0700621static void rcu_preempt_check_callbacks(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700622{
623 struct task_struct *t = current;
624
625 if (t->rcu_read_lock_nesting == 0) {
Paul E. McKenney284a8c92014-08-14 16:38:46 -0700626 rcu_preempt_qs();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700627 return;
628 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700629 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenney97c668b2015-08-06 11:31:51 -0700630 __this_cpu_read(rcu_data_p->core_needs_qs) &&
Paul E. McKenney5b74c452015-08-06 15:16:57 -0700631 __this_cpu_read(rcu_data_p->cpu_no_qs.b.norm))
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700632 t->rcu_read_unlock_special.b.need_qs = true;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700633}
634
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700635#ifdef CONFIG_RCU_BOOST
636
Shaohua Li09223372011-06-14 13:26:25 +0800637static void rcu_preempt_do_callbacks(void)
638{
Paul E. McKenney2927a682015-03-04 07:53:04 -0800639 rcu_do_batch(rcu_state_p, this_cpu_ptr(rcu_data_p));
Shaohua Li09223372011-06-14 13:26:25 +0800640}
641
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700642#endif /* #ifdef CONFIG_RCU_BOOST */
643
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700644/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800645 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700646 */
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800647void call_rcu(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700648{
Paul E. McKenneye63c8872015-03-03 12:56:43 -0800649 __call_rcu(head, func, rcu_state_p, -1, 0);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700650}
651EXPORT_SYMBOL_GPL(call_rcu);
652
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800653/**
654 * synchronize_rcu - wait until a grace period has elapsed.
655 *
656 * Control will return to the caller some time after a full grace
657 * period has elapsed, in other words after all currently executing RCU
Paul E. McKenney77d84852010-07-08 17:38:59 -0700658 * read-side critical sections have completed. Note, however, that
659 * upon return from synchronize_rcu(), the caller might well be executing
660 * concurrently with new RCU read-side critical sections that began while
661 * synchronize_rcu() was waiting. RCU read-side critical sections are
662 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -0700663 *
664 * See the description of synchronize_sched() for more detailed information
665 * on memory ordering guarantees.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800666 */
667void synchronize_rcu(void)
668{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700669 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
670 lock_is_held(&rcu_lock_map) ||
671 lock_is_held(&rcu_sched_lock_map),
672 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney90687fc2017-01-10 02:28:26 -0800673 if (rcu_scheduler_active == RCU_SCHEDULER_INACTIVE)
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800674 return;
Paul E. McKenney5afff482015-02-18 16:39:09 -0800675 if (rcu_gp_is_expedited())
Antti P Miettinen3705b882012-10-05 09:59:15 +0300676 synchronize_rcu_expedited();
677 else
678 wait_rcu_gp(call_rcu);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800679}
680EXPORT_SYMBOL_GPL(synchronize_rcu);
681
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700682/**
683 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -0700684 *
685 * Note that this primitive does not necessarily wait for an RCU grace period
686 * to complete. For example, if there are no RCU callbacks queued anywhere
687 * in the system, then rcu_barrier() is within its rights to return
688 * immediately, without waiting for anything, much less an RCU grace period.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700689 */
690void rcu_barrier(void)
691{
Paul E. McKenneye63c8872015-03-03 12:56:43 -0800692 _rcu_barrier(rcu_state_p);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700693}
694EXPORT_SYMBOL_GPL(rcu_barrier);
695
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700696/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800697 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700698 */
699static void __init __rcu_init_preempt(void)
700{
Paul E. McKenneya87f2032015-10-20 12:38:49 -0700701 rcu_init_one(rcu_state_p);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700702}
703
Paul E. McKenney2439b692013-04-11 10:15:52 -0700704/*
705 * Check for a task exiting while in a preemptible-RCU read-side
706 * critical section, clean up if so. No need to issue warnings,
707 * as debug_check_no_locks_held() already does this if lockdep
708 * is enabled.
709 */
710void exit_rcu(void)
711{
712 struct task_struct *t = current;
713
714 if (likely(list_empty(&current->rcu_node_entry)))
715 return;
716 t->rcu_read_lock_nesting = 1;
717 barrier();
Paul E. McKenney1d082fd2014-08-14 16:01:53 -0700718 t->rcu_read_unlock_special.b.blocked = true;
Paul E. McKenney2439b692013-04-11 10:15:52 -0700719 __rcu_read_unlock();
720}
721
Pranith Kumar28f65692014-09-22 14:00:48 -0400722#else /* #ifdef CONFIG_PREEMPT_RCU */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700723
Paul E. McKenneyb28a7c02015-03-04 07:39:27 -0800724static struct rcu_state *const rcu_state_p = &rcu_sched_state;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800725
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700726/*
727 * Tell them what RCU they are running.
728 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800729static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700730{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -0700731 pr_info("Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700732 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700733}
734
735/*
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700736 * Because preemptible RCU does not exist, we never have to check for
737 * CPUs being in quiescent states.
738 */
Paul E. McKenney38200cf2014-10-21 12:50:04 -0700739static void rcu_preempt_note_context_switch(void)
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700740{
741}
742
743/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800744 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700745 * RCU readers.
746 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800747static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700748{
749 return 0;
750}
751
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -0700752/*
753 * Because there is no preemptible RCU, there can be no readers blocked.
754 */
755static bool rcu_preempt_has_tasks(struct rcu_node *rnp)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800756{
Paul E. McKenney8af3a5e2014-10-31 11:22:37 -0700757 return false;
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800758}
759
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700760/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800761 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700762 * tasks blocked within RCU read-side critical sections.
763 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800764static void rcu_print_detail_task_stall(struct rcu_state *rsp)
765{
766}
767
768/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800769 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800770 * tasks blocked within RCU read-side critical sections.
771 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700772static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700773{
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700774 return 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700775}
776
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700777/*
Paul E. McKenney74611ec2015-08-18 10:20:43 -0700778 * Because preemptible RCU does not exist, we never have to check for
779 * tasks blocked within RCU read-side critical sections that are
780 * blocking the current expedited grace period.
781 */
782static int rcu_print_task_exp_stall(struct rcu_node *rnp)
783{
784 return 0;
785}
786
787/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800788 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -0700789 * so there is no need to check for blocked tasks. So check only for
790 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700791 */
792static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
793{
Paul E. McKenney49e29122009-09-18 09:50:19 -0700794 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700795}
796
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700797/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800798 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700799 * to check.
800 */
Paul E. McKenney86aea0e2014-10-21 08:12:00 -0700801static void rcu_preempt_check_callbacks(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700802{
803}
804
805/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800806 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700807 * another name for rcu_barrier_sched().
808 */
809void rcu_barrier(void)
810{
811 rcu_barrier_sched();
812}
813EXPORT_SYMBOL_GPL(rcu_barrier);
814
815/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800816 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700817 */
818static void __init __rcu_init_preempt(void)
819{
820}
821
Paul E. McKenney2439b692013-04-11 10:15:52 -0700822/*
823 * Because preemptible RCU does not exist, tasks cannot possibly exit
824 * while in preemptible RCU read-side critical sections.
825 */
826void exit_rcu(void)
827{
828}
829
Pranith Kumar28f65692014-09-22 14:00:48 -0400830#endif /* #else #ifdef CONFIG_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -0800831
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800832#ifdef CONFIG_RCU_BOOST
833
Peter Zijlstra1696a8b2013-10-31 18:18:19 +0100834#include "../locking/rtmutex_common.h"
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800835
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800836#ifdef CONFIG_RCU_TRACE
837
838static void rcu_initiate_boost_trace(struct rcu_node *rnp)
839{
Paul E. McKenney96e92022014-10-31 14:09:23 -0700840 if (!rcu_preempt_has_tasks(rnp))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800841 rnp->n_balk_blkd_tasks++;
842 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
843 rnp->n_balk_exp_gp_tasks++;
844 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
845 rnp->n_balk_boost_tasks++;
846 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
847 rnp->n_balk_notblocked++;
848 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -0700849 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800850 rnp->n_balk_notyet++;
851 else
852 rnp->n_balk_nos++;
853}
854
855#else /* #ifdef CONFIG_RCU_TRACE */
856
857static void rcu_initiate_boost_trace(struct rcu_node *rnp)
858{
859}
860
861#endif /* #else #ifdef CONFIG_RCU_TRACE */
862
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +0000863static void rcu_wake_cond(struct task_struct *t, int status)
864{
865 /*
866 * If the thread is yielding, only wake it when this
867 * is invoked from idle
868 */
869 if (status != RCU_KTHREAD_YIELDING || is_idle_task(current))
870 wake_up_process(t);
871}
872
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800873/*
874 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
875 * or ->boost_tasks, advancing the pointer to the next task in the
876 * ->blkd_tasks list.
877 *
878 * Note that irqs must be enabled: boosting the task can block.
879 * Returns 1 if there are more tasks needing to be boosted.
880 */
881static int rcu_boost(struct rcu_node *rnp)
882{
883 unsigned long flags;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800884 struct task_struct *t;
885 struct list_head *tb;
886
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800887 if (READ_ONCE(rnp->exp_tasks) == NULL &&
888 READ_ONCE(rnp->boost_tasks) == NULL)
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800889 return 0; /* Nothing left to boost. */
890
Peter Zijlstra2a67e742015-10-08 12:24:23 +0200891 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800892
893 /*
894 * Recheck under the lock: all tasks in need of boosting
895 * might exit their RCU read-side critical sections on their own.
896 */
897 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
Boqun Feng67c583a72015-12-29 12:18:47 +0800898 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800899 return 0;
900 }
901
902 /*
903 * Preferentially boost tasks blocking expedited grace periods.
904 * This cannot starve the normal grace periods because a second
905 * expedited grace period must boost all blocked tasks, including
906 * those blocking the pre-existing normal grace period.
907 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800908 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800909 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800910 rnp->n_exp_boosts++;
911 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800912 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800913 rnp->n_normal_boosts++;
914 }
915 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800916
917 /*
918 * We boost task t by manufacturing an rt_mutex that appears to
919 * be held by task t. We leave a pointer to that rt_mutex where
920 * task t can find it, and task t will release the mutex when it
921 * exits its outermost RCU read-side critical section. Then
922 * simply acquiring this artificial rt_mutex will boost task
923 * t's priority. (Thanks to tglx for suggesting this approach!)
924 *
925 * Note that task t must acquire rnp->lock to remove itself from
926 * the ->blkd_tasks list, which it will do from exit() if from
927 * nowhere else. We therefore are guaranteed that task t will
928 * stay around at least until we drop rnp->lock. Note that
929 * rnp->lock also resolves races between our priority boosting
930 * and task t's exiting its outermost RCU read-side critical
931 * section.
932 */
933 t = container_of(tb, struct task_struct, rcu_node_entry);
Paul E. McKenneyabaa93d2014-06-12 13:30:25 -0700934 rt_mutex_init_proxy_locked(&rnp->boost_mtx, t);
Boqun Feng67c583a72015-12-29 12:18:47 +0800935 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenneyabaa93d2014-06-12 13:30:25 -0700936 /* Lock only for side effect: boosts task t's priority. */
937 rt_mutex_lock(&rnp->boost_mtx);
938 rt_mutex_unlock(&rnp->boost_mtx); /* Then keep lockdep happy. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800939
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800940 return READ_ONCE(rnp->exp_tasks) != NULL ||
941 READ_ONCE(rnp->boost_tasks) != NULL;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800942}
943
944/*
Paul E. McKenneybc17ea12015-06-06 08:11:43 -0700945 * Priority-boosting kthread, one per leaf rcu_node.
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800946 */
947static int rcu_boost_kthread(void *arg)
948{
949 struct rcu_node *rnp = (struct rcu_node *)arg;
950 int spincnt = 0;
951 int more2boost;
952
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400953 trace_rcu_utilization(TPS("Start boost kthread@init"));
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800954 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700955 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400956 trace_rcu_utilization(TPS("End boost kthread@rcu_wait"));
Peter Zijlstra08bca602011-05-20 16:06:29 -0700957 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400958 trace_rcu_utilization(TPS("Start boost kthread@rcu_wait"));
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700959 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800960 more2boost = rcu_boost(rnp);
961 if (more2boost)
962 spincnt++;
963 else
964 spincnt = 0;
965 if (spincnt > 10) {
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +0000966 rnp->boost_kthread_status = RCU_KTHREAD_YIELDING;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400967 trace_rcu_utilization(TPS("End boost kthread@rcu_yield"));
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +0000968 schedule_timeout_interruptible(2);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400969 trace_rcu_utilization(TPS("Start boost kthread@rcu_yield"));
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800970 spincnt = 0;
971 }
972 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700973 /* NOTREACHED */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -0400974 trace_rcu_utilization(TPS("End boost kthread@notreached"));
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800975 return 0;
976}
977
978/*
979 * Check to see if it is time to start boosting RCU readers that are
980 * blocking the current grace period, and, if so, tell the per-rcu_node
981 * kthread to start boosting them. If there is an expedited grace
982 * period in progress, it is always time to boost.
983 *
Paul E. McKenneyb065a852012-08-01 15:57:54 -0700984 * The caller must hold rnp->lock, which this function releases.
985 * The ->boost_kthread_task is immortal, so we don't need to worry
986 * about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800987 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700988static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Pranith Kumar615e41c2014-06-11 16:39:40 -0400989 __releases(rnp->lock)
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800990{
991 struct task_struct *t;
992
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800993 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
994 rnp->n_balk_exp_gp_tasks++;
Boqun Feng67c583a72015-12-29 12:18:47 +0800995 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800996 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800997 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800998 if (rnp->exp_tasks != NULL ||
999 (rnp->gp_tasks != NULL &&
1000 rnp->boost_tasks == NULL &&
1001 rnp->qsmask == 0 &&
1002 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1003 if (rnp->exp_tasks == NULL)
1004 rnp->boost_tasks = rnp->gp_tasks;
Boqun Feng67c583a72015-12-29 12:18:47 +08001005 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001006 t = rnp->boost_kthread_task;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001007 if (t)
1008 rcu_wake_cond(t, rnp->boost_kthread_status);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001009 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001010 rcu_initiate_boost_trace(rnp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001011 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001012 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001013}
1014
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001015/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001016 * Wake up the per-CPU kthread to invoke RCU callbacks.
1017 */
1018static void invoke_rcu_callbacks_kthread(void)
1019{
1020 unsigned long flags;
1021
1022 local_irq_save(flags);
1023 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001024 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001025 current != __this_cpu_read(rcu_cpu_kthread_task)) {
1026 rcu_wake_cond(__this_cpu_read(rcu_cpu_kthread_task),
1027 __this_cpu_read(rcu_cpu_kthread_status));
1028 }
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001029 local_irq_restore(flags);
1030}
1031
1032/*
Paul E. McKenneydff16722011-11-29 15:57:13 -08001033 * Is the current CPU running the RCU-callbacks kthread?
1034 * Caller must have preemption disabled.
1035 */
1036static bool rcu_is_callbacks_kthread(void)
1037{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001038 return __this_cpu_read(rcu_cpu_kthread_task) == current;
Paul E. McKenneydff16722011-11-29 15:57:13 -08001039}
1040
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001041#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1042
1043/*
1044 * Do priority-boost accounting for the start of a new grace period.
1045 */
1046static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1047{
1048 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1049}
1050
1051/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001052 * Create an RCU-boost kthread for the specified node if one does not
1053 * already exist. We only create this kthread for preemptible RCU.
1054 * Returns zero if all is well, a negated errno otherwise.
1055 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001056static int rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001057 struct rcu_node *rnp)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001058{
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001059 int rnp_index = rnp - &rsp->node[0];
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001060 unsigned long flags;
1061 struct sched_param sp;
1062 struct task_struct *t;
1063
Paul E. McKenneye63c8872015-03-03 12:56:43 -08001064 if (rcu_state_p != rsp)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001065 return 0;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001066
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001067 if (!rcu_scheduler_fully_active || rcu_rnp_online_cpus(rnp) == 0)
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001068 return 0;
1069
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001070 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001071 if (rnp->boost_kthread_task != NULL)
1072 return 0;
1073 t = kthread_create(rcu_boost_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001074 "rcub/%d", rnp_index);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001075 if (IS_ERR(t))
1076 return PTR_ERR(t);
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001077 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001078 rnp->boost_kthread_task = t;
Boqun Feng67c583a72015-12-29 12:18:47 +08001079 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Clark Williams21871d72014-09-12 21:21:09 -05001080 sp.sched_priority = kthread_prio;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001081 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001082 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001083 return 0;
1084}
1085
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001086static void rcu_kthread_do_work(void)
1087{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001088 rcu_do_batch(&rcu_sched_state, this_cpu_ptr(&rcu_sched_data));
1089 rcu_do_batch(&rcu_bh_state, this_cpu_ptr(&rcu_bh_data));
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001090 rcu_preempt_do_callbacks();
1091}
1092
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001093static void rcu_cpu_kthread_setup(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001094{
1095 struct sched_param sp;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001096
Clark Williams21871d72014-09-12 21:21:09 -05001097 sp.sched_priority = kthread_prio;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001098 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001099}
1100
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001101static void rcu_cpu_kthread_park(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001102{
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001103 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1104}
1105
1106static int rcu_cpu_kthread_should_run(unsigned int cpu)
1107{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001108 return __this_cpu_read(rcu_cpu_has_work);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001109}
1110
1111/*
1112 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07001113 * RCU softirq used in flavors and configurations of RCU that do not
1114 * support RCU priority boosting.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001115 */
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001116static void rcu_cpu_kthread(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001117{
Christoph Lameterc9d4b0a2013-08-31 13:34:10 -07001118 unsigned int *statusp = this_cpu_ptr(&rcu_cpu_kthread_status);
1119 char work, *workp = this_cpu_ptr(&rcu_cpu_has_work);
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001120 int spincnt;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001121
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001122 for (spincnt = 0; spincnt < 10; spincnt++) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001123 trace_rcu_utilization(TPS("Start CPU kthread@rcu_wait"));
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001124 local_bh_disable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001125 *statusp = RCU_KTHREAD_RUNNING;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001126 this_cpu_inc(rcu_cpu_kthread_loops);
1127 local_irq_disable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001128 work = *workp;
1129 *workp = 0;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001130 local_irq_enable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001131 if (work)
1132 rcu_kthread_do_work();
1133 local_bh_enable();
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001134 if (*workp == 0) {
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001135 trace_rcu_utilization(TPS("End CPU kthread@rcu_wait"));
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001136 *statusp = RCU_KTHREAD_WAITING;
1137 return;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001138 }
1139 }
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001140 *statusp = RCU_KTHREAD_YIELDING;
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001141 trace_rcu_utilization(TPS("Start CPU kthread@rcu_yield"));
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001142 schedule_timeout_interruptible(2);
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001143 trace_rcu_utilization(TPS("End CPU kthread@rcu_yield"));
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001144 *statusp = RCU_KTHREAD_WAITING;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001145}
1146
1147/*
1148 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1149 * served by the rcu_node in question. The CPU hotplug lock is still
1150 * held, so the value of rnp->qsmaskinit will be stable.
1151 *
1152 * We don't include outgoingcpu in the affinity set, use -1 if there is
1153 * no outgoing CPU. If there are no CPUs left in the affinity set,
1154 * this function allows the kthread to execute on any CPU.
1155 */
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001156static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001157{
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001158 struct task_struct *t = rnp->boost_kthread_task;
Paul E. McKenney0aa04b02015-01-23 21:52:37 -08001159 unsigned long mask = rcu_rnp_online_cpus(rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001160 cpumask_var_t cm;
1161 int cpu;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001162
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001163 if (!t)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001164 return;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001165 if (!zalloc_cpumask_var(&cm, GFP_KERNEL))
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001166 return;
Mark Rutlandbc75e992016-06-03 15:20:04 +01001167 for_each_leaf_node_possible_cpu(rnp, cpu)
1168 if ((mask & leaf_node_cpu_bit(rnp, cpu)) &&
1169 cpu != outgoingcpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001170 cpumask_set_cpu(cpu, cm);
Paul E. McKenney5d0b0242014-11-10 08:07:08 -08001171 if (cpumask_weight(cm) == 0)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001172 cpumask_setall(cm);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001173 set_cpus_allowed_ptr(t, cm);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001174 free_cpumask_var(cm);
1175}
1176
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001177static struct smp_hotplug_thread rcu_cpu_thread_spec = {
1178 .store = &rcu_cpu_kthread_task,
1179 .thread_should_run = rcu_cpu_kthread_should_run,
1180 .thread_fn = rcu_cpu_kthread,
1181 .thread_comm = "rcuc/%u",
1182 .setup = rcu_cpu_kthread_setup,
1183 .park = rcu_cpu_kthread_park,
1184};
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001185
1186/*
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07001187 * Spawn boost kthreads -- called as soon as the scheduler is running.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001188 */
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07001189static void __init rcu_spawn_boost_kthreads(void)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001190{
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001191 struct rcu_node *rnp;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001192 int cpu;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001193
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001194 for_each_possible_cpu(cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001195 per_cpu(rcu_cpu_has_work, cpu) = 0;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001196 BUG_ON(smpboot_register_percpu_thread(&rcu_cpu_thread_spec));
Paul E. McKenney3e9f5c72014-11-03 18:15:17 -08001197 rcu_for_each_leaf_node(rcu_state_p, rnp)
1198 (void)rcu_spawn_one_boost_kthread(rcu_state_p, rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001199}
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001200
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001201static void rcu_prepare_kthreads(int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001202{
Uma Sharmae5341652014-03-23 22:32:09 -07001203 struct rcu_data *rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001204 struct rcu_node *rnp = rdp->mynode;
1205
1206 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001207 if (rcu_scheduler_fully_active)
Uma Sharmae5341652014-03-23 22:32:09 -07001208 (void)rcu_spawn_one_boost_kthread(rcu_state_p, rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001209}
1210
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001211#else /* #ifdef CONFIG_RCU_BOOST */
1212
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001213static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Pranith Kumar615e41c2014-06-11 16:39:40 -04001214 __releases(rnp->lock)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001215{
Boqun Feng67c583a72015-12-29 12:18:47 +08001216 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001217}
1218
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001219static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001220{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001221 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001222}
1223
Paul E. McKenneydff16722011-11-29 15:57:13 -08001224static bool rcu_is_callbacks_kthread(void)
1225{
1226 return false;
1227}
1228
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001229static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1230{
1231}
1232
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001233static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001234{
1235}
1236
Paul E. McKenney9386c0b2014-07-13 12:00:53 -07001237static void __init rcu_spawn_boost_kthreads(void)
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001238{
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001239}
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001240
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001241static void rcu_prepare_kthreads(int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001242{
1243}
1244
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001245#endif /* #else #ifdef CONFIG_RCU_BOOST */
1246
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001247#if !defined(CONFIG_RCU_FAST_NO_HZ)
1248
1249/*
1250 * Check to see if any future RCU-related work will need to be done
1251 * by the current CPU, even if none need be done immediately, returning
1252 * 1 if so. This function is part of the RCU implementation; it is -not-
1253 * an exported member of the RCU API.
1254 *
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001255 * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
1256 * any flavor of RCU.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001257 */
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001258int rcu_needs_cpu(u64 basemono, u64 *nextevt)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001259{
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001260 *nextevt = KTIME_MAX;
Paul E. McKenney3382adb2015-03-04 15:41:24 -08001261 return IS_ENABLED(CONFIG_RCU_NOCB_CPU_ALL)
1262 ? 0 : rcu_cpu_has_callbacks(NULL);
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001263}
1264
1265/*
1266 * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
1267 * after it.
1268 */
Paul E. McKenney8fa78452014-10-22 15:07:37 -07001269static void rcu_cleanup_after_idle(void)
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001270{
1271}
1272
1273/*
Paul E. McKenneya858af22012-01-16 13:29:10 -08001274 * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n,
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001275 * is nothing.
1276 */
Paul E. McKenney198bbf82014-10-22 15:03:43 -07001277static void rcu_prepare_for_idle(void)
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001278{
1279}
1280
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001281/*
1282 * Don't bother keeping a running count of the number of RCU callbacks
1283 * posted because CONFIG_RCU_FAST_NO_HZ=n.
1284 */
1285static void rcu_idle_count_callbacks_posted(void)
1286{
1287}
1288
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001289#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1290
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001291/*
1292 * This code is invoked when a CPU goes idle, at which point we want
1293 * to have the CPU do everything required for RCU so that it can enter
1294 * the energy-efficient dyntick-idle mode. This is handled by a
1295 * state machine implemented by rcu_prepare_for_idle() below.
1296 *
1297 * The following three proprocessor symbols control this state machine:
1298 *
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001299 * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted
1300 * to sleep in dyntick-idle mode with RCU callbacks pending. This
1301 * is sized to be roughly one RCU grace period. Those energy-efficiency
1302 * benchmarkers who might otherwise be tempted to set this to a large
1303 * number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your
1304 * system. And if you are -that- concerned about energy efficiency,
1305 * just power the system down and be done with it!
Paul E. McKenney778d2502012-01-10 14:13:24 -08001306 * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is
1307 * permitted to sleep in dyntick-idle mode with only lazy RCU
1308 * callbacks pending. Setting this too high can OOM your system.
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001309 *
1310 * The values below work well in practice. If future workloads require
1311 * adjustment, they can be converted into kernel config parameters, though
1312 * making the state machine smarter might be a better option.
1313 */
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001314#define RCU_IDLE_GP_DELAY 4 /* Roughly one grace period. */
Paul E. McKenney778d2502012-01-10 14:13:24 -08001315#define RCU_IDLE_LAZY_GP_DELAY (6 * HZ) /* Roughly six seconds. */
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001316
Paul E. McKenney5e44ce32012-12-12 12:35:29 -08001317static int rcu_idle_gp_delay = RCU_IDLE_GP_DELAY;
1318module_param(rcu_idle_gp_delay, int, 0644);
1319static int rcu_idle_lazy_gp_delay = RCU_IDLE_LAZY_GP_DELAY;
1320module_param(rcu_idle_lazy_gp_delay, int, 0644);
1321
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001322/*
Paul E. McKenneyc2298282013-08-25 21:20:47 -07001323 * Try to advance callbacks for all flavors of RCU on the current CPU, but
1324 * only if it has been awhile since the last time we did so. Afterwards,
1325 * if there are any callbacks ready for immediate invocation, return true.
Paul E. McKenney486e2592012-01-06 14:11:30 -08001326 */
Paul E. McKenneyf1f399d2013-11-17 21:08:07 -08001327static bool __maybe_unused rcu_try_advance_all_cbs(void)
Paul E. McKenney486e2592012-01-06 14:11:30 -08001328{
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001329 bool cbs_ready = false;
1330 struct rcu_data *rdp;
Paul E. McKenneyc2298282013-08-25 21:20:47 -07001331 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001332 struct rcu_node *rnp;
1333 struct rcu_state *rsp;
Paul E. McKenney486e2592012-01-06 14:11:30 -08001334
Paul E. McKenneyc2298282013-08-25 21:20:47 -07001335 /* Exit early if we advanced recently. */
1336 if (jiffies == rdtp->last_advance_all)
Pranith Kumard0bc90f2014-07-08 18:26:13 -04001337 return false;
Paul E. McKenneyc2298282013-08-25 21:20:47 -07001338 rdtp->last_advance_all = jiffies;
1339
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001340 for_each_rcu_flavor(rsp) {
1341 rdp = this_cpu_ptr(rsp->rda);
1342 rnp = rdp->mynode;
Paul E. McKenney486e2592012-01-06 14:11:30 -08001343
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001344 /*
1345 * Don't bother checking unless a grace period has
1346 * completed since we last checked and there are
1347 * callbacks not yet ready to invoke.
1348 */
Paul E. McKenneye3663b12014-12-08 20:26:55 -08001349 if ((rdp->completed != rnp->completed ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001350 unlikely(READ_ONCE(rdp->gpwrap))) &&
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001351 rdp->nxttail[RCU_DONE_TAIL] != rdp->nxttail[RCU_NEXT_TAIL])
Paul E. McKenney470716f2013-03-19 11:32:11 -07001352 note_gp_changes(rsp, rdp);
Paul E. McKenney486e2592012-01-06 14:11:30 -08001353
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001354 if (cpu_has_callbacks_ready_to_invoke(rdp))
1355 cbs_ready = true;
1356 }
1357 return cbs_ready;
Paul E. McKenney486e2592012-01-06 14:11:30 -08001358}
1359
1360/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001361 * Allow the CPU to enter dyntick-idle mode unless it has callbacks ready
1362 * to invoke. If the CPU has callbacks, try to advance them. Tell the
1363 * caller to set the timeout based on whether or not there are non-lazy
1364 * callbacks.
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001365 *
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001366 * The caller must have disabled interrupts.
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001367 */
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001368int rcu_needs_cpu(u64 basemono, u64 *nextevt)
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001369{
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07001370 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001371 unsigned long dj;
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001372
Paul E. McKenney3382adb2015-03-04 15:41:24 -08001373 if (IS_ENABLED(CONFIG_RCU_NOCB_CPU_ALL)) {
Linus Torvalds43224b92015-06-22 18:57:44 -07001374 *nextevt = KTIME_MAX;
Paul E. McKenney3382adb2015-03-04 15:41:24 -08001375 return 0;
1376 }
1377
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001378 /* Snapshot to detect later posting of non-lazy callback. */
1379 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
1380
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001381 /* If no callbacks, RCU doesn't need the CPU. */
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07001382 if (!rcu_cpu_has_callbacks(&rdtp->all_lazy)) {
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001383 *nextevt = KTIME_MAX;
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001384 return 0;
1385 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001386
1387 /* Attempt to advance callbacks. */
1388 if (rcu_try_advance_all_cbs()) {
1389 /* Some ready to invoke, so initiate later invocation. */
1390 invoke_rcu_core();
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001391 return 1;
1392 }
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001393 rdtp->last_accelerate = jiffies;
1394
1395 /* Request timer delay depending on laziness, and round. */
Paul E. McKenney6faf7282013-05-13 06:53:37 -07001396 if (!rdtp->all_lazy) {
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001397 dj = round_up(rcu_idle_gp_delay + jiffies,
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001398 rcu_idle_gp_delay) - jiffies;
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001399 } else {
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001400 dj = round_jiffies(rcu_idle_lazy_gp_delay + jiffies) - jiffies;
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001401 }
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001402 *nextevt = basemono + dj * TICK_NSEC;
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001403 return 0;
1404}
1405
1406/*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001407 * Prepare a CPU for idle from an RCU perspective. The first major task
1408 * is to sense whether nohz mode has been enabled or disabled via sysfs.
1409 * The second major task is to check to see if a non-lazy callback has
1410 * arrived at a CPU that previously had only lazy callbacks. The third
1411 * major task is to accelerate (that is, assign grace-period numbers to)
1412 * any recently arrived callbacks.
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001413 *
1414 * The caller must have disabled interrupts.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001415 */
Paul E. McKenney198bbf82014-10-22 15:03:43 -07001416static void rcu_prepare_for_idle(void)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001417{
Paul E. McKenney48a76392014-03-11 13:02:16 -07001418 bool needwake;
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001419 struct rcu_data *rdp;
Paul E. McKenney198bbf82014-10-22 15:03:43 -07001420 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001421 struct rcu_node *rnp;
1422 struct rcu_state *rsp;
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001423 int tne;
1424
Paul E. McKenneyf0f2e7d2015-09-29 08:59:32 -07001425 if (IS_ENABLED(CONFIG_RCU_NOCB_CPU_ALL) ||
1426 rcu_is_nocb_cpu(smp_processor_id()))
Paul E. McKenney3382adb2015-03-04 15:41:24 -08001427 return;
1428
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001429 /* Handle nohz enablement switches conservatively. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001430 tne = READ_ONCE(tick_nohz_active);
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001431 if (tne != rdtp->tick_nohz_enabled_snap) {
Paul E. McKenneyaa6da512014-10-21 13:23:08 -07001432 if (rcu_cpu_has_callbacks(NULL))
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001433 invoke_rcu_core(); /* force nohz to see update. */
1434 rdtp->tick_nohz_enabled_snap = tne;
1435 return;
1436 }
1437 if (!tne)
1438 return;
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07001439
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08001440 /*
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001441 * If a non-lazy callback arrived at a CPU having only lazy
1442 * callbacks, invoke RCU core for the side-effect of recalculating
1443 * idle duration on re-entry to idle.
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001444 */
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001445 if (rdtp->all_lazy &&
1446 rdtp->nonlazy_posted != rdtp->nonlazy_posted_snap) {
Paul E. McKenneyc337f8f2013-09-05 17:02:11 -07001447 rdtp->all_lazy = false;
1448 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001449 invoke_rcu_core();
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001450 return;
1451 }
1452
1453 /*
1454 * If we have not yet accelerated this jiffy, accelerate all
1455 * callbacks on this CPU.
1456 */
1457 if (rdtp->last_accelerate == jiffies)
1458 return;
1459 rdtp->last_accelerate = jiffies;
1460 for_each_rcu_flavor(rsp) {
Paul E. McKenney198bbf82014-10-22 15:03:43 -07001461 rdp = this_cpu_ptr(rsp->rda);
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001462 if (!*rdp->nxttail[RCU_DONE_TAIL])
1463 continue;
1464 rnp = rdp->mynode;
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001465 raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001466 needwake = rcu_accelerate_cbs(rsp, rnp, rdp);
Boqun Feng67c583a72015-12-29 12:18:47 +08001467 raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
Paul E. McKenney48a76392014-03-11 13:02:16 -07001468 if (needwake)
1469 rcu_gp_kthread_wake(rsp);
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001470 }
1471}
1472
1473/*
1474 * Clean up for exit from idle. Attempt to advance callbacks based on
1475 * any grace periods that elapsed while the CPU was idle, and if any
1476 * callbacks are now ready to invoke, initiate invocation.
1477 */
Paul E. McKenney8fa78452014-10-22 15:07:37 -07001478static void rcu_cleanup_after_idle(void)
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001479{
Paul E. McKenney3382adb2015-03-04 15:41:24 -08001480 if (IS_ENABLED(CONFIG_RCU_NOCB_CPU_ALL) ||
1481 rcu_is_nocb_cpu(smp_processor_id()))
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001482 return;
Paul E. McKenney7a497c92013-08-22 18:16:16 -07001483 if (rcu_try_advance_all_cbs())
1484 invoke_rcu_core();
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001485}
1486
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001487/*
Paul E. McKenney98248a02012-05-03 15:38:10 -07001488 * Keep a running count of the number of non-lazy callbacks posted
1489 * on this CPU. This running counter (which is never decremented) allows
1490 * rcu_prepare_for_idle() to detect when something out of the idle loop
1491 * posts a callback, even if an equal number of callbacks are invoked.
1492 * Of course, callbacks should only be posted from within a trace event
1493 * designed to be called from idle or from within RCU_NONIDLE().
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001494 */
1495static void rcu_idle_count_callbacks_posted(void)
1496{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001497 __this_cpu_add(rcu_dynticks.nonlazy_posted, 1);
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001498}
1499
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001500/*
1501 * Data for flushing lazy RCU callbacks at OOM time.
1502 */
1503static atomic_t oom_callback_count;
1504static DECLARE_WAIT_QUEUE_HEAD(oom_callback_wq);
1505
1506/*
1507 * RCU OOM callback -- decrement the outstanding count and deliver the
1508 * wake-up if we are the last one.
1509 */
1510static void rcu_oom_callback(struct rcu_head *rhp)
1511{
1512 if (atomic_dec_and_test(&oom_callback_count))
1513 wake_up(&oom_callback_wq);
1514}
1515
1516/*
1517 * Post an rcu_oom_notify callback on the current CPU if it has at
1518 * least one lazy callback. This will unnecessarily post callbacks
1519 * to CPUs that already have a non-lazy callback at the end of their
1520 * callback list, but this is an infrequent operation, so accept some
1521 * extra overhead to keep things simple.
1522 */
1523static void rcu_oom_notify_cpu(void *unused)
1524{
1525 struct rcu_state *rsp;
1526 struct rcu_data *rdp;
1527
1528 for_each_rcu_flavor(rsp) {
Christoph Lameterfa07a582014-04-15 12:20:12 -07001529 rdp = raw_cpu_ptr(rsp->rda);
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001530 if (rdp->qlen_lazy != 0) {
1531 atomic_inc(&oom_callback_count);
1532 rsp->call(&rdp->oom_head, rcu_oom_callback);
1533 }
1534 }
1535}
1536
1537/*
1538 * If low on memory, ensure that each CPU has a non-lazy callback.
1539 * This will wake up CPUs that have only lazy callbacks, in turn
1540 * ensuring that they free up the corresponding memory in a timely manner.
1541 * Because an uncertain amount of memory will be freed in some uncertain
1542 * timeframe, we do not claim to have freed anything.
1543 */
1544static int rcu_oom_notify(struct notifier_block *self,
1545 unsigned long notused, void *nfreed)
1546{
1547 int cpu;
1548
1549 /* Wait for callbacks from earlier instance to complete. */
1550 wait_event(oom_callback_wq, atomic_read(&oom_callback_count) == 0);
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001551 smp_mb(); /* Ensure callback reuse happens after callback invocation. */
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001552
1553 /*
1554 * Prevent premature wakeup: ensure that all increments happen
1555 * before there is a chance of the counter reaching zero.
1556 */
1557 atomic_set(&oom_callback_count, 1);
1558
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001559 for_each_online_cpu(cpu) {
1560 smp_call_function_single(cpu, rcu_oom_notify_cpu, NULL, 1);
Paul E. McKenneybde6c3a2014-07-01 11:26:57 -07001561 cond_resched_rcu_qs();
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001562 }
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001563
1564 /* Unconditionally decrement: no need to wake ourselves up. */
1565 atomic_dec(&oom_callback_count);
1566
1567 return NOTIFY_OK;
1568}
1569
1570static struct notifier_block rcu_oom_nb = {
1571 .notifier_call = rcu_oom_notify
1572};
1573
1574static int __init rcu_register_oom_notifier(void)
1575{
1576 register_oom_notifier(&rcu_oom_nb);
1577 return 0;
1578}
1579early_initcall(rcu_register_oom_notifier);
1580
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001581#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */
Paul E. McKenneya858af22012-01-16 13:29:10 -08001582
Paul E. McKenneya858af22012-01-16 13:29:10 -08001583#ifdef CONFIG_RCU_FAST_NO_HZ
1584
1585static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
1586{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001587 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001588 unsigned long nlpd = rdtp->nonlazy_posted - rdtp->nonlazy_posted_snap;
Paul E. McKenneya858af22012-01-16 13:29:10 -08001589
Paul E. McKenneyc0f4dfd2012-12-28 11:30:36 -08001590 sprintf(cp, "last_accelerate: %04lx/%04lx, nonlazy_posted: %ld, %c%c",
1591 rdtp->last_accelerate & 0xffff, jiffies & 0xffff,
1592 ulong2long(nlpd),
1593 rdtp->all_lazy ? 'L' : '.',
1594 rdtp->tick_nohz_enabled_snap ? '.' : 'D');
Paul E. McKenneya858af22012-01-16 13:29:10 -08001595}
1596
1597#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
1598
1599static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
1600{
Carsten Emde1c17e4d2012-06-19 10:43:16 +02001601 *cp = '\0';
Paul E. McKenneya858af22012-01-16 13:29:10 -08001602}
1603
1604#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
1605
1606/* Initiate the stall-info list. */
1607static void print_cpu_stall_info_begin(void)
1608{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -07001609 pr_cont("\n");
Paul E. McKenneya858af22012-01-16 13:29:10 -08001610}
1611
1612/*
1613 * Print out diagnostic information for the specified stalled CPU.
1614 *
1615 * If the specified CPU is aware of the current RCU grace period
1616 * (flavor specified by rsp), then print the number of scheduling
1617 * clock interrupts the CPU has taken during the time that it has
1618 * been aware. Otherwise, print the number of RCU grace periods
1619 * that this CPU is ignorant of, for example, "1" if the CPU was
1620 * aware of the previous grace period.
1621 *
1622 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
1623 */
1624static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
1625{
1626 char fast_no_hz[72];
1627 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
1628 struct rcu_dynticks *rdtp = rdp->dynticks;
1629 char *ticks_title;
1630 unsigned long ticks_value;
1631
1632 if (rsp->gpnum == rdp->gpnum) {
1633 ticks_title = "ticks this GP";
1634 ticks_value = rdp->ticks_this_gp;
1635 } else {
1636 ticks_title = "GPs behind";
1637 ticks_value = rsp->gpnum - rdp->gpnum;
1638 }
1639 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
Paul E. McKenney7f21aee2015-08-15 14:49:50 -07001640 pr_err("\t%d-%c%c%c: (%lu %s) idle=%03x/%llx/%d softirq=%u/%u fqs=%ld %s\n",
1641 cpu,
1642 "O."[!!cpu_online(cpu)],
1643 "o."[!!(rdp->grpmask & rdp->mynode->qsmaskinit)],
1644 "N."[!!(rdp->grpmask & rdp->mynode->qsmaskinitnext)],
1645 ticks_value, ticks_title,
Paul E. McKenneya858af22012-01-16 13:29:10 -08001646 atomic_read(&rdtp->dynticks) & 0xfff,
1647 rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
Paul E. McKenney62310692013-03-06 13:37:09 -08001648 rdp->softirq_snap, kstat_softirqs_cpu(RCU_SOFTIRQ, cpu),
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001649 READ_ONCE(rsp->n_force_qs) - rsp->n_force_qs_gpstart,
Paul E. McKenneya858af22012-01-16 13:29:10 -08001650 fast_no_hz);
1651}
1652
1653/* Terminate the stall-info list. */
1654static void print_cpu_stall_info_end(void)
1655{
Paul E. McKenneyefc151c2013-03-18 16:24:11 -07001656 pr_err("\t");
Paul E. McKenneya858af22012-01-16 13:29:10 -08001657}
1658
1659/* Zero ->ticks_this_gp for all flavors of RCU. */
1660static void zero_cpu_stall_ticks(struct rcu_data *rdp)
1661{
1662 rdp->ticks_this_gp = 0;
Paul E. McKenney62310692013-03-06 13:37:09 -08001663 rdp->softirq_snap = kstat_softirqs_cpu(RCU_SOFTIRQ, smp_processor_id());
Paul E. McKenneya858af22012-01-16 13:29:10 -08001664}
1665
1666/* Increment ->ticks_this_gp for all flavors of RCU. */
1667static void increment_cpu_stall_ticks(void)
1668{
Paul E. McKenney115f7a72012-08-10 13:55:03 -07001669 struct rcu_state *rsp;
1670
1671 for_each_rcu_flavor(rsp)
Christoph Lameterfa07a582014-04-15 12:20:12 -07001672 raw_cpu_inc(rsp->rda->ticks_this_gp);
Paul E. McKenneya858af22012-01-16 13:29:10 -08001673}
1674
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001675#ifdef CONFIG_RCU_NOCB_CPU
1676
1677/*
1678 * Offload callback processing from the boot-time-specified set of CPUs
1679 * specified by rcu_nocb_mask. For each CPU in the set, there is a
1680 * kthread created that pulls the callbacks from the corresponding CPU,
1681 * waits for a grace period to elapse, and invokes the callbacks.
1682 * The no-CBs CPUs do a wake_up() on their kthread when they insert
1683 * a callback into any empty list, unless the rcu_nocb_poll boot parameter
1684 * has been specified, in which case each kthread actively polls its
1685 * CPU. (Which isn't so great for energy efficiency, but which does
1686 * reduce RCU's overhead on that CPU.)
1687 *
1688 * This is intended to be used in conjunction with Frederic Weisbecker's
1689 * adaptive-idle work, which would seriously reduce OS jitter on CPUs
1690 * running CPU-bound user-mode computations.
1691 *
1692 * Offloading of callback processing could also in theory be used as
1693 * an energy-efficiency measure because CPUs with no RCU callbacks
1694 * queued are more aggressive about entering dyntick-idle mode.
1695 */
1696
1697
1698/* Parse the boot-time rcu_nocb_mask CPU list from the kernel parameters. */
1699static int __init rcu_nocb_setup(char *str)
1700{
1701 alloc_bootmem_cpumask_var(&rcu_nocb_mask);
1702 have_rcu_nocb_mask = true;
1703 cpulist_parse(str, rcu_nocb_mask);
1704 return 1;
1705}
1706__setup("rcu_nocbs=", rcu_nocb_setup);
1707
Paul Gortmaker1b0048a2012-12-20 13:19:22 -08001708static int __init parse_rcu_nocb_poll(char *arg)
1709{
1710 rcu_nocb_poll = 1;
1711 return 0;
1712}
1713early_param("rcu_nocb_poll", parse_rcu_nocb_poll);
1714
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001715/*
Paul E. McKenney0446be42012-12-30 15:21:01 -08001716 * Wake up any no-CBs CPUs' kthreads that were waiting on the just-ended
1717 * grace period.
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001718 */
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001719static void rcu_nocb_gp_cleanup(struct swait_queue_head *sq)
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001720{
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001721 swake_up_all(sq);
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001722}
1723
1724/*
Paul E. McKenney8b425aa82012-12-30 13:06:35 -08001725 * Set the root rcu_node structure's ->need_future_gp field
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001726 * based on the sum of those of all rcu_node structures. This does
1727 * double-count the root rcu_node structure's requests, but this
1728 * is necessary to handle the possibility of a rcu_nocb_kthread()
1729 * having awakened during the time that the rcu_node structures
1730 * were being updated for the end of the previous grace period.
1731 */
1732static void rcu_nocb_gp_set(struct rcu_node *rnp, int nrq)
1733{
Paul E. McKenney8b425aa82012-12-30 13:06:35 -08001734 rnp->need_future_gp[(rnp->completed + 1) & 0x1] += nrq;
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001735}
1736
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001737static struct swait_queue_head *rcu_nocb_gp_get(struct rcu_node *rnp)
Daniel Wagner065bb782016-02-19 09:46:40 +01001738{
1739 return &rnp->nocb_gp_wq[rnp->completed & 0x1];
1740}
1741
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001742static void rcu_init_one_nocb(struct rcu_node *rnp)
1743{
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001744 init_swait_queue_head(&rnp->nocb_gp_wq[0]);
1745 init_swait_queue_head(&rnp->nocb_gp_wq[1]);
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001746}
1747
Paul E. McKenney2f33b512013-11-17 18:25:48 -08001748#ifndef CONFIG_RCU_NOCB_CPU_ALL
Liu Ping Fan24342c92014-02-24 06:18:09 -08001749/* Is the specified CPU a no-CBs CPU? */
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01001750bool rcu_is_nocb_cpu(int cpu)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001751{
1752 if (have_rcu_nocb_mask)
1753 return cpumask_test_cpu(cpu, rcu_nocb_mask);
1754 return false;
1755}
Paul E. McKenney2f33b512013-11-17 18:25:48 -08001756#endif /* #ifndef CONFIG_RCU_NOCB_CPU_ALL */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001757
1758/*
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001759 * Kick the leader kthread for this NOCB group.
1760 */
1761static void wake_nocb_leader(struct rcu_data *rdp, bool force)
1762{
1763 struct rcu_data *rdp_leader = rdp->nocb_leader;
1764
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001765 if (!READ_ONCE(rdp_leader->nocb_kthread))
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001766 return;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001767 if (READ_ONCE(rdp_leader->nocb_leader_sleep) || force) {
Paul E. McKenney39953df2014-08-12 10:47:48 -07001768 /* Prior smp_mb__after_atomic() orders against prior enqueue. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001769 WRITE_ONCE(rdp_leader->nocb_leader_sleep, false);
Paul E. McKenneyac5e9e82017-04-28 20:11:09 -07001770 smp_mb(); /* ->nocb_leader_sleep before swake_up(). */
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001771 swake_up(&rdp_leader->nocb_wq);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001772 }
1773}
1774
1775/*
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001776 * Does the specified CPU need an RCU callback for the specified flavor
1777 * of rcu_barrier()?
1778 */
1779static bool rcu_nocb_cpu_needs_barrier(struct rcu_state *rsp, int cpu)
1780{
1781 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney41050a02014-12-18 12:31:27 -08001782 unsigned long ret;
1783#ifdef CONFIG_PROVE_RCU
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001784 struct rcu_head *rhp;
Paul E. McKenney41050a02014-12-18 12:31:27 -08001785#endif /* #ifdef CONFIG_PROVE_RCU */
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001786
Paul E. McKenney41050a02014-12-18 12:31:27 -08001787 /*
1788 * Check count of all no-CBs callbacks awaiting invocation.
1789 * There needs to be a barrier before this function is called,
1790 * but associated with a prior determination that no more
1791 * callbacks would be posted. In the worst case, the first
1792 * barrier in _rcu_barrier() suffices (but the caller cannot
1793 * necessarily rely on this, not a substitute for the caller
1794 * getting the concurrency design right!). There must also be
1795 * a barrier between the following load an posting of a callback
1796 * (if a callback is in fact needed). This is associated with an
1797 * atomic_inc() in the caller.
1798 */
1799 ret = atomic_long_read(&rdp->nocb_q_count);
1800
1801#ifdef CONFIG_PROVE_RCU
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001802 rhp = READ_ONCE(rdp->nocb_head);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001803 if (!rhp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001804 rhp = READ_ONCE(rdp->nocb_gp_head);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001805 if (!rhp)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001806 rhp = READ_ONCE(rdp->nocb_follower_head);
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001807
1808 /* Having no rcuo kthread but CBs after scheduler starts is bad! */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001809 if (!READ_ONCE(rdp->nocb_kthread) && rhp &&
Paul E. McKenney59f792d2015-01-19 21:43:40 -08001810 rcu_scheduler_fully_active) {
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001811 /* RCU callback enqueued before CPU first came online??? */
1812 pr_err("RCU: Never-onlined no-CBs CPU %d has CB %p\n",
1813 cpu, rhp->func);
1814 WARN_ON_ONCE(1);
1815 }
Paul E. McKenney41050a02014-12-18 12:31:27 -08001816#endif /* #ifdef CONFIG_PROVE_RCU */
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001817
Paul E. McKenney41050a02014-12-18 12:31:27 -08001818 return !!ret;
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07001819}
1820
1821/*
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001822 * Enqueue the specified string of rcu_head structures onto the specified
1823 * CPU's no-CBs lists. The CPU is specified by rdp, the head of the
1824 * string by rhp, and the tail of the string by rhtp. The non-lazy/lazy
1825 * counts are supplied by rhcount and rhcount_lazy.
1826 *
1827 * If warranted, also wake up the kthread servicing this CPUs queues.
1828 */
1829static void __call_rcu_nocb_enqueue(struct rcu_data *rdp,
1830 struct rcu_head *rhp,
1831 struct rcu_head **rhtp,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001832 int rhcount, int rhcount_lazy,
1833 unsigned long flags)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001834{
1835 int len;
1836 struct rcu_head **old_rhpp;
1837 struct task_struct *t;
1838
1839 /* Enqueue the callback on the nocb list and update counts. */
Paul E. McKenney41050a02014-12-18 12:31:27 -08001840 atomic_long_add(rhcount, &rdp->nocb_q_count);
1841 /* rcu_barrier() relies on ->nocb_q_count add before xchg. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001842 old_rhpp = xchg(&rdp->nocb_tail, rhtp);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001843 WRITE_ONCE(*old_rhpp, rhp);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001844 atomic_long_add(rhcount_lazy, &rdp->nocb_q_count_lazy);
Paul E. McKenney39953df2014-08-12 10:47:48 -07001845 smp_mb__after_atomic(); /* Store *old_rhpp before _wake test. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001846
1847 /* If we are not being polled and there is a kthread, awaken it ... */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001848 t = READ_ONCE(rdp->nocb_kthread);
Paul E. McKenney25e03a72013-10-15 12:47:04 -07001849 if (rcu_nocb_poll || !t) {
Paul E. McKenney9261dd02013-08-14 16:24:26 -07001850 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
1851 TPS("WakeNotPoll"));
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001852 return;
Paul E. McKenney9261dd02013-08-14 16:24:26 -07001853 }
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001854 len = atomic_long_read(&rdp->nocb_q_count);
1855 if (old_rhpp == &rdp->nocb_head) {
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001856 if (!irqs_disabled_flags(flags)) {
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001857 /* ... if queue was empty ... */
1858 wake_nocb_leader(rdp, false);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001859 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
1860 TPS("WakeEmpty"));
1861 } else {
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07001862 rdp->nocb_defer_wakeup = RCU_NOGP_WAKE;
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001863 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
1864 TPS("WakeEmptyIsDeferred"));
1865 }
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001866 rdp->qlen_last_fqs_check = 0;
1867 } else if (len > rdp->qlen_last_fqs_check + qhimark) {
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001868 /* ... or if many callbacks queued. */
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07001869 if (!irqs_disabled_flags(flags)) {
1870 wake_nocb_leader(rdp, true);
1871 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
1872 TPS("WakeOvf"));
1873 } else {
1874 rdp->nocb_defer_wakeup = RCU_NOGP_WAKE_FORCE;
1875 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
1876 TPS("WakeOvfIsDeferred"));
1877 }
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001878 rdp->qlen_last_fqs_check = LONG_MAX / 2;
Paul E. McKenney9261dd02013-08-14 16:24:26 -07001879 } else {
1880 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, TPS("WakeNot"));
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001881 }
1882 return;
1883}
1884
1885/*
1886 * This is a helper for __call_rcu(), which invokes this when the normal
1887 * callback queue is inoperable. If this is not a no-CBs CPU, this
1888 * function returns failure back to __call_rcu(), which can complain
1889 * appropriately.
1890 *
1891 * Otherwise, this function queues the callback where the corresponding
1892 * "rcuo" kthread can find it.
1893 */
1894static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001895 bool lazy, unsigned long flags)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001896{
1897
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01001898 if (!rcu_is_nocb_cpu(rdp->cpu))
Pranith Kumarc271d3a2014-07-08 18:26:14 -04001899 return false;
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001900 __call_rcu_nocb_enqueue(rdp, rhp, &rhp->next, 1, lazy, flags);
Paul E. McKenney21e7a602013-02-09 17:42:16 -08001901 if (__is_kfree_rcu_offset((unsigned long)rhp->func))
1902 trace_rcu_kfree_callback(rdp->rsp->name, rhp,
1903 (unsigned long)rhp->func,
Paul E. McKenney756cbf62013-08-15 10:12:12 -07001904 -atomic_long_read(&rdp->nocb_q_count_lazy),
1905 -atomic_long_read(&rdp->nocb_q_count));
Paul E. McKenney21e7a602013-02-09 17:42:16 -08001906 else
1907 trace_rcu_callback(rdp->rsp->name, rhp,
Paul E. McKenney756cbf62013-08-15 10:12:12 -07001908 -atomic_long_read(&rdp->nocb_q_count_lazy),
1909 -atomic_long_read(&rdp->nocb_q_count));
Paul E. McKenney1772947bd2014-08-12 11:27:31 -07001910
1911 /*
1912 * If called from an extended quiescent state with interrupts
1913 * disabled, invoke the RCU core in order to allow the idle-entry
1914 * deferred-wakeup check to function.
1915 */
1916 if (irqs_disabled_flags(flags) &&
1917 !rcu_is_watching() &&
1918 cpu_online(smp_processor_id()))
1919 invoke_rcu_core();
1920
Pranith Kumarc271d3a2014-07-08 18:26:14 -04001921 return true;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001922}
1923
1924/*
1925 * Adopt orphaned callbacks on a no-CBs CPU, or return 0 if this is
1926 * not a no-CBs CPU.
1927 */
1928static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001929 struct rcu_data *rdp,
1930 unsigned long flags)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001931{
1932 long ql = rsp->qlen;
1933 long qll = rsp->qlen_lazy;
1934
1935 /* If this is not a no-CBs CPU, tell the caller to do it the old way. */
Frederic Weisbeckerd1e43fa2013-03-26 23:47:24 +01001936 if (!rcu_is_nocb_cpu(smp_processor_id()))
Pranith Kumar0a9e1e12014-07-08 18:26:15 -04001937 return false;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001938 rsp->qlen = 0;
1939 rsp->qlen_lazy = 0;
1940
1941 /* First, enqueue the donelist, if any. This preserves CB ordering. */
1942 if (rsp->orphan_donelist != NULL) {
1943 __call_rcu_nocb_enqueue(rdp, rsp->orphan_donelist,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001944 rsp->orphan_donetail, ql, qll, flags);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001945 ql = qll = 0;
1946 rsp->orphan_donelist = NULL;
1947 rsp->orphan_donetail = &rsp->orphan_donelist;
1948 }
1949 if (rsp->orphan_nxtlist != NULL) {
1950 __call_rcu_nocb_enqueue(rdp, rsp->orphan_nxtlist,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07001951 rsp->orphan_nxttail, ql, qll, flags);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001952 ql = qll = 0;
1953 rsp->orphan_nxtlist = NULL;
1954 rsp->orphan_nxttail = &rsp->orphan_nxtlist;
1955 }
Pranith Kumar0a9e1e12014-07-08 18:26:15 -04001956 return true;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001957}
1958
1959/*
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001960 * If necessary, kick off a new grace period, and either way wait
1961 * for a subsequent grace period to complete.
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001962 */
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001963static void rcu_nocb_wait_gp(struct rcu_data *rdp)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001964{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001965 unsigned long c;
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001966 bool d;
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001967 unsigned long flags;
Paul E. McKenney48a76392014-03-11 13:02:16 -07001968 bool needwake;
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001969 struct rcu_node *rnp = rdp->mynode;
1970
Peter Zijlstra2a67e742015-10-08 12:24:23 +02001971 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001972 needwake = rcu_start_future_gp(rnp, rdp, &c);
Boqun Feng67c583a72015-12-29 12:18:47 +08001973 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney48a76392014-03-11 13:02:16 -07001974 if (needwake)
1975 rcu_gp_kthread_wake(rdp->rsp);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001976
1977 /*
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001978 * Wait for the grace period. Do so interruptibly to avoid messing
1979 * up the load average.
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001980 */
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001981 trace_rcu_future_gp(rnp, rdp, c, TPS("StartWait"));
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001982 for (;;) {
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01001983 swait_event_interruptible(
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001984 rnp->nocb_gp_wq[c & 0x1],
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08001985 (d = ULONG_CMP_GE(READ_ONCE(rnp->completed), c)));
Paul E. McKenneydae6e642013-02-10 20:48:58 -08001986 if (likely(d))
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001987 break;
Paul E. McKenney73a860c2014-08-14 10:28:23 -07001988 WARN_ON(signal_pending(current));
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001989 trace_rcu_future_gp(rnp, rdp, c, TPS("ResumeWait"));
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001990 }
Steven Rostedt (Red Hat)f7f7bac2013-07-12 17:18:47 -04001991 trace_rcu_future_gp(rnp, rdp, c, TPS("EndWait"));
Paul E. McKenney34ed62462013-01-07 13:37:42 -08001992 smp_mb(); /* Ensure that CB invocation happens after GP end. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07001993}
1994
1995/*
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07001996 * Leaders come here to wait for additional callbacks to show up.
1997 * This function does not return until callbacks appear.
1998 */
1999static void nocb_leader_wait(struct rcu_data *my_rdp)
2000{
2001 bool firsttime = true;
2002 bool gotcbs;
2003 struct rcu_data *rdp;
2004 struct rcu_head **tail;
2005
2006wait_again:
2007
2008 /* Wait for callbacks to appear. */
2009 if (!rcu_nocb_poll) {
2010 trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu, "Sleep");
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002011 swait_event_interruptible(my_rdp->nocb_wq,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002012 !READ_ONCE(my_rdp->nocb_leader_sleep));
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002013 /* Memory barrier handled by smp_mb() calls below and repoll. */
2014 } else if (firsttime) {
2015 firsttime = false; /* Don't drown trace log with "Poll"! */
2016 trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu, "Poll");
2017 }
2018
2019 /*
2020 * Each pass through the following loop checks a follower for CBs.
2021 * We are our own first follower. Any CBs found are moved to
2022 * nocb_gp_head, where they await a grace period.
2023 */
2024 gotcbs = false;
Paul E. McKenneyac5e9e82017-04-28 20:11:09 -07002025 smp_mb(); /* wakeup before ->nocb_head reads. */
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002026 for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002027 rdp->nocb_gp_head = READ_ONCE(rdp->nocb_head);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002028 if (!rdp->nocb_gp_head)
2029 continue; /* No CBs here, try next follower. */
2030
2031 /* Move callbacks to wait-for-GP list, which is empty. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002032 WRITE_ONCE(rdp->nocb_head, NULL);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002033 rdp->nocb_gp_tail = xchg(&rdp->nocb_tail, &rdp->nocb_head);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002034 gotcbs = true;
2035 }
2036
2037 /*
2038 * If there were no callbacks, sleep a bit, rescan after a
2039 * memory barrier, and go retry.
2040 */
2041 if (unlikely(!gotcbs)) {
2042 if (!rcu_nocb_poll)
2043 trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu,
2044 "WokeEmpty");
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002045 WARN_ON(signal_pending(current));
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002046 schedule_timeout_interruptible(1);
2047
2048 /* Rescan in case we were a victim of memory ordering. */
Pranith Kumar11ed7f92014-08-27 16:43:40 -04002049 my_rdp->nocb_leader_sleep = true;
2050 smp_mb(); /* Ensure _sleep true before scan. */
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002051 for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002052 if (READ_ONCE(rdp->nocb_head)) {
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002053 /* Found CB, so short-circuit next wait. */
Pranith Kumar11ed7f92014-08-27 16:43:40 -04002054 my_rdp->nocb_leader_sleep = false;
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002055 break;
2056 }
2057 goto wait_again;
2058 }
2059
2060 /* Wait for one grace period. */
2061 rcu_nocb_wait_gp(my_rdp);
2062
2063 /*
Pranith Kumar11ed7f92014-08-27 16:43:40 -04002064 * We left ->nocb_leader_sleep unset to reduce cache thrashing.
2065 * We set it now, but recheck for new callbacks while
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002066 * traversing our follower list.
2067 */
Pranith Kumar11ed7f92014-08-27 16:43:40 -04002068 my_rdp->nocb_leader_sleep = true;
2069 smp_mb(); /* Ensure _sleep true before scan of ->nocb_head. */
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002070
2071 /* Each pass through the following loop wakes a follower, if needed. */
2072 for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower) {
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002073 if (READ_ONCE(rdp->nocb_head))
Pranith Kumar11ed7f92014-08-27 16:43:40 -04002074 my_rdp->nocb_leader_sleep = false;/* No need to sleep.*/
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002075 if (!rdp->nocb_gp_head)
2076 continue; /* No CBs, so no need to wake follower. */
2077
2078 /* Append callbacks to follower's "done" list. */
2079 tail = xchg(&rdp->nocb_follower_tail, rdp->nocb_gp_tail);
2080 *tail = rdp->nocb_gp_head;
Paul E. McKenneyc847f142014-08-12 13:54:21 -07002081 smp_mb__after_atomic(); /* Store *tail before wakeup. */
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002082 if (rdp != my_rdp && tail == &rdp->nocb_follower_head) {
2083 /*
2084 * List was empty, wake up the follower.
2085 * Memory barriers supplied by atomic_long_add().
2086 */
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002087 swake_up(&rdp->nocb_wq);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002088 }
2089 }
2090
2091 /* If we (the leader) don't have CBs, go wait some more. */
2092 if (!my_rdp->nocb_follower_head)
2093 goto wait_again;
2094}
2095
2096/*
2097 * Followers come here to wait for additional callbacks to show up.
2098 * This function does not return until callbacks appear.
2099 */
2100static void nocb_follower_wait(struct rcu_data *rdp)
2101{
2102 bool firsttime = true;
2103
2104 for (;;) {
2105 if (!rcu_nocb_poll) {
2106 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
2107 "FollowerSleep");
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002108 swait_event_interruptible(rdp->nocb_wq,
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002109 READ_ONCE(rdp->nocb_follower_head));
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002110 } else if (firsttime) {
2111 /* Don't drown trace log with "Poll"! */
2112 firsttime = false;
2113 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, "Poll");
2114 }
2115 if (smp_load_acquire(&rdp->nocb_follower_head)) {
2116 /* ^^^ Ensure CB invocation follows _head test. */
2117 return;
2118 }
2119 if (!rcu_nocb_poll)
2120 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
2121 "WokeEmpty");
Paul E. McKenney73a860c2014-08-14 10:28:23 -07002122 WARN_ON(signal_pending(current));
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002123 schedule_timeout_interruptible(1);
2124 }
2125}
2126
2127/*
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002128 * Per-rcu_data kthread, but only for no-CBs CPUs. Each kthread invokes
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002129 * callbacks queued by the corresponding no-CBs CPU, however, there is
2130 * an optional leader-follower relationship so that the grace-period
2131 * kthreads don't have to do quite so many wakeups.
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002132 */
2133static int rcu_nocb_kthread(void *arg)
2134{
2135 int c, cl;
2136 struct rcu_head *list;
2137 struct rcu_head *next;
2138 struct rcu_head **tail;
2139 struct rcu_data *rdp = arg;
2140
2141 /* Each pass through this loop invokes one batch of callbacks */
2142 for (;;) {
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002143 /* Wait for callbacks. */
2144 if (rdp->nocb_leader == rdp)
2145 nocb_leader_wait(rdp);
2146 else
2147 nocb_follower_wait(rdp);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002148
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002149 /* Pull the ready-to-invoke callbacks onto local list. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002150 list = READ_ONCE(rdp->nocb_follower_head);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002151 BUG_ON(!list);
2152 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, "WokeNonEmpty");
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002153 WRITE_ONCE(rdp->nocb_follower_head, NULL);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002154 tail = xchg(&rdp->nocb_follower_tail, &rdp->nocb_follower_head);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002155
2156 /* Each pass through the following loop invokes a callback. */
Paul E. McKenney41050a02014-12-18 12:31:27 -08002157 trace_rcu_batch_start(rdp->rsp->name,
2158 atomic_long_read(&rdp->nocb_q_count_lazy),
2159 atomic_long_read(&rdp->nocb_q_count), -1);
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002160 c = cl = 0;
2161 while (list) {
2162 next = list->next;
2163 /* Wait for enqueuing to complete, if needed. */
2164 while (next == NULL && &list->next != tail) {
Paul E. McKenney69a79bb2013-08-15 13:23:23 -07002165 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
2166 TPS("WaitQueue"));
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002167 schedule_timeout_interruptible(1);
Paul E. McKenney69a79bb2013-08-15 13:23:23 -07002168 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
2169 TPS("WokeQueue"));
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002170 next = list->next;
2171 }
2172 debug_rcu_head_unqueue(list);
2173 local_bh_disable();
2174 if (__rcu_reclaim(rdp->rsp->name, list))
2175 cl++;
2176 c++;
2177 local_bh_enable();
Ding Tianhongbedc1962016-06-15 15:27:36 +08002178 cond_resched_rcu_qs();
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002179 list = next;
2180 }
2181 trace_rcu_batch_end(rdp->rsp->name, c, !!list, 0, 0, 1);
Paul E. McKenney41050a02014-12-18 12:31:27 -08002182 smp_mb__before_atomic(); /* _add after CB invocation. */
2183 atomic_long_add(-c, &rdp->nocb_q_count);
2184 atomic_long_add(-cl, &rdp->nocb_q_count_lazy);
Paul E. McKenneyc635a4e12012-10-29 07:29:20 -07002185 rdp->n_nocbs_invoked += c;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002186 }
2187 return 0;
2188}
2189
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002190/* Is a deferred wakeup of rcu_nocb_kthread() required? */
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07002191static int rcu_nocb_need_deferred_wakeup(struct rcu_data *rdp)
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002192{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002193 return READ_ONCE(rdp->nocb_defer_wakeup);
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002194}
2195
2196/* Do a deferred wakeup of rcu_nocb_kthread(). */
2197static void do_nocb_deferred_wakeup(struct rcu_data *rdp)
2198{
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07002199 int ndw;
2200
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002201 if (!rcu_nocb_need_deferred_wakeup(rdp))
2202 return;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002203 ndw = READ_ONCE(rdp->nocb_defer_wakeup);
2204 WRITE_ONCE(rdp->nocb_defer_wakeup, RCU_NOGP_WAKE_NOT);
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07002205 wake_nocb_leader(rdp, ndw == RCU_NOGP_WAKE_FORCE);
2206 trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, TPS("DeferredWake"));
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002207}
2208
Paul E. McKenneyf4579fc2014-07-25 11:21:47 -07002209void __init rcu_init_nohz(void)
2210{
2211 int cpu;
2212 bool need_rcu_nocb_mask = true;
2213 struct rcu_state *rsp;
2214
2215#ifdef CONFIG_RCU_NOCB_CPU_NONE
2216 need_rcu_nocb_mask = false;
2217#endif /* #ifndef CONFIG_RCU_NOCB_CPU_NONE */
2218
2219#if defined(CONFIG_NO_HZ_FULL)
2220 if (tick_nohz_full_running && cpumask_weight(tick_nohz_full_mask))
2221 need_rcu_nocb_mask = true;
2222#endif /* #if defined(CONFIG_NO_HZ_FULL) */
2223
2224 if (!have_rcu_nocb_mask && need_rcu_nocb_mask) {
Pranith Kumar949cccd2014-07-25 16:02:07 -07002225 if (!zalloc_cpumask_var(&rcu_nocb_mask, GFP_KERNEL)) {
2226 pr_info("rcu_nocb_mask allocation failed, callback offloading disabled.\n");
2227 return;
2228 }
Paul E. McKenneyf4579fc2014-07-25 11:21:47 -07002229 have_rcu_nocb_mask = true;
2230 }
2231 if (!have_rcu_nocb_mask)
2232 return;
2233
2234#ifdef CONFIG_RCU_NOCB_CPU_ZERO
2235 pr_info("\tOffload RCU callbacks from CPU 0\n");
2236 cpumask_set_cpu(0, rcu_nocb_mask);
2237#endif /* #ifdef CONFIG_RCU_NOCB_CPU_ZERO */
2238#ifdef CONFIG_RCU_NOCB_CPU_ALL
2239 pr_info("\tOffload RCU callbacks from all CPUs\n");
2240 cpumask_copy(rcu_nocb_mask, cpu_possible_mask);
2241#endif /* #ifdef CONFIG_RCU_NOCB_CPU_ALL */
2242#if defined(CONFIG_NO_HZ_FULL)
2243 if (tick_nohz_full_running)
2244 cpumask_or(rcu_nocb_mask, rcu_nocb_mask, tick_nohz_full_mask);
2245#endif /* #if defined(CONFIG_NO_HZ_FULL) */
2246
2247 if (!cpumask_subset(rcu_nocb_mask, cpu_possible_mask)) {
2248 pr_info("\tNote: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs.\n");
2249 cpumask_and(rcu_nocb_mask, cpu_possible_mask,
2250 rcu_nocb_mask);
2251 }
Tejun Heoad853b42015-02-13 14:37:25 -08002252 pr_info("\tOffload RCU callbacks from CPUs: %*pbl.\n",
2253 cpumask_pr_args(rcu_nocb_mask));
Paul E. McKenneyf4579fc2014-07-25 11:21:47 -07002254 if (rcu_nocb_poll)
2255 pr_info("\tPoll for callbacks from no-CBs CPUs.\n");
2256
2257 for_each_rcu_flavor(rsp) {
Paul E. McKenney34404ca2015-01-19 20:39:20 -08002258 for_each_cpu(cpu, rcu_nocb_mask)
2259 init_nocb_callback_list(per_cpu_ptr(rsp->rda, cpu));
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002260 rcu_organize_nocb_kthreads(rsp);
Paul E. McKenneyf4579fc2014-07-25 11:21:47 -07002261 }
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002262}
2263
2264/* Initialize per-rcu_data variables for no-CBs CPUs. */
2265static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
2266{
2267 rdp->nocb_tail = &rdp->nocb_head;
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002268 init_swait_queue_head(&rdp->nocb_wq);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002269 rdp->nocb_follower_tail = &rdp->nocb_follower_head;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002270}
2271
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002272/*
2273 * If the specified CPU is a no-CBs CPU that does not already have its
2274 * rcuo kthread for the specified RCU flavor, spawn it. If the CPUs are
2275 * brought online out of order, this can require re-organizing the
2276 * leader-follower relationships.
2277 */
2278static void rcu_spawn_one_nocb_kthread(struct rcu_state *rsp, int cpu)
2279{
2280 struct rcu_data *rdp;
2281 struct rcu_data *rdp_last;
2282 struct rcu_data *rdp_old_leader;
2283 struct rcu_data *rdp_spawn = per_cpu_ptr(rsp->rda, cpu);
2284 struct task_struct *t;
2285
2286 /*
2287 * If this isn't a no-CBs CPU or if it already has an rcuo kthread,
2288 * then nothing to do.
2289 */
2290 if (!rcu_is_nocb_cpu(cpu) || rdp_spawn->nocb_kthread)
2291 return;
2292
2293 /* If we didn't spawn the leader first, reorganize! */
2294 rdp_old_leader = rdp_spawn->nocb_leader;
2295 if (rdp_old_leader != rdp_spawn && !rdp_old_leader->nocb_kthread) {
2296 rdp_last = NULL;
2297 rdp = rdp_old_leader;
2298 do {
2299 rdp->nocb_leader = rdp_spawn;
2300 if (rdp_last && rdp != rdp_spawn)
2301 rdp_last->nocb_next_follower = rdp;
Paul E. McKenneybbe5d7a2014-10-24 11:11:08 -07002302 if (rdp == rdp_spawn) {
2303 rdp = rdp->nocb_next_follower;
2304 } else {
2305 rdp_last = rdp;
2306 rdp = rdp->nocb_next_follower;
2307 rdp_last->nocb_next_follower = NULL;
2308 }
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002309 } while (rdp);
2310 rdp_spawn->nocb_next_follower = rdp_old_leader;
2311 }
2312
2313 /* Spawn the kthread for this CPU and RCU flavor. */
2314 t = kthread_run(rcu_nocb_kthread, rdp_spawn,
2315 "rcuo%c/%d", rsp->abbr, cpu);
2316 BUG_ON(IS_ERR(t));
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002317 WRITE_ONCE(rdp_spawn->nocb_kthread, t);
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002318}
2319
2320/*
2321 * If the specified CPU is a no-CBs CPU that does not already have its
2322 * rcuo kthreads, spawn them.
2323 */
2324static void rcu_spawn_all_nocb_kthreads(int cpu)
2325{
2326 struct rcu_state *rsp;
2327
2328 if (rcu_scheduler_fully_active)
2329 for_each_rcu_flavor(rsp)
2330 rcu_spawn_one_nocb_kthread(rsp, cpu);
2331}
2332
2333/*
2334 * Once the scheduler is running, spawn rcuo kthreads for all online
2335 * no-CBs CPUs. This assumes that the early_initcall()s happen before
2336 * non-boot CPUs come online -- if this changes, we will need to add
2337 * some mutual exclusion.
2338 */
2339static void __init rcu_spawn_nocb_kthreads(void)
2340{
2341 int cpu;
2342
2343 for_each_online_cpu(cpu)
2344 rcu_spawn_all_nocb_kthreads(cpu);
2345}
2346
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002347/* How many follower CPU IDs per leader? Default of -1 for sqrt(nr_cpu_ids). */
2348static int rcu_nocb_leader_stride = -1;
2349module_param(rcu_nocb_leader_stride, int, 0444);
2350
2351/*
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002352 * Initialize leader-follower relationships for all no-CBs CPU.
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002353 */
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002354static void __init rcu_organize_nocb_kthreads(struct rcu_state *rsp)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002355{
2356 int cpu;
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002357 int ls = rcu_nocb_leader_stride;
2358 int nl = 0; /* Next leader. */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002359 struct rcu_data *rdp;
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002360 struct rcu_data *rdp_leader = NULL; /* Suppress misguided gcc warn. */
2361 struct rcu_data *rdp_prev = NULL;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002362
Pranith Kumar22c2f662014-07-17 20:11:01 -04002363 if (!have_rcu_nocb_mask)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002364 return;
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002365 if (ls == -1) {
2366 ls = int_sqrt(nr_cpu_ids);
2367 rcu_nocb_leader_stride = ls;
2368 }
2369
2370 /*
2371 * Each pass through this loop sets up one rcu_data structure and
2372 * spawns one rcu_nocb_kthread().
2373 */
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002374 for_each_cpu(cpu, rcu_nocb_mask) {
2375 rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenneyfbce7492014-06-24 09:26:11 -07002376 if (rdp->cpu >= nl) {
2377 /* New leader, set up for followers & next leader. */
2378 nl = DIV_ROUND_UP(rdp->cpu + 1, ls) * ls;
2379 rdp->nocb_leader = rdp;
2380 rdp_leader = rdp;
2381 } else {
2382 /* Another follower, link to previous leader. */
2383 rdp->nocb_leader = rdp_leader;
2384 rdp_prev->nocb_next_follower = rdp;
2385 }
2386 rdp_prev = rdp;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002387 }
2388}
2389
2390/* Prevent __call_rcu() from enqueuing callbacks on no-CBs CPUs */
Paul E. McKenney34ed62462013-01-07 13:37:42 -08002391static bool init_nocb_callback_list(struct rcu_data *rdp)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002392{
Pranith Kumar22c2f662014-07-17 20:11:01 -04002393 if (!rcu_is_nocb_cpu(rdp->cpu))
Paul E. McKenney34ed62462013-01-07 13:37:42 -08002394 return false;
Pranith Kumar22c2f662014-07-17 20:11:01 -04002395
Paul E. McKenney34404ca2015-01-19 20:39:20 -08002396 /* If there are early-boot callbacks, move them to nocb lists. */
2397 if (rdp->nxtlist) {
2398 rdp->nocb_head = rdp->nxtlist;
2399 rdp->nocb_tail = rdp->nxttail[RCU_NEXT_TAIL];
2400 atomic_long_set(&rdp->nocb_q_count, rdp->qlen);
2401 atomic_long_set(&rdp->nocb_q_count_lazy, rdp->qlen_lazy);
2402 rdp->nxtlist = NULL;
2403 rdp->qlen = 0;
2404 rdp->qlen_lazy = 0;
2405 }
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002406 rdp->nxttail[RCU_NEXT_TAIL] = NULL;
Paul E. McKenney34ed62462013-01-07 13:37:42 -08002407 return true;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002408}
2409
2410#else /* #ifdef CONFIG_RCU_NOCB_CPU */
2411
Paul E. McKenneyd7e29932014-10-27 09:15:54 -07002412static bool rcu_nocb_cpu_needs_barrier(struct rcu_state *rsp, int cpu)
2413{
2414 WARN_ON_ONCE(1); /* Should be dead code. */
2415 return false;
2416}
2417
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002418static void rcu_nocb_gp_cleanup(struct swait_queue_head *sq)
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002419{
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002420}
2421
2422static void rcu_nocb_gp_set(struct rcu_node *rnp, int nrq)
2423{
2424}
2425
Paul Gortmakerabedf8e2016-02-19 09:46:41 +01002426static struct swait_queue_head *rcu_nocb_gp_get(struct rcu_node *rnp)
Daniel Wagner065bb782016-02-19 09:46:40 +01002427{
2428 return NULL;
2429}
2430
Paul E. McKenneydae6e642013-02-10 20:48:58 -08002431static void rcu_init_one_nocb(struct rcu_node *rnp)
2432{
2433}
2434
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002435static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002436 bool lazy, unsigned long flags)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002437{
Pranith Kumar4afc7e22014-07-08 18:26:16 -04002438 return false;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002439}
2440
2441static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp,
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002442 struct rcu_data *rdp,
2443 unsigned long flags)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002444{
Pranith Kumarf4aa84b2014-07-08 18:26:17 -04002445 return false;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002446}
2447
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002448static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
2449{
2450}
2451
Paul E. McKenney9fdd3bc2014-07-29 14:50:47 -07002452static int rcu_nocb_need_deferred_wakeup(struct rcu_data *rdp)
Paul E. McKenney96d3fd02013-10-04 14:33:34 -07002453{
2454 return false;
2455}
2456
2457static void do_nocb_deferred_wakeup(struct rcu_data *rdp)
2458{
2459}
2460
Paul E. McKenney35ce7f22014-07-11 11:30:24 -07002461static void rcu_spawn_all_nocb_kthreads(int cpu)
2462{
2463}
2464
2465static void __init rcu_spawn_nocb_kthreads(void)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002466{
2467}
2468
Paul E. McKenney34ed62462013-01-07 13:37:42 -08002469static bool init_nocb_callback_list(struct rcu_data *rdp)
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002470{
Paul E. McKenney34ed62462013-01-07 13:37:42 -08002471 return false;
Paul E. McKenney3fbfbf72012-08-19 21:35:53 -07002472}
2473
2474#endif /* #else #ifdef CONFIG_RCU_NOCB_CPU */
Paul E. McKenney65d798f2013-04-12 16:19:10 -07002475
2476/*
2477 * An adaptive-ticks CPU can potentially execute in kernel mode for an
2478 * arbitrarily long period of time with the scheduling-clock tick turned
2479 * off. RCU will be paying attention to this CPU because it is in the
2480 * kernel, but the CPU cannot be guaranteed to be executing the RCU state
2481 * machine because the scheduling-clock tick has been disabled. Therefore,
2482 * if an adaptive-ticks CPU is failing to respond to the current grace
2483 * period and has not be idle from an RCU perspective, kick it.
2484 */
Paul E. McKenney4a81e832014-06-20 16:49:01 -07002485static void __maybe_unused rcu_kick_nohz_cpu(int cpu)
Paul E. McKenney65d798f2013-04-12 16:19:10 -07002486{
2487#ifdef CONFIG_NO_HZ_FULL
2488 if (tick_nohz_full_cpu(cpu))
2489 smp_send_reschedule(cpu);
2490#endif /* #ifdef CONFIG_NO_HZ_FULL */
2491}
Paul E. McKenney23332102013-06-21 12:34:33 -07002492
2493
2494#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
2495
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002496static int full_sysidle_state; /* Current system-idle state. */
Paul E. McKenneyd4bd54f2013-06-21 14:51:40 -07002497#define RCU_SYSIDLE_NOT 0 /* Some CPU is not idle. */
2498#define RCU_SYSIDLE_SHORT 1 /* All CPUs idle for brief period. */
2499#define RCU_SYSIDLE_LONG 2 /* All CPUs idle for long enough. */
2500#define RCU_SYSIDLE_FULL 3 /* All CPUs idle, ready for sysidle. */
2501#define RCU_SYSIDLE_FULL_NOTED 4 /* Actually entered sysidle state. */
2502
2503/*
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002504 * Invoked to note exit from irq or task transition to idle. Note that
2505 * usermode execution does -not- count as idle here! After all, we want
2506 * to detect full-system idle states, not RCU quiescent states and grace
2507 * periods. The caller must have disabled interrupts.
2508 */
Christoph Lameter28ced792014-09-02 14:13:44 -07002509static void rcu_sysidle_enter(int irq)
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002510{
2511 unsigned long j;
Christoph Lameter28ced792014-09-02 14:13:44 -07002512 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002513
Paul E. McKenney663e1312014-07-21 11:34:33 -07002514 /* If there are no nohz_full= CPUs, no need to track this. */
2515 if (!tick_nohz_full_enabled())
2516 return;
2517
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002518 /* Adjust nesting, check for fully idle. */
2519 if (irq) {
2520 rdtp->dynticks_idle_nesting--;
2521 WARN_ON_ONCE(rdtp->dynticks_idle_nesting < 0);
2522 if (rdtp->dynticks_idle_nesting != 0)
2523 return; /* Still not fully idle. */
2524 } else {
2525 if ((rdtp->dynticks_idle_nesting & DYNTICK_TASK_NEST_MASK) ==
2526 DYNTICK_TASK_NEST_VALUE) {
2527 rdtp->dynticks_idle_nesting = 0;
2528 } else {
2529 rdtp->dynticks_idle_nesting -= DYNTICK_TASK_NEST_VALUE;
2530 WARN_ON_ONCE(rdtp->dynticks_idle_nesting < 0);
2531 return; /* Still not fully idle. */
2532 }
2533 }
2534
2535 /* Record start of fully idle period. */
2536 j = jiffies;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002537 WRITE_ONCE(rdtp->dynticks_idle_jiffies, j);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002538 smp_mb__before_atomic();
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002539 atomic_inc(&rdtp->dynticks_idle);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002540 smp_mb__after_atomic();
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002541 WARN_ON_ONCE(atomic_read(&rdtp->dynticks_idle) & 0x1);
2542}
2543
2544/*
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002545 * Unconditionally force exit from full system-idle state. This is
2546 * invoked when a normal CPU exits idle, but must be called separately
2547 * for the timekeeping CPU (tick_do_timer_cpu). The reason for this
2548 * is that the timekeeping CPU is permitted to take scheduling-clock
2549 * interrupts while the system is in system-idle state, and of course
2550 * rcu_sysidle_exit() has no way of distinguishing a scheduling-clock
2551 * interrupt from any other type of interrupt.
2552 */
2553void rcu_sysidle_force_exit(void)
2554{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002555 int oldstate = READ_ONCE(full_sysidle_state);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002556 int newoldstate;
2557
2558 /*
2559 * Each pass through the following loop attempts to exit full
2560 * system-idle state. If contention proves to be a problem,
2561 * a trylock-based contention tree could be used here.
2562 */
2563 while (oldstate > RCU_SYSIDLE_SHORT) {
2564 newoldstate = cmpxchg(&full_sysidle_state,
2565 oldstate, RCU_SYSIDLE_NOT);
2566 if (oldstate == newoldstate &&
2567 oldstate == RCU_SYSIDLE_FULL_NOTED) {
2568 rcu_kick_nohz_cpu(tick_do_timer_cpu);
2569 return; /* We cleared it, done! */
2570 }
2571 oldstate = newoldstate;
2572 }
2573 smp_mb(); /* Order initial oldstate fetch vs. later non-idle work. */
2574}
2575
2576/*
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002577 * Invoked to note entry to irq or task transition from idle. Note that
2578 * usermode execution does -not- count as idle here! The caller must
2579 * have disabled interrupts.
2580 */
Christoph Lameter28ced792014-09-02 14:13:44 -07002581static void rcu_sysidle_exit(int irq)
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002582{
Christoph Lameter28ced792014-09-02 14:13:44 -07002583 struct rcu_dynticks *rdtp = this_cpu_ptr(&rcu_dynticks);
2584
Paul E. McKenney663e1312014-07-21 11:34:33 -07002585 /* If there are no nohz_full= CPUs, no need to track this. */
2586 if (!tick_nohz_full_enabled())
2587 return;
2588
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002589 /* Adjust nesting, check for already non-idle. */
2590 if (irq) {
2591 rdtp->dynticks_idle_nesting++;
2592 WARN_ON_ONCE(rdtp->dynticks_idle_nesting <= 0);
2593 if (rdtp->dynticks_idle_nesting != 1)
2594 return; /* Already non-idle. */
2595 } else {
2596 /*
2597 * Allow for irq misnesting. Yes, it really is possible
2598 * to enter an irq handler then never leave it, and maybe
2599 * also vice versa. Handle both possibilities.
2600 */
2601 if (rdtp->dynticks_idle_nesting & DYNTICK_TASK_NEST_MASK) {
2602 rdtp->dynticks_idle_nesting += DYNTICK_TASK_NEST_VALUE;
2603 WARN_ON_ONCE(rdtp->dynticks_idle_nesting <= 0);
2604 return; /* Already non-idle. */
2605 } else {
2606 rdtp->dynticks_idle_nesting = DYNTICK_TASK_EXIT_IDLE;
2607 }
2608 }
2609
2610 /* Record end of idle period. */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002611 smp_mb__before_atomic();
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002612 atomic_inc(&rdtp->dynticks_idle);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002613 smp_mb__after_atomic();
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002614 WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks_idle) & 0x1));
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002615
2616 /*
2617 * If we are the timekeeping CPU, we are permitted to be non-idle
2618 * during a system-idle state. This must be the case, because
2619 * the timekeeping CPU has to take scheduling-clock interrupts
2620 * during the time that the system is transitioning to full
2621 * system-idle state. This means that the timekeeping CPU must
2622 * invoke rcu_sysidle_force_exit() directly if it does anything
2623 * more than take a scheduling-clock interrupt.
2624 */
2625 if (smp_processor_id() == tick_do_timer_cpu)
2626 return;
2627
2628 /* Update system-idle state: We are clearly no longer fully idle! */
2629 rcu_sysidle_force_exit();
2630}
2631
2632/*
2633 * Check to see if the current CPU is idle. Note that usermode execution
Paul E. McKenney58719682015-02-24 11:05:36 -08002634 * does not count as idle. The caller must have disabled interrupts,
2635 * and must be running on tick_do_timer_cpu.
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002636 */
2637static void rcu_sysidle_check_cpu(struct rcu_data *rdp, bool *isidle,
2638 unsigned long *maxj)
2639{
2640 int cur;
2641 unsigned long j;
2642 struct rcu_dynticks *rdtp = rdp->dynticks;
2643
Paul E. McKenney663e1312014-07-21 11:34:33 -07002644 /* If there are no nohz_full= CPUs, don't check system-wide idleness. */
2645 if (!tick_nohz_full_enabled())
2646 return;
2647
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002648 /*
2649 * If some other CPU has already reported non-idle, if this is
2650 * not the flavor of RCU that tracks sysidle state, or if this
2651 * is an offline or the timekeeping CPU, nothing to do.
2652 */
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002653 if (!*isidle || rdp->rsp != rcu_state_p ||
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002654 cpu_is_offline(rdp->cpu) || rdp->cpu == tick_do_timer_cpu)
2655 return;
Paul E. McKenney58719682015-02-24 11:05:36 -08002656 /* Verify affinity of current kthread. */
2657 WARN_ON_ONCE(smp_processor_id() != tick_do_timer_cpu);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002658
2659 /* Pick up current idle and NMI-nesting counter and check. */
2660 cur = atomic_read(&rdtp->dynticks_idle);
2661 if (cur & 0x1) {
2662 *isidle = false; /* We are not idle! */
2663 return;
2664 }
2665 smp_mb(); /* Read counters before timestamps. */
2666
2667 /* Pick up timestamps. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002668 j = READ_ONCE(rdtp->dynticks_idle_jiffies);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002669 /* If this CPU entered idle more recently, update maxj timestamp. */
2670 if (ULONG_CMP_LT(*maxj, j))
2671 *maxj = j;
2672}
2673
2674/*
2675 * Is this the flavor of RCU that is handling full-system idle?
2676 */
2677static bool is_sysidle_rcu_state(struct rcu_state *rsp)
2678{
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002679 return rsp == rcu_state_p;
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002680}
2681
2682/*
2683 * Return a delay in jiffies based on the number of CPUs, rcu_node
2684 * leaf fanout, and jiffies tick rate. The idea is to allow larger
2685 * systems more time to transition to full-idle state in order to
2686 * avoid the cache thrashing that otherwise occur on the state variable.
2687 * Really small systems (less than a couple of tens of CPUs) should
2688 * instead use a single global atomically incremented counter, and later
2689 * versions of this will automatically reconfigure themselves accordingly.
2690 */
2691static unsigned long rcu_sysidle_delay(void)
2692{
2693 if (nr_cpu_ids <= CONFIG_NO_HZ_FULL_SYSIDLE_SMALL)
2694 return 0;
2695 return DIV_ROUND_UP(nr_cpu_ids * HZ, rcu_fanout_leaf * 1000);
2696}
2697
2698/*
2699 * Advance the full-system-idle state. This is invoked when all of
2700 * the non-timekeeping CPUs are idle.
2701 */
2702static void rcu_sysidle(unsigned long j)
2703{
2704 /* Check the current state. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002705 switch (READ_ONCE(full_sysidle_state)) {
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002706 case RCU_SYSIDLE_NOT:
2707
2708 /* First time all are idle, so note a short idle period. */
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002709 WRITE_ONCE(full_sysidle_state, RCU_SYSIDLE_SHORT);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002710 break;
2711
2712 case RCU_SYSIDLE_SHORT:
2713
2714 /*
2715 * Idle for a bit, time to advance to next state?
2716 * cmpxchg failure means race with non-idle, let them win.
2717 */
2718 if (ULONG_CMP_GE(jiffies, j + rcu_sysidle_delay()))
2719 (void)cmpxchg(&full_sysidle_state,
2720 RCU_SYSIDLE_SHORT, RCU_SYSIDLE_LONG);
2721 break;
2722
2723 case RCU_SYSIDLE_LONG:
2724
2725 /*
2726 * Do an additional check pass before advancing to full.
2727 * cmpxchg failure means race with non-idle, let them win.
2728 */
2729 if (ULONG_CMP_GE(jiffies, j + rcu_sysidle_delay()))
2730 (void)cmpxchg(&full_sysidle_state,
2731 RCU_SYSIDLE_LONG, RCU_SYSIDLE_FULL);
2732 break;
2733
2734 default:
2735 break;
2736 }
2737}
2738
2739/*
2740 * Found a non-idle non-timekeeping CPU, so kick the system-idle state
2741 * back to the beginning.
2742 */
2743static void rcu_sysidle_cancel(void)
2744{
2745 smp_mb();
Paul E. McKenneybecb41b2014-04-07 13:34:07 -07002746 if (full_sysidle_state > RCU_SYSIDLE_SHORT)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002747 WRITE_ONCE(full_sysidle_state, RCU_SYSIDLE_NOT);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002748}
2749
2750/*
2751 * Update the sysidle state based on the results of a force-quiescent-state
2752 * scan of the CPUs' dyntick-idle state.
2753 */
2754static void rcu_sysidle_report(struct rcu_state *rsp, int isidle,
2755 unsigned long maxj, bool gpkt)
2756{
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002757 if (rsp != rcu_state_p)
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002758 return; /* Wrong flavor, ignore. */
2759 if (gpkt && nr_cpu_ids <= CONFIG_NO_HZ_FULL_SYSIDLE_SMALL)
2760 return; /* Running state machine from timekeeping CPU. */
2761 if (isidle)
2762 rcu_sysidle(maxj); /* More idle! */
2763 else
2764 rcu_sysidle_cancel(); /* Idle is over. */
2765}
2766
2767/*
2768 * Wrapper for rcu_sysidle_report() when called from the grace-period
2769 * kthread's context.
2770 */
2771static void rcu_sysidle_report_gp(struct rcu_state *rsp, int isidle,
2772 unsigned long maxj)
2773{
Paul E. McKenney663e1312014-07-21 11:34:33 -07002774 /* If there are no nohz_full= CPUs, no need to track this. */
2775 if (!tick_nohz_full_enabled())
2776 return;
2777
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002778 rcu_sysidle_report(rsp, isidle, maxj, true);
2779}
2780
2781/* Callback and function for forcing an RCU grace period. */
2782struct rcu_sysidle_head {
2783 struct rcu_head rh;
2784 int inuse;
2785};
2786
2787static void rcu_sysidle_cb(struct rcu_head *rhp)
2788{
2789 struct rcu_sysidle_head *rshp;
2790
2791 /*
2792 * The following memory barrier is needed to replace the
2793 * memory barriers that would normally be in the memory
2794 * allocator.
2795 */
2796 smp_mb(); /* grace period precedes setting inuse. */
2797
2798 rshp = container_of(rhp, struct rcu_sysidle_head, rh);
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002799 WRITE_ONCE(rshp->inuse, 0);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002800}
2801
2802/*
2803 * Check to see if the system is fully idle, other than the timekeeping CPU.
Paul E. McKenney663e1312014-07-21 11:34:33 -07002804 * The caller must have disabled interrupts. This is not intended to be
2805 * called unless tick_nohz_full_enabled().
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002806 */
2807bool rcu_sys_is_idle(void)
2808{
2809 static struct rcu_sysidle_head rsh;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002810 int rss = READ_ONCE(full_sysidle_state);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002811
2812 if (WARN_ON_ONCE(smp_processor_id() != tick_do_timer_cpu))
2813 return false;
2814
2815 /* Handle small-system case by doing a full scan of CPUs. */
2816 if (nr_cpu_ids <= CONFIG_NO_HZ_FULL_SYSIDLE_SMALL) {
2817 int oldrss = rss - 1;
2818
2819 /*
2820 * One pass to advance to each state up to _FULL.
2821 * Give up if any pass fails to advance the state.
2822 */
2823 while (rss < RCU_SYSIDLE_FULL && oldrss < rss) {
2824 int cpu;
2825 bool isidle = true;
2826 unsigned long maxj = jiffies - ULONG_MAX / 4;
2827 struct rcu_data *rdp;
2828
2829 /* Scan all the CPUs looking for nonidle CPUs. */
2830 for_each_possible_cpu(cpu) {
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002831 rdp = per_cpu_ptr(rcu_state_p->rda, cpu);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002832 rcu_sysidle_check_cpu(rdp, &isidle, &maxj);
2833 if (!isidle)
2834 break;
2835 }
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002836 rcu_sysidle_report(rcu_state_p, isidle, maxj, false);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002837 oldrss = rss;
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002838 rss = READ_ONCE(full_sysidle_state);
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002839 }
2840 }
2841
2842 /* If this is the first observation of an idle period, record it. */
2843 if (rss == RCU_SYSIDLE_FULL) {
2844 rss = cmpxchg(&full_sysidle_state,
2845 RCU_SYSIDLE_FULL, RCU_SYSIDLE_FULL_NOTED);
2846 return rss == RCU_SYSIDLE_FULL;
2847 }
2848
2849 smp_mb(); /* ensure rss load happens before later caller actions. */
2850
2851 /* If already fully idle, tell the caller (in case of races). */
2852 if (rss == RCU_SYSIDLE_FULL_NOTED)
2853 return true;
2854
2855 /*
2856 * If we aren't there yet, and a grace period is not in flight,
2857 * initiate a grace period. Either way, tell the caller that
2858 * we are not there yet. We use an xchg() rather than an assignment
2859 * to make up for the memory barriers that would otherwise be
2860 * provided by the memory allocator.
2861 */
2862 if (nr_cpu_ids > CONFIG_NO_HZ_FULL_SYSIDLE_SMALL &&
Paul E. McKenney417e8d22014-07-21 11:26:54 -07002863 !rcu_gp_in_progress(rcu_state_p) &&
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002864 !rsh.inuse && xchg(&rsh.inuse, 1) == 0)
2865 call_rcu(&rsh.rh, rcu_sysidle_cb);
2866 return false;
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002867}
2868
2869/*
Paul E. McKenney23332102013-06-21 12:34:33 -07002870 * Initialize dynticks sysidle state for CPUs coming online.
2871 */
2872static void rcu_sysidle_init_percpu_data(struct rcu_dynticks *rdtp)
2873{
2874 rdtp->dynticks_idle_nesting = DYNTICK_TASK_NEST_VALUE;
2875}
2876
2877#else /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
2878
Christoph Lameter28ced792014-09-02 14:13:44 -07002879static void rcu_sysidle_enter(int irq)
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002880{
2881}
2882
Christoph Lameter28ced792014-09-02 14:13:44 -07002883static void rcu_sysidle_exit(int irq)
Paul E. McKenneyeb348b82013-06-21 13:00:57 -07002884{
2885}
2886
Paul E. McKenney0edd1b12013-06-21 16:37:22 -07002887static void rcu_sysidle_check_cpu(struct rcu_data *rdp, bool *isidle,
2888 unsigned long *maxj)
2889{
2890}
2891
2892static bool is_sysidle_rcu_state(struct rcu_state *rsp)
2893{
2894 return false;
2895}
2896
2897static void rcu_sysidle_report_gp(struct rcu_state *rsp, int isidle,
2898 unsigned long maxj)
2899{
2900}
2901
Paul E. McKenney23332102013-06-21 12:34:33 -07002902static void rcu_sysidle_init_percpu_data(struct rcu_dynticks *rdtp)
2903{
2904}
2905
2906#endif /* #else #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
Paul E. McKenneya0969322013-11-08 09:03:10 -08002907
2908/*
2909 * Is this CPU a NO_HZ_FULL CPU that should ignore RCU so that the
2910 * grace-period kthread will do force_quiescent_state() processing?
2911 * The idea is to avoid waking up RCU core processing on such a
2912 * CPU unless the grace period has extended for too long.
2913 *
2914 * This code relies on the fact that all NO_HZ_FULL CPUs are also
Paul Bolle52e2bb92014-02-09 14:35:11 +01002915 * CONFIG_RCU_NOCB_CPU CPUs.
Paul E. McKenneya0969322013-11-08 09:03:10 -08002916 */
2917static bool rcu_nohz_full_cpu(struct rcu_state *rsp)
2918{
2919#ifdef CONFIG_NO_HZ_FULL
2920 if (tick_nohz_full_cpu(smp_processor_id()) &&
2921 (!rcu_gp_in_progress(rsp) ||
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002922 ULONG_CMP_LT(jiffies, READ_ONCE(rsp->gp_start) + HZ)))
Joe Perches5ce035f2015-03-30 16:46:16 -07002923 return true;
Paul E. McKenneya0969322013-11-08 09:03:10 -08002924#endif /* #ifdef CONFIG_NO_HZ_FULL */
Joe Perches5ce035f2015-03-30 16:46:16 -07002925 return false;
Paul E. McKenneya0969322013-11-08 09:03:10 -08002926}
Paul E. McKenney5057f55e52014-04-01 11:20:36 -07002927
2928/*
2929 * Bind the grace-period kthread for the sysidle flavor of RCU to the
2930 * timekeeping CPU.
2931 */
2932static void rcu_bind_gp_kthread(void)
2933{
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -07002934 int __maybe_unused cpu;
Paul E. McKenney5057f55e52014-04-01 11:20:36 -07002935
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -07002936 if (!tick_nohz_full_enabled())
Paul E. McKenney5057f55e52014-04-01 11:20:36 -07002937 return;
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -07002938#ifdef CONFIG_NO_HZ_FULL_SYSIDLE
2939 cpu = tick_do_timer_cpu;
Paul E. McKenney58719682015-02-24 11:05:36 -08002940 if (cpu >= 0 && cpu < nr_cpu_ids)
Paul E. McKenney5057f55e52014-04-01 11:20:36 -07002941 set_cpus_allowed_ptr(current, cpumask_of(cpu));
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -07002942#else /* #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
Paul E. McKenney58719682015-02-24 11:05:36 -08002943 housekeeping_affine(current);
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -07002944#endif /* #else #ifdef CONFIG_NO_HZ_FULL_SYSIDLE */
Paul E. McKenney5057f55e52014-04-01 11:20:36 -07002945}
Paul E. McKenney176f8f72014-08-04 17:43:50 -07002946
2947/* Record the current task on dyntick-idle entry. */
2948static void rcu_dynticks_task_enter(void)
2949{
2950#if defined(CONFIG_TASKS_RCU) && defined(CONFIG_NO_HZ_FULL)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002951 WRITE_ONCE(current->rcu_tasks_idle_cpu, smp_processor_id());
Paul E. McKenney176f8f72014-08-04 17:43:50 -07002952#endif /* #if defined(CONFIG_TASKS_RCU) && defined(CONFIG_NO_HZ_FULL) */
2953}
2954
2955/* Record no current task on dyntick-idle exit. */
2956static void rcu_dynticks_task_exit(void)
2957{
2958#if defined(CONFIG_TASKS_RCU) && defined(CONFIG_NO_HZ_FULL)
Paul E. McKenney7d0ae802015-03-03 14:57:58 -08002959 WRITE_ONCE(current->rcu_tasks_idle_cpu, -1);
Paul E. McKenney176f8f72014-08-04 17:43:50 -07002960#endif /* #if defined(CONFIG_TASKS_RCU) && defined(CONFIG_NO_HZ_FULL) */
2961}