]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - kernel/rcutree_plugin.h
rcu: Add a module parameter to force use of expedited RCU primitives
[mirror_ubuntu-zesty-kernel.git] / kernel / rcutree_plugin.h
CommitLineData
f41d911f
PM
1/*
2 * Read-Copy Update mechanism for mutual exclusion (tree-based version)
3 * Internal non-public definitions that provide either classic
6cc68793 4 * or preemptible semantics.
f41d911f
PM
5 *
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
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
d9a3da06 27#include <linux/delay.h>
b626c1b6 28#include <linux/oom.h>
62ab7072 29#include <linux/smpboot.h>
f41d911f 30
5b61b0ba
MG
31#define RCU_KTHREAD_PRIO 1
32
33#ifdef CONFIG_RCU_BOOST
34#define RCU_BOOST_PRIO CONFIG_RCU_BOOST_PRIO
35#else
36#define RCU_BOOST_PRIO RCU_KTHREAD_PRIO
37#endif
38
26845c28
PM
39/*
40 * Check the RCU kernel configuration parameters and print informative
41 * messages about anything out of the ordinary. If you like #ifdef, you
42 * will love this function.
43 */
44static void __init rcu_bootup_announce_oddness(void)
45{
46#ifdef CONFIG_RCU_TRACE
47 printk(KERN_INFO "\tRCU debugfs-based tracing is enabled.\n");
48#endif
49#if (defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 64) || (!defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 32)
50 printk(KERN_INFO "\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
51 CONFIG_RCU_FANOUT);
52#endif
53#ifdef CONFIG_RCU_FANOUT_EXACT
54 printk(KERN_INFO "\tHierarchical RCU autobalancing is disabled.\n");
55#endif
56#ifdef CONFIG_RCU_FAST_NO_HZ
57 printk(KERN_INFO
58 "\tRCU dyntick-idle grace-period acceleration is enabled.\n");
59#endif
60#ifdef CONFIG_PROVE_RCU
61 printk(KERN_INFO "\tRCU lockdep checking is enabled.\n");
62#endif
63#ifdef CONFIG_RCU_TORTURE_TEST_RUNNABLE
64 printk(KERN_INFO "\tRCU torture testing starts during boot.\n");
65#endif
81a294c4 66#if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE)
a858af28
PM
67 printk(KERN_INFO "\tDump stacks of tasks blocking RCU-preempt GP.\n");
68#endif
69#if defined(CONFIG_RCU_CPU_STALL_INFO)
70 printk(KERN_INFO "\tAdditional per-CPU info printed with stalls.\n");
26845c28
PM
71#endif
72#if NUM_RCU_LVL_4 != 0
cc5df65b 73 printk(KERN_INFO "\tFour-level hierarchy is enabled.\n");
26845c28 74#endif
f885b7f2
PM
75 if (rcu_fanout_leaf != CONFIG_RCU_FANOUT_LEAF)
76 printk(KERN_INFO "\tExperimental boot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf);
cca6f393
PM
77 if (nr_cpu_ids != NR_CPUS)
78 printk(KERN_INFO "\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%d.\n", NR_CPUS, nr_cpu_ids);
26845c28
PM
79}
80
f41d911f
PM
81#ifdef CONFIG_TREE_PREEMPT_RCU
82
037b64ed
PM
83struct rcu_state rcu_preempt_state =
84 RCU_STATE_INITIALIZER(rcu_preempt, call_rcu);
f41d911f 85DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
27f4d280 86static struct rcu_state *rcu_state = &rcu_preempt_state;
f41d911f 87
d9a3da06
PM
88static int rcu_preempted_readers_exp(struct rcu_node *rnp);
89
f41d911f
PM
90/*
91 * Tell them what RCU they are running.
92 */
0e0fc1c2 93static void __init rcu_bootup_announce(void)
f41d911f 94{
6cc68793 95 printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n");
26845c28 96 rcu_bootup_announce_oddness();
f41d911f
PM
97}
98
99/*
100 * Return the number of RCU-preempt batches processed thus far
101 * for debug and statistics.
102 */
103long rcu_batches_completed_preempt(void)
104{
105 return rcu_preempt_state.completed;
106}
107EXPORT_SYMBOL_GPL(rcu_batches_completed_preempt);
108
109/*
110 * Return the number of RCU batches processed thus far for debug & stats.
111 */
112long rcu_batches_completed(void)
113{
114 return rcu_batches_completed_preempt();
115}
116EXPORT_SYMBOL_GPL(rcu_batches_completed);
117
bf66f18e
PM
118/*
119 * Force a quiescent state for preemptible RCU.
120 */
121void rcu_force_quiescent_state(void)
122{
4cdfc175 123 force_quiescent_state(&rcu_preempt_state);
bf66f18e
PM
124}
125EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
126
f41d911f 127/*
6cc68793 128 * Record a preemptible-RCU quiescent state for the specified CPU. Note
f41d911f
PM
129 * that this just means that the task currently running on the CPU is
130 * not in a quiescent state. There might be any number of tasks blocked
131 * while in an RCU read-side critical section.
25502a6c
PM
132 *
133 * Unlike the other rcu_*_qs() functions, callers to this function
134 * must disable irqs in order to protect the assignment to
135 * ->rcu_read_unlock_special.
f41d911f 136 */
c3422bea 137static void rcu_preempt_qs(int cpu)
f41d911f
PM
138{
139 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
25502a6c 140
e4cc1f22 141 if (rdp->passed_quiesce == 0)
d4c08f2a 142 trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs");
e4cc1f22 143 rdp->passed_quiesce = 1;
25502a6c 144 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
f41d911f
PM
145}
146
147/*
c3422bea
PM
148 * We have entered the scheduler, and the current task might soon be
149 * context-switched away from. If this task is in an RCU read-side
150 * critical section, we will no longer be able to rely on the CPU to
12f5f524
PM
151 * record that fact, so we enqueue the task on the blkd_tasks list.
152 * The task will dequeue itself when it exits the outermost enclosing
153 * RCU read-side critical section. Therefore, the current grace period
154 * cannot be permitted to complete until the blkd_tasks list entries
155 * predating the current grace period drain, in other words, until
156 * rnp->gp_tasks becomes NULL.
c3422bea
PM
157 *
158 * Caller must disable preemption.
f41d911f 159 */
cba6d0d6 160static void rcu_preempt_note_context_switch(int cpu)
f41d911f
PM
161{
162 struct task_struct *t = current;
c3422bea 163 unsigned long flags;
f41d911f
PM
164 struct rcu_data *rdp;
165 struct rcu_node *rnp;
166
10f39bb1 167 if (t->rcu_read_lock_nesting > 0 &&
f41d911f
PM
168 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
169
170 /* Possibly blocking in an RCU read-side critical section. */
cba6d0d6 171 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
f41d911f 172 rnp = rdp->mynode;
1304afb2 173 raw_spin_lock_irqsave(&rnp->lock, flags);
f41d911f 174 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
86848966 175 t->rcu_blocked_node = rnp;
f41d911f
PM
176
177 /*
178 * If this CPU has already checked in, then this task
179 * will hold up the next grace period rather than the
180 * current grace period. Queue the task accordingly.
181 * If the task is queued for the current grace period
182 * (i.e., this CPU has not yet passed through a quiescent
183 * state for the current grace period), then as long
184 * as that task remains queued, the current grace period
12f5f524
PM
185 * cannot end. Note that there is some uncertainty as
186 * to exactly when the current grace period started.
187 * We take a conservative approach, which can result
188 * in unnecessarily waiting on tasks that started very
189 * slightly after the current grace period began. C'est
190 * la vie!!!
b0e165c0
PM
191 *
192 * But first, note that the current CPU must still be
193 * on line!
f41d911f 194 */
b0e165c0 195 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
e7d8842e 196 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
12f5f524
PM
197 if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) {
198 list_add(&t->rcu_node_entry, rnp->gp_tasks->prev);
199 rnp->gp_tasks = &t->rcu_node_entry;
27f4d280
PM
200#ifdef CONFIG_RCU_BOOST
201 if (rnp->boost_tasks != NULL)
202 rnp->boost_tasks = rnp->gp_tasks;
203#endif /* #ifdef CONFIG_RCU_BOOST */
12f5f524
PM
204 } else {
205 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
206 if (rnp->qsmask & rdp->grpmask)
207 rnp->gp_tasks = &t->rcu_node_entry;
208 }
d4c08f2a
PM
209 trace_rcu_preempt_task(rdp->rsp->name,
210 t->pid,
211 (rnp->qsmask & rdp->grpmask)
212 ? rnp->gpnum
213 : rnp->gpnum + 1);
1304afb2 214 raw_spin_unlock_irqrestore(&rnp->lock, flags);
10f39bb1
PM
215 } else if (t->rcu_read_lock_nesting < 0 &&
216 t->rcu_read_unlock_special) {
217
218 /*
219 * Complete exit from RCU read-side critical section on
220 * behalf of preempted instance of __rcu_read_unlock().
221 */
222 rcu_read_unlock_special(t);
f41d911f
PM
223 }
224
225 /*
226 * Either we were not in an RCU read-side critical section to
227 * begin with, or we have now recorded that critical section
228 * globally. Either way, we can now note a quiescent state
229 * for this CPU. Again, if we were in an RCU read-side critical
230 * section, and if that critical section was blocking the current
231 * grace period, then the fact that the task has been enqueued
232 * means that we continue to block the current grace period.
233 */
e7d8842e 234 local_irq_save(flags);
cba6d0d6 235 rcu_preempt_qs(cpu);
e7d8842e 236 local_irq_restore(flags);
f41d911f
PM
237}
238
fc2219d4
PM
239/*
240 * Check for preempted RCU readers blocking the current grace period
241 * for the specified rcu_node structure. If the caller needs a reliable
242 * answer, it must hold the rcu_node's ->lock.
243 */
27f4d280 244static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
fc2219d4 245{
12f5f524 246 return rnp->gp_tasks != NULL;
fc2219d4
PM
247}
248
b668c9cf
PM
249/*
250 * Record a quiescent state for all tasks that were previously queued
251 * on the specified rcu_node structure and that were blocking the current
252 * RCU grace period. The caller must hold the specified rnp->lock with
253 * irqs disabled, and this lock is released upon return, but irqs remain
254 * disabled.
255 */
d3f6bad3 256static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
b668c9cf
PM
257 __releases(rnp->lock)
258{
259 unsigned long mask;
260 struct rcu_node *rnp_p;
261
27f4d280 262 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
1304afb2 263 raw_spin_unlock_irqrestore(&rnp->lock, flags);
b668c9cf
PM
264 return; /* Still need more quiescent states! */
265 }
266
267 rnp_p = rnp->parent;
268 if (rnp_p == NULL) {
269 /*
270 * Either there is only one rcu_node in the tree,
271 * or tasks were kicked up to root rcu_node due to
272 * CPUs going offline.
273 */
d3f6bad3 274 rcu_report_qs_rsp(&rcu_preempt_state, flags);
b668c9cf
PM
275 return;
276 }
277
278 /* Report up the rest of the hierarchy. */
279 mask = rnp->grpmask;
1304afb2
PM
280 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
281 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
d3f6bad3 282 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
b668c9cf
PM
283}
284
12f5f524
PM
285/*
286 * Advance a ->blkd_tasks-list pointer to the next entry, instead
287 * returning NULL if at the end of the list.
288 */
289static struct list_head *rcu_next_node_entry(struct task_struct *t,
290 struct rcu_node *rnp)
291{
292 struct list_head *np;
293
294 np = t->rcu_node_entry.next;
295 if (np == &rnp->blkd_tasks)
296 np = NULL;
297 return np;
298}
299
b668c9cf
PM
300/*
301 * Handle special cases during rcu_read_unlock(), such as needing to
302 * notify RCU core processing or task having blocked during the RCU
303 * read-side critical section.
304 */
2a3fa843 305void rcu_read_unlock_special(struct task_struct *t)
f41d911f
PM
306{
307 int empty;
d9a3da06 308 int empty_exp;
389abd48 309 int empty_exp_now;
f41d911f 310 unsigned long flags;
12f5f524 311 struct list_head *np;
82e78d80
PM
312#ifdef CONFIG_RCU_BOOST
313 struct rt_mutex *rbmp = NULL;
314#endif /* #ifdef CONFIG_RCU_BOOST */
f41d911f
PM
315 struct rcu_node *rnp;
316 int special;
317
318 /* NMI handlers cannot block and cannot safely manipulate state. */
319 if (in_nmi())
320 return;
321
322 local_irq_save(flags);
323
324 /*
325 * If RCU core is waiting for this CPU to exit critical section,
326 * let it know that we have done so.
327 */
328 special = t->rcu_read_unlock_special;
329 if (special & RCU_READ_UNLOCK_NEED_QS) {
c3422bea 330 rcu_preempt_qs(smp_processor_id());
f41d911f
PM
331 }
332
333 /* Hardware IRQ handlers cannot block. */
ec433f0c 334 if (in_irq() || in_serving_softirq()) {
f41d911f
PM
335 local_irq_restore(flags);
336 return;
337 }
338
339 /* Clean up if blocked during RCU read-side critical section. */
340 if (special & RCU_READ_UNLOCK_BLOCKED) {
341 t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED;
342
dd5d19ba
PM
343 /*
344 * Remove this task from the list it blocked on. The
345 * task can migrate while we acquire the lock, but at
346 * most one time. So at most two passes through loop.
347 */
348 for (;;) {
86848966 349 rnp = t->rcu_blocked_node;
1304afb2 350 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
86848966 351 if (rnp == t->rcu_blocked_node)
dd5d19ba 352 break;
1304afb2 353 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
dd5d19ba 354 }
27f4d280 355 empty = !rcu_preempt_blocked_readers_cgp(rnp);
d9a3da06
PM
356 empty_exp = !rcu_preempted_readers_exp(rnp);
357 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
12f5f524 358 np = rcu_next_node_entry(t, rnp);
f41d911f 359 list_del_init(&t->rcu_node_entry);
82e78d80 360 t->rcu_blocked_node = NULL;
d4c08f2a
PM
361 trace_rcu_unlock_preempted_task("rcu_preempt",
362 rnp->gpnum, t->pid);
12f5f524
PM
363 if (&t->rcu_node_entry == rnp->gp_tasks)
364 rnp->gp_tasks = np;
365 if (&t->rcu_node_entry == rnp->exp_tasks)
366 rnp->exp_tasks = np;
27f4d280
PM
367#ifdef CONFIG_RCU_BOOST
368 if (&t->rcu_node_entry == rnp->boost_tasks)
369 rnp->boost_tasks = np;
82e78d80
PM
370 /* Snapshot/clear ->rcu_boost_mutex with rcu_node lock held. */
371 if (t->rcu_boost_mutex) {
372 rbmp = t->rcu_boost_mutex;
373 t->rcu_boost_mutex = NULL;
7765be2f 374 }
27f4d280 375#endif /* #ifdef CONFIG_RCU_BOOST */
f41d911f
PM
376
377 /*
378 * If this was the last task on the current list, and if
379 * we aren't waiting on any CPUs, report the quiescent state.
389abd48
PM
380 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
381 * so we must take a snapshot of the expedited state.
f41d911f 382 */
389abd48 383 empty_exp_now = !rcu_preempted_readers_exp(rnp);
d4c08f2a
PM
384 if (!empty && !rcu_preempt_blocked_readers_cgp(rnp)) {
385 trace_rcu_quiescent_state_report("preempt_rcu",
386 rnp->gpnum,
387 0, rnp->qsmask,
388 rnp->level,
389 rnp->grplo,
390 rnp->grphi,
391 !!rnp->gp_tasks);
d3f6bad3 392 rcu_report_unblock_qs_rnp(rnp, flags);
c701d5d9 393 } else {
d4c08f2a 394 raw_spin_unlock_irqrestore(&rnp->lock, flags);
c701d5d9 395 }
d9a3da06 396
27f4d280
PM
397#ifdef CONFIG_RCU_BOOST
398 /* Unboost if we were boosted. */
82e78d80
PM
399 if (rbmp)
400 rt_mutex_unlock(rbmp);
27f4d280
PM
401#endif /* #ifdef CONFIG_RCU_BOOST */
402
d9a3da06
PM
403 /*
404 * If this was the last task on the expedited lists,
405 * then we need to report up the rcu_node hierarchy.
406 */
389abd48 407 if (!empty_exp && empty_exp_now)
b40d293e 408 rcu_report_exp_rnp(&rcu_preempt_state, rnp, true);
b668c9cf
PM
409 } else {
410 local_irq_restore(flags);
f41d911f 411 }
f41d911f
PM
412}
413
1ed509a2
PM
414#ifdef CONFIG_RCU_CPU_STALL_VERBOSE
415
416/*
417 * Dump detailed information for all tasks blocking the current RCU
418 * grace period on the specified rcu_node structure.
419 */
420static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
421{
422 unsigned long flags;
1ed509a2
PM
423 struct task_struct *t;
424
12f5f524 425 raw_spin_lock_irqsave(&rnp->lock, flags);
5fd4dc06
PM
426 if (!rcu_preempt_blocked_readers_cgp(rnp)) {
427 raw_spin_unlock_irqrestore(&rnp->lock, flags);
428 return;
429 }
12f5f524
PM
430 t = list_entry(rnp->gp_tasks,
431 struct task_struct, rcu_node_entry);
432 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
433 sched_show_task(t);
434 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1ed509a2
PM
435}
436
437/*
438 * Dump detailed information for all tasks blocking the current RCU
439 * grace period.
440 */
441static void rcu_print_detail_task_stall(struct rcu_state *rsp)
442{
443 struct rcu_node *rnp = rcu_get_root(rsp);
444
445 rcu_print_detail_task_stall_rnp(rnp);
446 rcu_for_each_leaf_node(rsp, rnp)
447 rcu_print_detail_task_stall_rnp(rnp);
448}
449
450#else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
451
452static void rcu_print_detail_task_stall(struct rcu_state *rsp)
453{
454}
455
456#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
457
a858af28
PM
458#ifdef CONFIG_RCU_CPU_STALL_INFO
459
460static void rcu_print_task_stall_begin(struct rcu_node *rnp)
461{
462 printk(KERN_ERR "\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
463 rnp->level, rnp->grplo, rnp->grphi);
464}
465
466static void rcu_print_task_stall_end(void)
467{
468 printk(KERN_CONT "\n");
469}
470
471#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
472
473static void rcu_print_task_stall_begin(struct rcu_node *rnp)
474{
475}
476
477static void rcu_print_task_stall_end(void)
478{
479}
480
481#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */
482
f41d911f
PM
483/*
484 * Scan the current list of tasks blocked within RCU read-side critical
485 * sections, printing out the tid of each.
486 */
9bc8b558 487static int rcu_print_task_stall(struct rcu_node *rnp)
f41d911f 488{
f41d911f 489 struct task_struct *t;
9bc8b558 490 int ndetected = 0;
f41d911f 491
27f4d280 492 if (!rcu_preempt_blocked_readers_cgp(rnp))
9bc8b558 493 return 0;
a858af28 494 rcu_print_task_stall_begin(rnp);
12f5f524
PM
495 t = list_entry(rnp->gp_tasks,
496 struct task_struct, rcu_node_entry);
9bc8b558 497 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
a858af28 498 printk(KERN_CONT " P%d", t->pid);
9bc8b558
PM
499 ndetected++;
500 }
a858af28 501 rcu_print_task_stall_end();
9bc8b558 502 return ndetected;
f41d911f
PM
503}
504
b0e165c0
PM
505/*
506 * Check that the list of blocked tasks for the newly completed grace
507 * period is in fact empty. It is a serious bug to complete a grace
508 * period that still has RCU readers blocked! This function must be
509 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
510 * must be held by the caller.
12f5f524
PM
511 *
512 * Also, if there are blocked tasks on the list, they automatically
513 * block the newly created grace period, so set up ->gp_tasks accordingly.
b0e165c0
PM
514 */
515static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
516{
27f4d280 517 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
12f5f524
PM
518 if (!list_empty(&rnp->blkd_tasks))
519 rnp->gp_tasks = rnp->blkd_tasks.next;
28ecd580 520 WARN_ON_ONCE(rnp->qsmask);
b0e165c0
PM
521}
522
33f76148
PM
523#ifdef CONFIG_HOTPLUG_CPU
524
dd5d19ba
PM
525/*
526 * Handle tasklist migration for case in which all CPUs covered by the
527 * specified rcu_node have gone offline. Move them up to the root
528 * rcu_node. The reason for not just moving them to the immediate
529 * parent is to remove the need for rcu_read_unlock_special() to
530 * make more than two attempts to acquire the target rcu_node's lock.
b668c9cf
PM
531 * Returns true if there were tasks blocking the current RCU grace
532 * period.
dd5d19ba 533 *
237c80c5
PM
534 * Returns 1 if there was previously a task blocking the current grace
535 * period on the specified rcu_node structure.
536 *
dd5d19ba
PM
537 * The caller must hold rnp->lock with irqs disabled.
538 */
237c80c5
PM
539static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
540 struct rcu_node *rnp,
541 struct rcu_data *rdp)
dd5d19ba 542{
dd5d19ba
PM
543 struct list_head *lp;
544 struct list_head *lp_root;
d9a3da06 545 int retval = 0;
dd5d19ba 546 struct rcu_node *rnp_root = rcu_get_root(rsp);
12f5f524 547 struct task_struct *t;
dd5d19ba 548
86848966
PM
549 if (rnp == rnp_root) {
550 WARN_ONCE(1, "Last CPU thought to be offlined?");
237c80c5 551 return 0; /* Shouldn't happen: at least one CPU online. */
86848966 552 }
12f5f524
PM
553
554 /* If we are on an internal node, complain bitterly. */
555 WARN_ON_ONCE(rnp != rdp->mynode);
dd5d19ba
PM
556
557 /*
12f5f524
PM
558 * Move tasks up to root rcu_node. Don't try to get fancy for
559 * this corner-case operation -- just put this node's tasks
560 * at the head of the root node's list, and update the root node's
561 * ->gp_tasks and ->exp_tasks pointers to those of this node's,
562 * if non-NULL. This might result in waiting for more tasks than
563 * absolutely necessary, but this is a good performance/complexity
564 * tradeoff.
dd5d19ba 565 */
2036d94a 566 if (rcu_preempt_blocked_readers_cgp(rnp) && rnp->qsmask == 0)
d9a3da06
PM
567 retval |= RCU_OFL_TASKS_NORM_GP;
568 if (rcu_preempted_readers_exp(rnp))
569 retval |= RCU_OFL_TASKS_EXP_GP;
12f5f524
PM
570 lp = &rnp->blkd_tasks;
571 lp_root = &rnp_root->blkd_tasks;
572 while (!list_empty(lp)) {
573 t = list_entry(lp->next, typeof(*t), rcu_node_entry);
574 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
575 list_del(&t->rcu_node_entry);
576 t->rcu_blocked_node = rnp_root;
577 list_add(&t->rcu_node_entry, lp_root);
578 if (&t->rcu_node_entry == rnp->gp_tasks)
579 rnp_root->gp_tasks = rnp->gp_tasks;
580 if (&t->rcu_node_entry == rnp->exp_tasks)
581 rnp_root->exp_tasks = rnp->exp_tasks;
27f4d280
PM
582#ifdef CONFIG_RCU_BOOST
583 if (&t->rcu_node_entry == rnp->boost_tasks)
584 rnp_root->boost_tasks = rnp->boost_tasks;
585#endif /* #ifdef CONFIG_RCU_BOOST */
12f5f524 586 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
dd5d19ba 587 }
27f4d280 588
1e3fd2b3
PM
589 rnp->gp_tasks = NULL;
590 rnp->exp_tasks = NULL;
27f4d280 591#ifdef CONFIG_RCU_BOOST
1e3fd2b3 592 rnp->boost_tasks = NULL;
5cc900cf
PM
593 /*
594 * In case root is being boosted and leaf was not. Make sure
595 * that we boost the tasks blocking the current grace period
596 * in this case.
597 */
27f4d280
PM
598 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
599 if (rnp_root->boost_tasks != NULL &&
5cc900cf
PM
600 rnp_root->boost_tasks != rnp_root->gp_tasks &&
601 rnp_root->boost_tasks != rnp_root->exp_tasks)
27f4d280
PM
602 rnp_root->boost_tasks = rnp_root->gp_tasks;
603 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
604#endif /* #ifdef CONFIG_RCU_BOOST */
605
237c80c5 606 return retval;
dd5d19ba
PM
607}
608
e5601400
PM
609#endif /* #ifdef CONFIG_HOTPLUG_CPU */
610
f41d911f
PM
611/*
612 * Check for a quiescent state from the current CPU. When a task blocks,
613 * the task is recorded in the corresponding CPU's rcu_node structure,
614 * which is checked elsewhere.
615 *
616 * Caller must disable hard irqs.
617 */
618static void rcu_preempt_check_callbacks(int cpu)
619{
620 struct task_struct *t = current;
621
622 if (t->rcu_read_lock_nesting == 0) {
c3422bea 623 rcu_preempt_qs(cpu);
f41d911f
PM
624 return;
625 }
10f39bb1
PM
626 if (t->rcu_read_lock_nesting > 0 &&
627 per_cpu(rcu_preempt_data, cpu).qs_pending)
c3422bea 628 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
f41d911f
PM
629}
630
a46e0899
PM
631#ifdef CONFIG_RCU_BOOST
632
09223371
SL
633static void rcu_preempt_do_callbacks(void)
634{
635 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
636}
637
a46e0899
PM
638#endif /* #ifdef CONFIG_RCU_BOOST */
639
f41d911f 640/*
6cc68793 641 * Queue a preemptible-RCU callback for invocation after a grace period.
f41d911f
PM
642 */
643void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
644{
486e2593 645 __call_rcu(head, func, &rcu_preempt_state, 0);
f41d911f
PM
646}
647EXPORT_SYMBOL_GPL(call_rcu);
648
486e2593
PM
649/*
650 * Queue an RCU callback for lazy invocation after a grace period.
651 * This will likely be later named something like "call_rcu_lazy()",
652 * but this change will require some way of tagging the lazy RCU
653 * callbacks in the list of pending callbacks. Until then, this
654 * function may only be called from __kfree_rcu().
655 */
656void kfree_call_rcu(struct rcu_head *head,
657 void (*func)(struct rcu_head *rcu))
658{
659 __call_rcu(head, func, &rcu_preempt_state, 1);
660}
661EXPORT_SYMBOL_GPL(kfree_call_rcu);
662
6ebb237b
PM
663/**
664 * synchronize_rcu - wait until a grace period has elapsed.
665 *
666 * Control will return to the caller some time after a full grace
667 * period has elapsed, in other words after all currently executing RCU
77d8485a
PM
668 * read-side critical sections have completed. Note, however, that
669 * upon return from synchronize_rcu(), the caller might well be executing
670 * concurrently with new RCU read-side critical sections that began while
671 * synchronize_rcu() was waiting. RCU read-side critical sections are
672 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
6ebb237b
PM
673 */
674void synchronize_rcu(void)
675{
fe15d706
PM
676 rcu_lockdep_assert(!lock_is_held(&rcu_bh_lock_map) &&
677 !lock_is_held(&rcu_lock_map) &&
678 !lock_is_held(&rcu_sched_lock_map),
679 "Illegal synchronize_rcu() in RCU read-side critical section");
6ebb237b
PM
680 if (!rcu_scheduler_active)
681 return;
3705b88d
AM
682 if (rcu_expedited)
683 synchronize_rcu_expedited();
684 else
685 wait_rcu_gp(call_rcu);
6ebb237b
PM
686}
687EXPORT_SYMBOL_GPL(synchronize_rcu);
688
d9a3da06 689static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
bcfa57ce 690static unsigned long sync_rcu_preempt_exp_count;
d9a3da06
PM
691static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
692
693/*
694 * Return non-zero if there are any tasks in RCU read-side critical
695 * sections blocking the current preemptible-RCU expedited grace period.
696 * If there is no preemptible-RCU expedited grace period currently in
697 * progress, returns zero unconditionally.
698 */
699static int rcu_preempted_readers_exp(struct rcu_node *rnp)
700{
12f5f524 701 return rnp->exp_tasks != NULL;
d9a3da06
PM
702}
703
704/*
705 * return non-zero if there is no RCU expedited grace period in progress
706 * for the specified rcu_node structure, in other words, if all CPUs and
707 * tasks covered by the specified rcu_node structure have done their bit
708 * for the current expedited grace period. Works only for preemptible
709 * RCU -- other RCU implementation use other means.
710 *
711 * Caller must hold sync_rcu_preempt_exp_mutex.
712 */
713static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
714{
715 return !rcu_preempted_readers_exp(rnp) &&
716 ACCESS_ONCE(rnp->expmask) == 0;
717}
718
719/*
720 * Report the exit from RCU read-side critical section for the last task
721 * that queued itself during or before the current expedited preemptible-RCU
722 * grace period. This event is reported either to the rcu_node structure on
723 * which the task was queued or to one of that rcu_node structure's ancestors,
724 * recursively up the tree. (Calm down, calm down, we do the recursion
725 * iteratively!)
726 *
b40d293e
TG
727 * Most callers will set the "wake" flag, but the task initiating the
728 * expedited grace period need not wake itself.
729 *
d9a3da06
PM
730 * Caller must hold sync_rcu_preempt_exp_mutex.
731 */
b40d293e
TG
732static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
733 bool wake)
d9a3da06
PM
734{
735 unsigned long flags;
736 unsigned long mask;
737
1304afb2 738 raw_spin_lock_irqsave(&rnp->lock, flags);
d9a3da06 739 for (;;) {
131906b0
PM
740 if (!sync_rcu_preempt_exp_done(rnp)) {
741 raw_spin_unlock_irqrestore(&rnp->lock, flags);
d9a3da06 742 break;
131906b0 743 }
d9a3da06 744 if (rnp->parent == NULL) {
131906b0 745 raw_spin_unlock_irqrestore(&rnp->lock, flags);
b40d293e
TG
746 if (wake)
747 wake_up(&sync_rcu_preempt_exp_wq);
d9a3da06
PM
748 break;
749 }
750 mask = rnp->grpmask;
1304afb2 751 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
d9a3da06 752 rnp = rnp->parent;
1304afb2 753 raw_spin_lock(&rnp->lock); /* irqs already disabled */
d9a3da06
PM
754 rnp->expmask &= ~mask;
755 }
d9a3da06
PM
756}
757
758/*
759 * Snapshot the tasks blocking the newly started preemptible-RCU expedited
760 * grace period for the specified rcu_node structure. If there are no such
761 * tasks, report it up the rcu_node hierarchy.
762 *
763 * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock.
764 */
765static void
766sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp)
767{
1217ed1b 768 unsigned long flags;
12f5f524 769 int must_wait = 0;
d9a3da06 770
1217ed1b 771 raw_spin_lock_irqsave(&rnp->lock, flags);
c701d5d9 772 if (list_empty(&rnp->blkd_tasks)) {
1217ed1b 773 raw_spin_unlock_irqrestore(&rnp->lock, flags);
c701d5d9 774 } else {
12f5f524 775 rnp->exp_tasks = rnp->blkd_tasks.next;
1217ed1b 776 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
12f5f524
PM
777 must_wait = 1;
778 }
d9a3da06 779 if (!must_wait)
b40d293e 780 rcu_report_exp_rnp(rsp, rnp, false); /* Don't wake self. */
d9a3da06
PM
781}
782
236fefaf
PM
783/**
784 * synchronize_rcu_expedited - Brute-force RCU grace period
785 *
786 * Wait for an RCU-preempt grace period, but expedite it. The basic
787 * idea is to invoke synchronize_sched_expedited() to push all the tasks to
788 * the ->blkd_tasks lists and wait for this list to drain. This consumes
789 * significant time on all CPUs and is unfriendly to real-time workloads,
790 * so is thus not recommended for any sort of common-case code.
791 * In fact, if you are using synchronize_rcu_expedited() in a loop,
792 * please restructure your code to batch your updates, and then Use a
793 * single synchronize_rcu() instead.
794 *
795 * Note that it is illegal to call this function while holding any lock
796 * that is acquired by a CPU-hotplug notifier. And yes, it is also illegal
797 * to call this function from a CPU-hotplug notifier. Failing to observe
798 * these restriction will result in deadlock.
019129d5
PM
799 */
800void synchronize_rcu_expedited(void)
801{
d9a3da06
PM
802 unsigned long flags;
803 struct rcu_node *rnp;
804 struct rcu_state *rsp = &rcu_preempt_state;
bcfa57ce 805 unsigned long snap;
d9a3da06
PM
806 int trycount = 0;
807
808 smp_mb(); /* Caller's modifications seen first by other CPUs. */
809 snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1;
810 smp_mb(); /* Above access cannot bleed into critical section. */
811
1943c89d
PM
812 /*
813 * Block CPU-hotplug operations. This means that any CPU-hotplug
814 * operation that finds an rcu_node structure with tasks in the
815 * process of being boosted will know that all tasks blocking
816 * this expedited grace period will already be in the process of
817 * being boosted. This simplifies the process of moving tasks
818 * from leaf to root rcu_node structures.
819 */
820 get_online_cpus();
821
d9a3da06
PM
822 /*
823 * Acquire lock, falling back to synchronize_rcu() if too many
824 * lock-acquisition failures. Of course, if someone does the
825 * expedited grace period for us, just leave.
826 */
827 while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) {
1943c89d
PM
828 if (ULONG_CMP_LT(snap,
829 ACCESS_ONCE(sync_rcu_preempt_exp_count))) {
830 put_online_cpus();
831 goto mb_ret; /* Others did our work for us. */
832 }
c701d5d9 833 if (trycount++ < 10) {
d9a3da06 834 udelay(trycount * num_online_cpus());
c701d5d9 835 } else {
1943c89d 836 put_online_cpus();
3705b88d 837 wait_rcu_gp(call_rcu);
d9a3da06
PM
838 return;
839 }
d9a3da06 840 }
1943c89d
PM
841 if (ULONG_CMP_LT(snap, ACCESS_ONCE(sync_rcu_preempt_exp_count))) {
842 put_online_cpus();
d9a3da06 843 goto unlock_mb_ret; /* Others did our work for us. */
1943c89d 844 }
d9a3da06 845
12f5f524 846 /* force all RCU readers onto ->blkd_tasks lists. */
d9a3da06
PM
847 synchronize_sched_expedited();
848
d9a3da06
PM
849 /* Initialize ->expmask for all non-leaf rcu_node structures. */
850 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
1943c89d 851 raw_spin_lock_irqsave(&rnp->lock, flags);
d9a3da06 852 rnp->expmask = rnp->qsmaskinit;
1943c89d 853 raw_spin_unlock_irqrestore(&rnp->lock, flags);
d9a3da06
PM
854 }
855
12f5f524 856 /* Snapshot current state of ->blkd_tasks lists. */
d9a3da06
PM
857 rcu_for_each_leaf_node(rsp, rnp)
858 sync_rcu_preempt_exp_init(rsp, rnp);
859 if (NUM_RCU_NODES > 1)
860 sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp));
861
1943c89d 862 put_online_cpus();
d9a3da06 863
12f5f524 864 /* Wait for snapshotted ->blkd_tasks lists to drain. */
d9a3da06
PM
865 rnp = rcu_get_root(rsp);
866 wait_event(sync_rcu_preempt_exp_wq,
867 sync_rcu_preempt_exp_done(rnp));
868
869 /* Clean up and exit. */
870 smp_mb(); /* ensure expedited GP seen before counter increment. */
871 ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
872unlock_mb_ret:
873 mutex_unlock(&sync_rcu_preempt_exp_mutex);
874mb_ret:
875 smp_mb(); /* ensure subsequent action seen after grace period. */
019129d5
PM
876}
877EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
878
e74f4c45
PM
879/**
880 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
881 */
882void rcu_barrier(void)
883{
037b64ed 884 _rcu_barrier(&rcu_preempt_state);
e74f4c45
PM
885}
886EXPORT_SYMBOL_GPL(rcu_barrier);
887
1eba8f84 888/*
6cc68793 889 * Initialize preemptible RCU's state structures.
1eba8f84
PM
890 */
891static void __init __rcu_init_preempt(void)
892{
394f99a9 893 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
1eba8f84
PM
894}
895
f41d911f
PM
896#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
897
27f4d280
PM
898static struct rcu_state *rcu_state = &rcu_sched_state;
899
f41d911f
PM
900/*
901 * Tell them what RCU they are running.
902 */
0e0fc1c2 903static void __init rcu_bootup_announce(void)
f41d911f
PM
904{
905 printk(KERN_INFO "Hierarchical RCU implementation.\n");
26845c28 906 rcu_bootup_announce_oddness();
f41d911f
PM
907}
908
909/*
910 * Return the number of RCU batches processed thus far for debug & stats.
911 */
912long rcu_batches_completed(void)
913{
914 return rcu_batches_completed_sched();
915}
916EXPORT_SYMBOL_GPL(rcu_batches_completed);
917
bf66f18e
PM
918/*
919 * Force a quiescent state for RCU, which, because there is no preemptible
920 * RCU, becomes the same as rcu-sched.
921 */
922void rcu_force_quiescent_state(void)
923{
924 rcu_sched_force_quiescent_state();
925}
926EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
927
cba6d0d6
PM
928/*
929 * Because preemptible RCU does not exist, we never have to check for
930 * CPUs being in quiescent states.
931 */
932static void rcu_preempt_note_context_switch(int cpu)
933{
934}
935
fc2219d4 936/*
6cc68793 937 * Because preemptible RCU does not exist, there are never any preempted
fc2219d4
PM
938 * RCU readers.
939 */
27f4d280 940static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
fc2219d4
PM
941{
942 return 0;
943}
944
b668c9cf
PM
945#ifdef CONFIG_HOTPLUG_CPU
946
947/* Because preemptible RCU does not exist, no quieting of tasks. */
d3f6bad3 948static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
b668c9cf 949{
1304afb2 950 raw_spin_unlock_irqrestore(&rnp->lock, flags);
b668c9cf
PM
951}
952
953#endif /* #ifdef CONFIG_HOTPLUG_CPU */
954
1ed509a2 955/*
6cc68793 956 * Because preemptible RCU does not exist, we never have to check for
1ed509a2
PM
957 * tasks blocked within RCU read-side critical sections.
958 */
959static void rcu_print_detail_task_stall(struct rcu_state *rsp)
960{
961}
962
f41d911f 963/*
6cc68793 964 * Because preemptible RCU does not exist, we never have to check for
f41d911f
PM
965 * tasks blocked within RCU read-side critical sections.
966 */
9bc8b558 967static int rcu_print_task_stall(struct rcu_node *rnp)
f41d911f 968{
9bc8b558 969 return 0;
f41d911f
PM
970}
971
b0e165c0 972/*
6cc68793 973 * Because there is no preemptible RCU, there can be no readers blocked,
49e29126
PM
974 * so there is no need to check for blocked tasks. So check only for
975 * bogus qsmask values.
b0e165c0
PM
976 */
977static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
978{
49e29126 979 WARN_ON_ONCE(rnp->qsmask);
b0e165c0
PM
980}
981
33f76148
PM
982#ifdef CONFIG_HOTPLUG_CPU
983
dd5d19ba 984/*
6cc68793 985 * Because preemptible RCU does not exist, it never needs to migrate
237c80c5
PM
986 * tasks that were blocked within RCU read-side critical sections, and
987 * such non-existent tasks cannot possibly have been blocking the current
988 * grace period.
dd5d19ba 989 */
237c80c5
PM
990static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
991 struct rcu_node *rnp,
992 struct rcu_data *rdp)
dd5d19ba 993{
237c80c5 994 return 0;
dd5d19ba
PM
995}
996
e5601400
PM
997#endif /* #ifdef CONFIG_HOTPLUG_CPU */
998
f41d911f 999/*
6cc68793 1000 * Because preemptible RCU does not exist, it never has any callbacks
f41d911f
PM
1001 * to check.
1002 */
1eba8f84 1003static void rcu_preempt_check_callbacks(int cpu)
f41d911f
PM
1004{
1005}
1006
486e2593
PM
1007/*
1008 * Queue an RCU callback for lazy invocation after a grace period.
1009 * This will likely be later named something like "call_rcu_lazy()",
1010 * but this change will require some way of tagging the lazy RCU
1011 * callbacks in the list of pending callbacks. Until then, this
1012 * function may only be called from __kfree_rcu().
1013 *
1014 * Because there is no preemptible RCU, we use RCU-sched instead.
1015 */
1016void kfree_call_rcu(struct rcu_head *head,
1017 void (*func)(struct rcu_head *rcu))
1018{
1019 __call_rcu(head, func, &rcu_sched_state, 1);
1020}
1021EXPORT_SYMBOL_GPL(kfree_call_rcu);
1022
019129d5
PM
1023/*
1024 * Wait for an rcu-preempt grace period, but make it happen quickly.
6cc68793 1025 * But because preemptible RCU does not exist, map to rcu-sched.
019129d5
PM
1026 */
1027void synchronize_rcu_expedited(void)
1028{
1029 synchronize_sched_expedited();
1030}
1031EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1032
d9a3da06
PM
1033#ifdef CONFIG_HOTPLUG_CPU
1034
1035/*
6cc68793 1036 * Because preemptible RCU does not exist, there is never any need to
d9a3da06
PM
1037 * report on tasks preempted in RCU read-side critical sections during
1038 * expedited RCU grace periods.
1039 */
b40d293e
TG
1040static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
1041 bool wake)
d9a3da06 1042{
d9a3da06
PM
1043}
1044
1045#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1046
e74f4c45 1047/*
6cc68793 1048 * Because preemptible RCU does not exist, rcu_barrier() is just
e74f4c45
PM
1049 * another name for rcu_barrier_sched().
1050 */
1051void rcu_barrier(void)
1052{
1053 rcu_barrier_sched();
1054}
1055EXPORT_SYMBOL_GPL(rcu_barrier);
1056
1eba8f84 1057/*
6cc68793 1058 * Because preemptible RCU does not exist, it need not be initialized.
1eba8f84
PM
1059 */
1060static void __init __rcu_init_preempt(void)
1061{
1062}
1063
f41d911f 1064#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
8bd93a2c 1065
27f4d280
PM
1066#ifdef CONFIG_RCU_BOOST
1067
1068#include "rtmutex_common.h"
1069
0ea1f2eb
PM
1070#ifdef CONFIG_RCU_TRACE
1071
1072static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1073{
1074 if (list_empty(&rnp->blkd_tasks))
1075 rnp->n_balk_blkd_tasks++;
1076 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1077 rnp->n_balk_exp_gp_tasks++;
1078 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1079 rnp->n_balk_boost_tasks++;
1080 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1081 rnp->n_balk_notblocked++;
1082 else if (rnp->gp_tasks != NULL &&
a9f4793d 1083 ULONG_CMP_LT(jiffies, rnp->boost_time))
0ea1f2eb
PM
1084 rnp->n_balk_notyet++;
1085 else
1086 rnp->n_balk_nos++;
1087}
1088
1089#else /* #ifdef CONFIG_RCU_TRACE */
1090
1091static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1092{
1093}
1094
1095#endif /* #else #ifdef CONFIG_RCU_TRACE */
1096
5d01bbd1
TG
1097static void rcu_wake_cond(struct task_struct *t, int status)
1098{
1099 /*
1100 * If the thread is yielding, only wake it when this
1101 * is invoked from idle
1102 */
1103 if (status != RCU_KTHREAD_YIELDING || is_idle_task(current))
1104 wake_up_process(t);
1105}
1106
27f4d280
PM
1107/*
1108 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1109 * or ->boost_tasks, advancing the pointer to the next task in the
1110 * ->blkd_tasks list.
1111 *
1112 * Note that irqs must be enabled: boosting the task can block.
1113 * Returns 1 if there are more tasks needing to be boosted.
1114 */
1115static int rcu_boost(struct rcu_node *rnp)
1116{
1117 unsigned long flags;
1118 struct rt_mutex mtx;
1119 struct task_struct *t;
1120 struct list_head *tb;
1121
1122 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1123 return 0; /* Nothing left to boost. */
1124
1125 raw_spin_lock_irqsave(&rnp->lock, flags);
1126
1127 /*
1128 * Recheck under the lock: all tasks in need of boosting
1129 * might exit their RCU read-side critical sections on their own.
1130 */
1131 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1132 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1133 return 0;
1134 }
1135
1136 /*
1137 * Preferentially boost tasks blocking expedited grace periods.
1138 * This cannot starve the normal grace periods because a second
1139 * expedited grace period must boost all blocked tasks, including
1140 * those blocking the pre-existing normal grace period.
1141 */
0ea1f2eb 1142 if (rnp->exp_tasks != NULL) {
27f4d280 1143 tb = rnp->exp_tasks;
0ea1f2eb
PM
1144 rnp->n_exp_boosts++;
1145 } else {
27f4d280 1146 tb = rnp->boost_tasks;
0ea1f2eb
PM
1147 rnp->n_normal_boosts++;
1148 }
1149 rnp->n_tasks_boosted++;
27f4d280
PM
1150
1151 /*
1152 * We boost task t by manufacturing an rt_mutex that appears to
1153 * be held by task t. We leave a pointer to that rt_mutex where
1154 * task t can find it, and task t will release the mutex when it
1155 * exits its outermost RCU read-side critical section. Then
1156 * simply acquiring this artificial rt_mutex will boost task
1157 * t's priority. (Thanks to tglx for suggesting this approach!)
1158 *
1159 * Note that task t must acquire rnp->lock to remove itself from
1160 * the ->blkd_tasks list, which it will do from exit() if from
1161 * nowhere else. We therefore are guaranteed that task t will
1162 * stay around at least until we drop rnp->lock. Note that
1163 * rnp->lock also resolves races between our priority boosting
1164 * and task t's exiting its outermost RCU read-side critical
1165 * section.
1166 */
1167 t = container_of(tb, struct task_struct, rcu_node_entry);
1168 rt_mutex_init_proxy_locked(&mtx, t);
1169 t->rcu_boost_mutex = &mtx;
27f4d280
PM
1170 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1171 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1172 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1173
4f89b336
PM
1174 return ACCESS_ONCE(rnp->exp_tasks) != NULL ||
1175 ACCESS_ONCE(rnp->boost_tasks) != NULL;
27f4d280
PM
1176}
1177
27f4d280
PM
1178/*
1179 * Priority-boosting kthread. One per leaf rcu_node and one for the
1180 * root rcu_node.
1181 */
1182static int rcu_boost_kthread(void *arg)
1183{
1184 struct rcu_node *rnp = (struct rcu_node *)arg;
1185 int spincnt = 0;
1186 int more2boost;
1187
385680a9 1188 trace_rcu_utilization("Start boost kthread@init");
27f4d280 1189 for (;;) {
d71df90e 1190 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
385680a9 1191 trace_rcu_utilization("End boost kthread@rcu_wait");
08bca60a 1192 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
385680a9 1193 trace_rcu_utilization("Start boost kthread@rcu_wait");
d71df90e 1194 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
27f4d280
PM
1195 more2boost = rcu_boost(rnp);
1196 if (more2boost)
1197 spincnt++;
1198 else
1199 spincnt = 0;
1200 if (spincnt > 10) {
5d01bbd1 1201 rnp->boost_kthread_status = RCU_KTHREAD_YIELDING;
385680a9 1202 trace_rcu_utilization("End boost kthread@rcu_yield");
5d01bbd1 1203 schedule_timeout_interruptible(2);
385680a9 1204 trace_rcu_utilization("Start boost kthread@rcu_yield");
27f4d280
PM
1205 spincnt = 0;
1206 }
1207 }
1217ed1b 1208 /* NOTREACHED */
385680a9 1209 trace_rcu_utilization("End boost kthread@notreached");
27f4d280
PM
1210 return 0;
1211}
1212
1213/*
1214 * Check to see if it is time to start boosting RCU readers that are
1215 * blocking the current grace period, and, if so, tell the per-rcu_node
1216 * kthread to start boosting them. If there is an expedited grace
1217 * period in progress, it is always time to boost.
1218 *
b065a853
PM
1219 * The caller must hold rnp->lock, which this function releases.
1220 * The ->boost_kthread_task is immortal, so we don't need to worry
1221 * about it going away.
27f4d280 1222 */
1217ed1b 1223static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
27f4d280
PM
1224{
1225 struct task_struct *t;
1226
0ea1f2eb
PM
1227 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1228 rnp->n_balk_exp_gp_tasks++;
1217ed1b 1229 raw_spin_unlock_irqrestore(&rnp->lock, flags);
27f4d280 1230 return;
0ea1f2eb 1231 }
27f4d280
PM
1232 if (rnp->exp_tasks != NULL ||
1233 (rnp->gp_tasks != NULL &&
1234 rnp->boost_tasks == NULL &&
1235 rnp->qsmask == 0 &&
1236 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1237 if (rnp->exp_tasks == NULL)
1238 rnp->boost_tasks = rnp->gp_tasks;
1217ed1b 1239 raw_spin_unlock_irqrestore(&rnp->lock, flags);
27f4d280 1240 t = rnp->boost_kthread_task;
5d01bbd1
TG
1241 if (t)
1242 rcu_wake_cond(t, rnp->boost_kthread_status);
1217ed1b 1243 } else {
0ea1f2eb 1244 rcu_initiate_boost_trace(rnp);
1217ed1b
PM
1245 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1246 }
27f4d280
PM
1247}
1248
a46e0899
PM
1249/*
1250 * Wake up the per-CPU kthread to invoke RCU callbacks.
1251 */
1252static void invoke_rcu_callbacks_kthread(void)
1253{
1254 unsigned long flags;
1255
1256 local_irq_save(flags);
1257 __this_cpu_write(rcu_cpu_has_work, 1);
1eb52121 1258 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
5d01bbd1
TG
1259 current != __this_cpu_read(rcu_cpu_kthread_task)) {
1260 rcu_wake_cond(__this_cpu_read(rcu_cpu_kthread_task),
1261 __this_cpu_read(rcu_cpu_kthread_status));
1262 }
a46e0899
PM
1263 local_irq_restore(flags);
1264}
1265
dff1672d
PM
1266/*
1267 * Is the current CPU running the RCU-callbacks kthread?
1268 * Caller must have preemption disabled.
1269 */
1270static bool rcu_is_callbacks_kthread(void)
1271{
1272 return __get_cpu_var(rcu_cpu_kthread_task) == current;
1273}
1274
27f4d280
PM
1275#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1276
1277/*
1278 * Do priority-boost accounting for the start of a new grace period.
1279 */
1280static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1281{
1282 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1283}
1284
27f4d280
PM
1285/*
1286 * Create an RCU-boost kthread for the specified node if one does not
1287 * already exist. We only create this kthread for preemptible RCU.
1288 * Returns zero if all is well, a negated errno otherwise.
1289 */
1290static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
5d01bbd1 1291 struct rcu_node *rnp)
27f4d280 1292{
5d01bbd1 1293 int rnp_index = rnp - &rsp->node[0];
27f4d280
PM
1294 unsigned long flags;
1295 struct sched_param sp;
1296 struct task_struct *t;
1297
1298 if (&rcu_preempt_state != rsp)
1299 return 0;
5d01bbd1
TG
1300
1301 if (!rcu_scheduler_fully_active || rnp->qsmaskinit == 0)
1302 return 0;
1303
a46e0899 1304 rsp->boost = 1;
27f4d280
PM
1305 if (rnp->boost_kthread_task != NULL)
1306 return 0;
1307 t = kthread_create(rcu_boost_kthread, (void *)rnp,
5b61b0ba 1308 "rcub/%d", rnp_index);
27f4d280
PM
1309 if (IS_ERR(t))
1310 return PTR_ERR(t);
1311 raw_spin_lock_irqsave(&rnp->lock, flags);
1312 rnp->boost_kthread_task = t;
1313 raw_spin_unlock_irqrestore(&rnp->lock, flags);
5b61b0ba 1314 sp.sched_priority = RCU_BOOST_PRIO;
27f4d280 1315 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
9a432736 1316 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
27f4d280
PM
1317 return 0;
1318}
1319
f8b7fc6b
PM
1320static void rcu_kthread_do_work(void)
1321{
1322 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1323 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1324 rcu_preempt_do_callbacks();
1325}
1326
62ab7072 1327static void rcu_cpu_kthread_setup(unsigned int cpu)
f8b7fc6b 1328{
f8b7fc6b 1329 struct sched_param sp;
f8b7fc6b 1330
62ab7072
PM
1331 sp.sched_priority = RCU_KTHREAD_PRIO;
1332 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
f8b7fc6b
PM
1333}
1334
62ab7072 1335static void rcu_cpu_kthread_park(unsigned int cpu)
f8b7fc6b 1336{
62ab7072 1337 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
f8b7fc6b
PM
1338}
1339
62ab7072 1340static int rcu_cpu_kthread_should_run(unsigned int cpu)
f8b7fc6b 1341{
62ab7072 1342 return __get_cpu_var(rcu_cpu_has_work);
f8b7fc6b
PM
1343}
1344
1345/*
1346 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
e0f23060
PM
1347 * RCU softirq used in flavors and configurations of RCU that do not
1348 * support RCU priority boosting.
f8b7fc6b 1349 */
62ab7072 1350static void rcu_cpu_kthread(unsigned int cpu)
f8b7fc6b 1351{
62ab7072
PM
1352 unsigned int *statusp = &__get_cpu_var(rcu_cpu_kthread_status);
1353 char work, *workp = &__get_cpu_var(rcu_cpu_has_work);
1354 int spincnt;
f8b7fc6b 1355
62ab7072 1356 for (spincnt = 0; spincnt < 10; spincnt++) {
385680a9 1357 trace_rcu_utilization("Start CPU kthread@rcu_wait");
f8b7fc6b 1358 local_bh_disable();
f8b7fc6b 1359 *statusp = RCU_KTHREAD_RUNNING;
62ab7072
PM
1360 this_cpu_inc(rcu_cpu_kthread_loops);
1361 local_irq_disable();
f8b7fc6b
PM
1362 work = *workp;
1363 *workp = 0;
62ab7072 1364 local_irq_enable();
f8b7fc6b
PM
1365 if (work)
1366 rcu_kthread_do_work();
1367 local_bh_enable();
62ab7072
PM
1368 if (*workp == 0) {
1369 trace_rcu_utilization("End CPU kthread@rcu_wait");
1370 *statusp = RCU_KTHREAD_WAITING;
1371 return;
f8b7fc6b
PM
1372 }
1373 }
62ab7072
PM
1374 *statusp = RCU_KTHREAD_YIELDING;
1375 trace_rcu_utilization("Start CPU kthread@rcu_yield");
1376 schedule_timeout_interruptible(2);
1377 trace_rcu_utilization("End CPU kthread@rcu_yield");
1378 *statusp = RCU_KTHREAD_WAITING;
f8b7fc6b
PM
1379}
1380
1381/*
1382 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1383 * served by the rcu_node in question. The CPU hotplug lock is still
1384 * held, so the value of rnp->qsmaskinit will be stable.
1385 *
1386 * We don't include outgoingcpu in the affinity set, use -1 if there is
1387 * no outgoing CPU. If there are no CPUs left in the affinity set,
1388 * this function allows the kthread to execute on any CPU.
1389 */
5d01bbd1 1390static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
f8b7fc6b 1391{
5d01bbd1
TG
1392 struct task_struct *t = rnp->boost_kthread_task;
1393 unsigned long mask = rnp->qsmaskinit;
f8b7fc6b
PM
1394 cpumask_var_t cm;
1395 int cpu;
f8b7fc6b 1396
5d01bbd1 1397 if (!t)
f8b7fc6b 1398 return;
5d01bbd1 1399 if (!zalloc_cpumask_var(&cm, GFP_KERNEL))
f8b7fc6b 1400 return;
f8b7fc6b
PM
1401 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1402 if ((mask & 0x1) && cpu != outgoingcpu)
1403 cpumask_set_cpu(cpu, cm);
1404 if (cpumask_weight(cm) == 0) {
1405 cpumask_setall(cm);
1406 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1407 cpumask_clear_cpu(cpu, cm);
1408 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1409 }
5d01bbd1 1410 set_cpus_allowed_ptr(t, cm);
f8b7fc6b
PM
1411 free_cpumask_var(cm);
1412}
1413
62ab7072
PM
1414static struct smp_hotplug_thread rcu_cpu_thread_spec = {
1415 .store = &rcu_cpu_kthread_task,
1416 .thread_should_run = rcu_cpu_kthread_should_run,
1417 .thread_fn = rcu_cpu_kthread,
1418 .thread_comm = "rcuc/%u",
1419 .setup = rcu_cpu_kthread_setup,
1420 .park = rcu_cpu_kthread_park,
1421};
f8b7fc6b
PM
1422
1423/*
1424 * Spawn all kthreads -- called as soon as the scheduler is running.
1425 */
1426static int __init rcu_spawn_kthreads(void)
1427{
f8b7fc6b 1428 struct rcu_node *rnp;
5d01bbd1 1429 int cpu;
f8b7fc6b 1430
b0d30417 1431 rcu_scheduler_fully_active = 1;
62ab7072 1432 for_each_possible_cpu(cpu)
f8b7fc6b 1433 per_cpu(rcu_cpu_has_work, cpu) = 0;
62ab7072 1434 BUG_ON(smpboot_register_percpu_thread(&rcu_cpu_thread_spec));
f8b7fc6b 1435 rnp = rcu_get_root(rcu_state);
5d01bbd1 1436 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
f8b7fc6b
PM
1437 if (NUM_RCU_NODES > 1) {
1438 rcu_for_each_leaf_node(rcu_state, rnp)
5d01bbd1 1439 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
f8b7fc6b
PM
1440 }
1441 return 0;
1442}
1443early_initcall(rcu_spawn_kthreads);
1444
1445static void __cpuinit rcu_prepare_kthreads(int cpu)
1446{
1447 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1448 struct rcu_node *rnp = rdp->mynode;
1449
1450 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
62ab7072 1451 if (rcu_scheduler_fully_active)
5d01bbd1 1452 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
f8b7fc6b
PM
1453}
1454
27f4d280
PM
1455#else /* #ifdef CONFIG_RCU_BOOST */
1456
1217ed1b 1457static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
27f4d280 1458{
1217ed1b 1459 raw_spin_unlock_irqrestore(&rnp->lock, flags);
27f4d280
PM
1460}
1461
a46e0899 1462static void invoke_rcu_callbacks_kthread(void)
27f4d280 1463{
a46e0899 1464 WARN_ON_ONCE(1);
27f4d280
PM
1465}
1466
dff1672d
PM
1467static bool rcu_is_callbacks_kthread(void)
1468{
1469 return false;
1470}
1471
27f4d280
PM
1472static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1473{
1474}
1475
5d01bbd1 1476static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
f8b7fc6b
PM
1477{
1478}
1479
b0d30417
PM
1480static int __init rcu_scheduler_really_started(void)
1481{
1482 rcu_scheduler_fully_active = 1;
1483 return 0;
1484}
1485early_initcall(rcu_scheduler_really_started);
1486
f8b7fc6b
PM
1487static void __cpuinit rcu_prepare_kthreads(int cpu)
1488{
1489}
1490
27f4d280
PM
1491#endif /* #else #ifdef CONFIG_RCU_BOOST */
1492
8bd93a2c
PM
1493#if !defined(CONFIG_RCU_FAST_NO_HZ)
1494
1495/*
1496 * Check to see if any future RCU-related work will need to be done
1497 * by the current CPU, even if none need be done immediately, returning
1498 * 1 if so. This function is part of the RCU implementation; it is -not-
1499 * an exported member of the RCU API.
1500 *
7cb92499
PM
1501 * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
1502 * any flavor of RCU.
8bd93a2c 1503 */
aa9b1630 1504int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
8bd93a2c 1505{
aa9b1630 1506 *delta_jiffies = ULONG_MAX;
aea1b35e
PM
1507 return rcu_cpu_has_callbacks(cpu);
1508}
1509
7cb92499
PM
1510/*
1511 * Because we do not have RCU_FAST_NO_HZ, don't bother initializing for it.
1512 */
1513static void rcu_prepare_for_idle_init(int cpu)
1514{
1515}
1516
1517/*
1518 * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
1519 * after it.
1520 */
1521static void rcu_cleanup_after_idle(int cpu)
1522{
1523}
1524
aea1b35e 1525/*
a858af28 1526 * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n,
aea1b35e
PM
1527 * is nothing.
1528 */
1529static void rcu_prepare_for_idle(int cpu)
1530{
1531}
1532
c57afe80
PM
1533/*
1534 * Don't bother keeping a running count of the number of RCU callbacks
1535 * posted because CONFIG_RCU_FAST_NO_HZ=n.
1536 */
1537static void rcu_idle_count_callbacks_posted(void)
1538{
1539}
1540
8bd93a2c
PM
1541#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1542
f23f7fa1
PM
1543/*
1544 * This code is invoked when a CPU goes idle, at which point we want
1545 * to have the CPU do everything required for RCU so that it can enter
1546 * the energy-efficient dyntick-idle mode. This is handled by a
1547 * state machine implemented by rcu_prepare_for_idle() below.
1548 *
1549 * The following three proprocessor symbols control this state machine:
1550 *
1551 * RCU_IDLE_FLUSHES gives the maximum number of times that we will attempt
1552 * to satisfy RCU. Beyond this point, it is better to incur a periodic
1553 * scheduling-clock interrupt than to loop through the state machine
1554 * at full power.
1555 * RCU_IDLE_OPT_FLUSHES gives the number of RCU_IDLE_FLUSHES that are
1556 * optional if RCU does not need anything immediately from this
1557 * CPU, even if this CPU still has RCU callbacks queued. The first
1558 * times through the state machine are mandatory: we need to give
1559 * the state machine a chance to communicate a quiescent state
1560 * to the RCU core.
1561 * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted
1562 * to sleep in dyntick-idle mode with RCU callbacks pending. This
1563 * is sized to be roughly one RCU grace period. Those energy-efficiency
1564 * benchmarkers who might otherwise be tempted to set this to a large
1565 * number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your
1566 * system. And if you are -that- concerned about energy efficiency,
1567 * just power the system down and be done with it!
778d250a
PM
1568 * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is
1569 * permitted to sleep in dyntick-idle mode with only lazy RCU
1570 * callbacks pending. Setting this too high can OOM your system.
f23f7fa1
PM
1571 *
1572 * The values below work well in practice. If future workloads require
1573 * adjustment, they can be converted into kernel config parameters, though
1574 * making the state machine smarter might be a better option.
1575 */
1576#define RCU_IDLE_FLUSHES 5 /* Number of dyntick-idle tries. */
1577#define RCU_IDLE_OPT_FLUSHES 3 /* Optional dyntick-idle tries. */
e84c48ae 1578#define RCU_IDLE_GP_DELAY 4 /* Roughly one grace period. */
778d250a 1579#define RCU_IDLE_LAZY_GP_DELAY (6 * HZ) /* Roughly six seconds. */
f23f7fa1 1580
9d2ad243
PM
1581extern int tick_nohz_enabled;
1582
486e2593
PM
1583/*
1584 * Does the specified flavor of RCU have non-lazy callbacks pending on
1585 * the specified CPU? Both RCU flavor and CPU are specified by the
1586 * rcu_data structure.
1587 */
1588static bool __rcu_cpu_has_nonlazy_callbacks(struct rcu_data *rdp)
1589{
1590 return rdp->qlen != rdp->qlen_lazy;
1591}
1592
1593#ifdef CONFIG_TREE_PREEMPT_RCU
1594
1595/*
1596 * Are there non-lazy RCU-preempt callbacks? (There cannot be if there
1597 * is no RCU-preempt in the kernel.)
1598 */
1599static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1600{
1601 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
1602
1603 return __rcu_cpu_has_nonlazy_callbacks(rdp);
1604}
1605
1606#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
1607
1608static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1609{
1610 return 0;
1611}
1612
1613#endif /* else #ifdef CONFIG_TREE_PREEMPT_RCU */
1614
1615/*
1616 * Does any flavor of RCU have non-lazy callbacks on the specified CPU?
1617 */
1618static bool rcu_cpu_has_nonlazy_callbacks(int cpu)
1619{
1620 return __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_sched_data, cpu)) ||
1621 __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_bh_data, cpu)) ||
1622 rcu_preempt_cpu_has_nonlazy_callbacks(cpu);
1623}
1624
aa9b1630
PM
1625/*
1626 * Allow the CPU to enter dyntick-idle mode if either: (1) There are no
1627 * callbacks on this CPU, (2) this CPU has not yet attempted to enter
1628 * dyntick-idle mode, or (3) this CPU is in the process of attempting to
1629 * enter dyntick-idle mode. Otherwise, if we have recently tried and failed
1630 * to enter dyntick-idle mode, we refuse to try to enter it. After all,
1631 * it is better to incur scheduling-clock interrupts than to spin
1632 * continuously for the same time duration!
1633 *
1634 * The delta_jiffies argument is used to store the time when RCU is
1635 * going to need the CPU again if it still has callbacks. The reason
1636 * for this is that rcu_prepare_for_idle() might need to post a timer,
1637 * but if so, it will do so after tick_nohz_stop_sched_tick() has set
1638 * the wakeup time for this CPU. This means that RCU's timer can be
1639 * delayed until the wakeup time, which defeats the purpose of posting
1640 * a timer.
1641 */
1642int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
1643{
1644 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1645
1646 /* Flag a new idle sojourn to the idle-entry state machine. */
1647 rdtp->idle_first_pass = 1;
1648 /* If no callbacks, RCU doesn't need the CPU. */
1649 if (!rcu_cpu_has_callbacks(cpu)) {
1650 *delta_jiffies = ULONG_MAX;
1651 return 0;
1652 }
1653 if (rdtp->dyntick_holdoff == jiffies) {
1654 /* RCU recently tried and failed, so don't try again. */
1655 *delta_jiffies = 1;
1656 return 1;
1657 }
1658 /* Set up for the possibility that RCU will post a timer. */
e84c48ae
PM
1659 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1660 *delta_jiffies = round_up(RCU_IDLE_GP_DELAY + jiffies,
1661 RCU_IDLE_GP_DELAY) - jiffies;
1662 } else {
1663 *delta_jiffies = jiffies + RCU_IDLE_LAZY_GP_DELAY;
1664 *delta_jiffies = round_jiffies(*delta_jiffies) - jiffies;
1665 }
aa9b1630
PM
1666 return 0;
1667}
1668
21e52e15
PM
1669/*
1670 * Handler for smp_call_function_single(). The only point of this
1671 * handler is to wake the CPU up, so the handler does only tracing.
1672 */
1673void rcu_idle_demigrate(void *unused)
1674{
1675 trace_rcu_prep_idle("Demigrate");
1676}
1677
7cb92499
PM
1678/*
1679 * Timer handler used to force CPU to start pushing its remaining RCU
1680 * callbacks in the case where it entered dyntick-idle mode with callbacks
1681 * pending. The hander doesn't really need to do anything because the
1682 * real work is done upon re-entry to idle, or by the next scheduling-clock
1683 * interrupt should idle not be re-entered.
21e52e15
PM
1684 *
1685 * One special case: the timer gets migrated without awakening the CPU
1686 * on which the timer was scheduled on. In this case, we must wake up
1687 * that CPU. We do so with smp_call_function_single().
7cb92499 1688 */
21e52e15 1689static void rcu_idle_gp_timer_func(unsigned long cpu_in)
7cb92499 1690{
21e52e15
PM
1691 int cpu = (int)cpu_in;
1692
7cb92499 1693 trace_rcu_prep_idle("Timer");
21e52e15
PM
1694 if (cpu != smp_processor_id())
1695 smp_call_function_single(cpu, rcu_idle_demigrate, NULL, 0);
1696 else
1697 WARN_ON_ONCE(1); /* Getting here can hang the system... */
7cb92499
PM
1698}
1699
1700/*
1701 * Initialize the timer used to pull CPUs out of dyntick-idle mode.
1702 */
1703static void rcu_prepare_for_idle_init(int cpu)
1704{
5955f7ee
PM
1705 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1706
1707 rdtp->dyntick_holdoff = jiffies - 1;
1708 setup_timer(&rdtp->idle_gp_timer, rcu_idle_gp_timer_func, cpu);
1709 rdtp->idle_gp_timer_expires = jiffies - 1;
1710 rdtp->idle_first_pass = 1;
7cb92499
PM
1711}
1712
1713/*
1714 * Clean up for exit from idle. Because we are exiting from idle, there
5955f7ee 1715 * is no longer any point to ->idle_gp_timer, so cancel it. This will
7cb92499
PM
1716 * do nothing if this timer is not active, so just cancel it unconditionally.
1717 */
1718static void rcu_cleanup_after_idle(int cpu)
1719{
5955f7ee
PM
1720 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1721
1722 del_timer(&rdtp->idle_gp_timer);
2fdbb31b 1723 trace_rcu_prep_idle("Cleanup after idle");
9d2ad243 1724 rdtp->tick_nohz_enabled_snap = ACCESS_ONCE(tick_nohz_enabled);
7cb92499
PM
1725}
1726
aea1b35e
PM
1727/*
1728 * Check to see if any RCU-related work can be done by the current CPU,
1729 * and if so, schedule a softirq to get it done. This function is part
1730 * of the RCU implementation; it is -not- an exported member of the RCU API.
8bd93a2c 1731 *
aea1b35e
PM
1732 * The idea is for the current CPU to clear out all work required by the
1733 * RCU core for the current grace period, so that this CPU can be permitted
1734 * to enter dyntick-idle mode. In some cases, it will need to be awakened
1735 * at the end of the grace period by whatever CPU ends the grace period.
1736 * This allows CPUs to go dyntick-idle more quickly, and to reduce the
1737 * number of wakeups by a modest integer factor.
a47cd880
PM
1738 *
1739 * Because it is not legal to invoke rcu_process_callbacks() with irqs
1740 * disabled, we do one pass of force_quiescent_state(), then do a
a46e0899 1741 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
5955f7ee 1742 * later. The ->dyntick_drain field controls the sequencing.
aea1b35e
PM
1743 *
1744 * The caller must have disabled interrupts.
8bd93a2c 1745 */
aea1b35e 1746static void rcu_prepare_for_idle(int cpu)
8bd93a2c 1747{
f511fc62 1748 struct timer_list *tp;
5955f7ee 1749 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
9d2ad243
PM
1750 int tne;
1751
1752 /* Handle nohz enablement switches conservatively. */
1753 tne = ACCESS_ONCE(tick_nohz_enabled);
1754 if (tne != rdtp->tick_nohz_enabled_snap) {
1755 if (rcu_cpu_has_callbacks(cpu))
1756 invoke_rcu_core(); /* force nohz to see update. */
1757 rdtp->tick_nohz_enabled_snap = tne;
1758 return;
1759 }
1760 if (!tne)
1761 return;
f511fc62 1762
9a0c6fef
PM
1763 /* Adaptive-tick mode, where usermode execution is idle to RCU. */
1764 if (!is_idle_task(current)) {
1765 rdtp->dyntick_holdoff = jiffies - 1;
1766 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1767 trace_rcu_prep_idle("User dyntick with callbacks");
1768 rdtp->idle_gp_timer_expires =
1769 round_up(jiffies + RCU_IDLE_GP_DELAY,
1770 RCU_IDLE_GP_DELAY);
1771 } else if (rcu_cpu_has_callbacks(cpu)) {
1772 rdtp->idle_gp_timer_expires =
1773 round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY);
1774 trace_rcu_prep_idle("User dyntick with lazy callbacks");
1775 } else {
1776 return;
1777 }
1778 tp = &rdtp->idle_gp_timer;
1779 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
1780 return;
1781 }
1782
c57afe80
PM
1783 /*
1784 * If this is an idle re-entry, for example, due to use of
1785 * RCU_NONIDLE() or the new idle-loop tracing API within the idle
1786 * loop, then don't take any state-machine actions, unless the
1787 * momentary exit from idle queued additional non-lazy callbacks.
5955f7ee 1788 * Instead, repost the ->idle_gp_timer if this CPU has callbacks
c57afe80
PM
1789 * pending.
1790 */
5955f7ee
PM
1791 if (!rdtp->idle_first_pass &&
1792 (rdtp->nonlazy_posted == rdtp->nonlazy_posted_snap)) {
f511fc62 1793 if (rcu_cpu_has_callbacks(cpu)) {
5955f7ee
PM
1794 tp = &rdtp->idle_gp_timer;
1795 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
f511fc62 1796 }
c57afe80
PM
1797 return;
1798 }
5955f7ee
PM
1799 rdtp->idle_first_pass = 0;
1800 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted - 1;
c57afe80 1801
3084f2f8 1802 /*
f535a607
PM
1803 * If there are no callbacks on this CPU, enter dyntick-idle mode.
1804 * Also reset state to avoid prejudicing later attempts.
3084f2f8 1805 */
aea1b35e 1806 if (!rcu_cpu_has_callbacks(cpu)) {
5955f7ee
PM
1807 rdtp->dyntick_holdoff = jiffies - 1;
1808 rdtp->dyntick_drain = 0;
433cdddc 1809 trace_rcu_prep_idle("No callbacks");
aea1b35e 1810 return;
77e38ed3 1811 }
3084f2f8
PM
1812
1813 /*
1814 * If in holdoff mode, just return. We will presumably have
1815 * refrained from disabling the scheduling-clock tick.
1816 */
5955f7ee 1817 if (rdtp->dyntick_holdoff == jiffies) {
433cdddc 1818 trace_rcu_prep_idle("In holdoff");
aea1b35e 1819 return;
433cdddc 1820 }
a47cd880 1821
5955f7ee
PM
1822 /* Check and update the ->dyntick_drain sequencing. */
1823 if (rdtp->dyntick_drain <= 0) {
a47cd880 1824 /* First time through, initialize the counter. */
5955f7ee
PM
1825 rdtp->dyntick_drain = RCU_IDLE_FLUSHES;
1826 } else if (rdtp->dyntick_drain <= RCU_IDLE_OPT_FLUSHES &&
c3ce910b
PM
1827 !rcu_pending(cpu) &&
1828 !local_softirq_pending()) {
7cb92499 1829 /* Can we go dyntick-idle despite still having callbacks? */
5955f7ee
PM
1830 rdtp->dyntick_drain = 0;
1831 rdtp->dyntick_holdoff = jiffies;
fd4b3526
PM
1832 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1833 trace_rcu_prep_idle("Dyntick with callbacks");
5955f7ee 1834 rdtp->idle_gp_timer_expires =
e84c48ae
PM
1835 round_up(jiffies + RCU_IDLE_GP_DELAY,
1836 RCU_IDLE_GP_DELAY);
fd4b3526 1837 } else {
5955f7ee 1838 rdtp->idle_gp_timer_expires =
e84c48ae 1839 round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY);
fd4b3526
PM
1840 trace_rcu_prep_idle("Dyntick with lazy callbacks");
1841 }
5955f7ee
PM
1842 tp = &rdtp->idle_gp_timer;
1843 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
1844 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
f23f7fa1 1845 return; /* Nothing more to do immediately. */
5955f7ee 1846 } else if (--(rdtp->dyntick_drain) <= 0) {
a47cd880 1847 /* We have hit the limit, so time to give up. */
5955f7ee 1848 rdtp->dyntick_holdoff = jiffies;
433cdddc 1849 trace_rcu_prep_idle("Begin holdoff");
aea1b35e
PM
1850 invoke_rcu_core(); /* Force the CPU out of dyntick-idle. */
1851 return;
a47cd880
PM
1852 }
1853
aea1b35e
PM
1854 /*
1855 * Do one step of pushing the remaining RCU callbacks through
1856 * the RCU core state machine.
1857 */
1858#ifdef CONFIG_TREE_PREEMPT_RCU
1859 if (per_cpu(rcu_preempt_data, cpu).nxtlist) {
1860 rcu_preempt_qs(cpu);
4cdfc175 1861 force_quiescent_state(&rcu_preempt_state);
aea1b35e
PM
1862 }
1863#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
a47cd880
PM
1864 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
1865 rcu_sched_qs(cpu);
4cdfc175 1866 force_quiescent_state(&rcu_sched_state);
a47cd880
PM
1867 }
1868 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
1869 rcu_bh_qs(cpu);
4cdfc175 1870 force_quiescent_state(&rcu_bh_state);
8bd93a2c
PM
1871 }
1872
433cdddc
PM
1873 /*
1874 * If RCU callbacks are still pending, RCU still needs this CPU.
1875 * So try forcing the callbacks through the grace period.
1876 */
3ad0decf 1877 if (rcu_cpu_has_callbacks(cpu)) {
433cdddc 1878 trace_rcu_prep_idle("More callbacks");
a46e0899 1879 invoke_rcu_core();
c701d5d9 1880 } else {
433cdddc 1881 trace_rcu_prep_idle("Callbacks drained");
c701d5d9 1882 }
8bd93a2c
PM
1883}
1884
c57afe80 1885/*
98248a0e
PM
1886 * Keep a running count of the number of non-lazy callbacks posted
1887 * on this CPU. This running counter (which is never decremented) allows
1888 * rcu_prepare_for_idle() to detect when something out of the idle loop
1889 * posts a callback, even if an equal number of callbacks are invoked.
1890 * Of course, callbacks should only be posted from within a trace event
1891 * designed to be called from idle or from within RCU_NONIDLE().
c57afe80
PM
1892 */
1893static void rcu_idle_count_callbacks_posted(void)
1894{
5955f7ee 1895 __this_cpu_add(rcu_dynticks.nonlazy_posted, 1);
c57afe80
PM
1896}
1897
b626c1b6
PM
1898/*
1899 * Data for flushing lazy RCU callbacks at OOM time.
1900 */
1901static atomic_t oom_callback_count;
1902static DECLARE_WAIT_QUEUE_HEAD(oom_callback_wq);
1903
1904/*
1905 * RCU OOM callback -- decrement the outstanding count and deliver the
1906 * wake-up if we are the last one.
1907 */
1908static void rcu_oom_callback(struct rcu_head *rhp)
1909{
1910 if (atomic_dec_and_test(&oom_callback_count))
1911 wake_up(&oom_callback_wq);
1912}
1913
1914/*
1915 * Post an rcu_oom_notify callback on the current CPU if it has at
1916 * least one lazy callback. This will unnecessarily post callbacks
1917 * to CPUs that already have a non-lazy callback at the end of their
1918 * callback list, but this is an infrequent operation, so accept some
1919 * extra overhead to keep things simple.
1920 */
1921static void rcu_oom_notify_cpu(void *unused)
1922{
1923 struct rcu_state *rsp;
1924 struct rcu_data *rdp;
1925
1926 for_each_rcu_flavor(rsp) {
1927 rdp = __this_cpu_ptr(rsp->rda);
1928 if (rdp->qlen_lazy != 0) {
1929 atomic_inc(&oom_callback_count);
1930 rsp->call(&rdp->oom_head, rcu_oom_callback);
1931 }
1932 }
1933}
1934
1935/*
1936 * If low on memory, ensure that each CPU has a non-lazy callback.
1937 * This will wake up CPUs that have only lazy callbacks, in turn
1938 * ensuring that they free up the corresponding memory in a timely manner.
1939 * Because an uncertain amount of memory will be freed in some uncertain
1940 * timeframe, we do not claim to have freed anything.
1941 */
1942static int rcu_oom_notify(struct notifier_block *self,
1943 unsigned long notused, void *nfreed)
1944{
1945 int cpu;
1946
1947 /* Wait for callbacks from earlier instance to complete. */
1948 wait_event(oom_callback_wq, atomic_read(&oom_callback_count) == 0);
1949
1950 /*
1951 * Prevent premature wakeup: ensure that all increments happen
1952 * before there is a chance of the counter reaching zero.
1953 */
1954 atomic_set(&oom_callback_count, 1);
1955
1956 get_online_cpus();
1957 for_each_online_cpu(cpu) {
1958 smp_call_function_single(cpu, rcu_oom_notify_cpu, NULL, 1);
1959 cond_resched();
1960 }
1961 put_online_cpus();
1962
1963 /* Unconditionally decrement: no need to wake ourselves up. */
1964 atomic_dec(&oom_callback_count);
1965
1966 return NOTIFY_OK;
1967}
1968
1969static struct notifier_block rcu_oom_nb = {
1970 .notifier_call = rcu_oom_notify
1971};
1972
1973static int __init rcu_register_oom_notifier(void)
1974{
1975 register_oom_notifier(&rcu_oom_nb);
1976 return 0;
1977}
1978early_initcall(rcu_register_oom_notifier);
1979
8bd93a2c 1980#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */
a858af28
PM
1981
1982#ifdef CONFIG_RCU_CPU_STALL_INFO
1983
1984#ifdef CONFIG_RCU_FAST_NO_HZ
1985
1986static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
1987{
5955f7ee
PM
1988 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1989 struct timer_list *tltp = &rdtp->idle_gp_timer;
86f343b5 1990 char c;
a858af28 1991
86f343b5
PM
1992 c = rdtp->dyntick_holdoff == jiffies ? 'H' : '.';
1993 if (timer_pending(tltp))
1994 sprintf(cp, "drain=%d %c timer=%lu",
1995 rdtp->dyntick_drain, c, tltp->expires - jiffies);
1996 else
1997 sprintf(cp, "drain=%d %c timer not pending",
1998 rdtp->dyntick_drain, c);
a858af28
PM
1999}
2000
2001#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
2002
2003static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2004{
1c17e4d4 2005 *cp = '\0';
a858af28
PM
2006}
2007
2008#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
2009
2010/* Initiate the stall-info list. */
2011static void print_cpu_stall_info_begin(void)
2012{
2013 printk(KERN_CONT "\n");
2014}
2015
2016/*
2017 * Print out diagnostic information for the specified stalled CPU.
2018 *
2019 * If the specified CPU is aware of the current RCU grace period
2020 * (flavor specified by rsp), then print the number of scheduling
2021 * clock interrupts the CPU has taken during the time that it has
2022 * been aware. Otherwise, print the number of RCU grace periods
2023 * that this CPU is ignorant of, for example, "1" if the CPU was
2024 * aware of the previous grace period.
2025 *
2026 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
2027 */
2028static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2029{
2030 char fast_no_hz[72];
2031 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
2032 struct rcu_dynticks *rdtp = rdp->dynticks;
2033 char *ticks_title;
2034 unsigned long ticks_value;
2035
2036 if (rsp->gpnum == rdp->gpnum) {
2037 ticks_title = "ticks this GP";
2038 ticks_value = rdp->ticks_this_gp;
2039 } else {
2040 ticks_title = "GPs behind";
2041 ticks_value = rsp->gpnum - rdp->gpnum;
2042 }
2043 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
2044 printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n",
2045 cpu, ticks_value, ticks_title,
2046 atomic_read(&rdtp->dynticks) & 0xfff,
2047 rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
2048 fast_no_hz);
2049}
2050
2051/* Terminate the stall-info list. */
2052static void print_cpu_stall_info_end(void)
2053{
2054 printk(KERN_ERR "\t");
2055}
2056
2057/* Zero ->ticks_this_gp for all flavors of RCU. */
2058static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2059{
2060 rdp->ticks_this_gp = 0;
2061}
2062
2063/* Increment ->ticks_this_gp for all flavors of RCU. */
2064static void increment_cpu_stall_ticks(void)
2065{
115f7a7c
PM
2066 struct rcu_state *rsp;
2067
2068 for_each_rcu_flavor(rsp)
2069 __this_cpu_ptr(rsp->rda)->ticks_this_gp++;
a858af28
PM
2070}
2071
2072#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
2073
2074static void print_cpu_stall_info_begin(void)
2075{
2076 printk(KERN_CONT " {");
2077}
2078
2079static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2080{
2081 printk(KERN_CONT " %d", cpu);
2082}
2083
2084static void print_cpu_stall_info_end(void)
2085{
2086 printk(KERN_CONT "} ");
2087}
2088
2089static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2090{
2091}
2092
2093static void increment_cpu_stall_ticks(void)
2094{
2095}
2096
2097#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */