blob: 57e0ef8ed721ea18dd8d645acb5cec7d11200bd6 [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
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
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080027#include <linux/delay.h>
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -070028#include <linux/oom.h>
Paul E. McKenney62ab7072012-07-16 10:42:38 +000029#include <linux/smpboot.h>
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070030
Mike Galbraith5b61b0b2011-08-19 11:39:11 -070031#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
Paul E. McKenney26845c22010-04-13 14:19:23 -070039/*
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
Paul E. McKenney81a294c2010-08-30 09:52:50 -070066#if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE)
Paul E. McKenneya858af22012-01-16 13:29:10 -080067 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");
Paul E. McKenney26845c22010-04-13 14:19:23 -070071#endif
72#if NUM_RCU_LVL_4 != 0
Paul E. McKenneycc5df652012-06-15 18:16:00 -070073 printk(KERN_INFO "\tFour-level hierarchy is enabled.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070074#endif
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -070075 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);
Paul E. McKenneycca6f392012-05-08 21:00:28 -070077 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);
Paul E. McKenney26845c22010-04-13 14:19:23 -070079}
80
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070081#ifdef CONFIG_TREE_PREEMPT_RCU
82
Paul E. McKenney037b64e2012-05-28 23:26:01 -070083struct rcu_state rcu_preempt_state =
84 RCU_STATE_INITIALIZER(rcu_preempt, call_rcu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070085DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
Paul E. McKenney27f4d282011-02-07 12:47:15 -080086static struct rcu_state *rcu_state = &rcu_preempt_state;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070087
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080088static int rcu_preempted_readers_exp(struct rcu_node *rnp);
89
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070090/*
91 * Tell them what RCU they are running.
92 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -080093static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070094{
Paul E. McKenney6cc68792011-03-02 13:15:15 -080095 printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070096 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070097}
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
118/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800119 * Force a quiescent state for preemptible RCU.
120 */
121void rcu_force_quiescent_state(void)
122{
Paul E. McKenney4cdfc172012-06-22 17:06:26 -0700123 force_quiescent_state(&rcu_preempt_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800124}
125EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
126
127/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800128 * Record a preemptible-RCU quiescent state for the specified CPU. Note
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700129 * 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.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700132 *
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.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700136 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700137static void rcu_preempt_qs(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700138{
139 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700140
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700141 if (rdp->passed_quiesce == 0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700142 trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs");
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700143 rdp->passed_quiesce = 1;
Paul E. McKenney25502a62010-04-01 17:37:01 -0700144 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700145}
146
147/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700148 * 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
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800151 * 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.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700157 *
158 * Caller must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700159 */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700160static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700161{
162 struct task_struct *t = current;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700163 unsigned long flags;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700164 struct rcu_data *rdp;
165 struct rcu_node *rnp;
166
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700167 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700168 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
169
170 /* Possibly blocking in an RCU read-side critical section. */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700171 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700172 rnp = rdp->mynode;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800173 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700174 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
Paul E. McKenney86848962009-08-27 15:00:12 -0700175 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700176
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
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800185 * 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!!!
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700191 *
192 * But first, note that the current CPU must still be
193 * on line!
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700194 */
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700195 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700196 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800197 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;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800200#ifdef CONFIG_RCU_BOOST
201 if (rnp->boost_tasks != NULL)
202 rnp->boost_tasks = rnp->gp_tasks;
203#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800204 } 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 }
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700209 trace_rcu_preempt_task(rdp->rsp->name,
210 t->pid,
211 (rnp->qsmask & rdp->grpmask)
212 ? rnp->gpnum
213 : rnp->gpnum + 1);
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800214 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700215 } 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);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700223 }
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 */
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700234 local_irq_save(flags);
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700235 rcu_preempt_qs(cpu);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700236 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700237}
238
239/*
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700240 * 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 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800244static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700245{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800246 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700247}
248
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800249/*
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 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800256static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800257 __releases(rnp->lock)
258{
259 unsigned long mask;
260 struct rcu_node *rnp_p;
261
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800262 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800263 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800264 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 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800274 rcu_report_qs_rsp(&rcu_preempt_state, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800275 return;
276 }
277
278 /* Report up the rest of the hierarchy. */
279 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800280 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
281 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800282 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800283}
284
285/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800286 * 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
300/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800301 * 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 */
Paul E. McKenney2a3fa842012-05-21 11:58:36 -0700305void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700306{
307 int empty;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800308 int empty_exp;
Paul E. McKenney389abd42011-09-21 14:41:37 -0700309 int empty_exp_now;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700310 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800311 struct list_head *np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700312#ifdef CONFIG_RCU_BOOST
313 struct rt_mutex *rbmp = NULL;
314#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700315 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) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700330 rcu_preempt_qs(smp_processor_id());
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700331 }
332
333 /* Hardware IRQ handlers cannot block. */
Peter Zijlstraec433f02011-07-19 15:32:00 -0700334 if (in_irq() || in_serving_softirq()) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700335 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
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700343 /*
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 (;;) {
Paul E. McKenney86848962009-08-27 15:00:12 -0700349 rnp = t->rcu_blocked_node;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800350 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700351 if (rnp == t->rcu_blocked_node)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700352 break;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800353 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700354 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800355 empty = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800356 empty_exp = !rcu_preempted_readers_exp(rnp);
357 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800358 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700359 list_del_init(&t->rcu_node_entry);
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700360 t->rcu_blocked_node = NULL;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700361 trace_rcu_unlock_preempted_task("rcu_preempt",
362 rnp->gpnum, t->pid);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800363 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;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800367#ifdef CONFIG_RCU_BOOST
368 if (&t->rcu_node_entry == rnp->boost_tasks)
369 rnp->boost_tasks = np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700370 /* 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;
Paul E. McKenney7765be22011-07-14 12:24:11 -0700374 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800375#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700376
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.
Paul E. McKenney389abd42011-09-21 14:41:37 -0700380 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
381 * so we must take a snapshot of the expedited state.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700382 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700383 empty_exp_now = !rcu_preempted_readers_exp(rnp);
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700384 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);
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800392 rcu_report_unblock_qs_rnp(rnp, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700393 } else {
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700394 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700395 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800396
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800397#ifdef CONFIG_RCU_BOOST
398 /* Unboost if we were boosted. */
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700399 if (rbmp)
400 rt_mutex_unlock(rbmp);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800401#endif /* #ifdef CONFIG_RCU_BOOST */
402
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800403 /*
404 * If this was the last task on the expedited lists,
405 * then we need to report up the rcu_node hierarchy.
406 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700407 if (!empty_exp && empty_exp_now)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700408 rcu_report_exp_rnp(&rcu_preempt_state, rnp, true);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800409 } else {
410 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700411 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700412}
413
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800414#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;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800423 struct task_struct *t;
424
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800425 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenney5fd4dc02012-08-10 16:00:11 -0700426 if (!rcu_preempt_blocked_readers_cgp(rnp)) {
427 raw_spin_unlock_irqrestore(&rnp->lock, flags);
428 return;
429 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800430 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);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800435}
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
Paul E. McKenneya858af22012-01-16 13:29:10 -0800458#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
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700483/*
484 * Scan the current list of tasks blocked within RCU read-side critical
485 * sections, printing out the tid of each.
486 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700487static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700488{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700489 struct task_struct *t;
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700490 int ndetected = 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700491
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800492 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700493 return 0;
Paul E. McKenneya858af22012-01-16 13:29:10 -0800494 rcu_print_task_stall_begin(rnp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800495 t = list_entry(rnp->gp_tasks,
496 struct task_struct, rcu_node_entry);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700497 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenneya858af22012-01-16 13:29:10 -0800498 printk(KERN_CONT " P%d", t->pid);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700499 ndetected++;
500 }
Paul E. McKenneya858af22012-01-16 13:29:10 -0800501 rcu_print_task_stall_end();
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700502 return ndetected;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700503}
504
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700505/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700506 * 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.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800511 *
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.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700514 */
515static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
516{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800517 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800518 if (!list_empty(&rnp->blkd_tasks))
519 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700520 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700521}
522
Paul E. McKenney33f76142009-08-24 09:42:01 -0700523#ifdef CONFIG_HOTPLUG_CPU
524
525/*
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700526 * 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.
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800531 * Returns true if there were tasks blocking the current RCU grace
532 * period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700533 *
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700534 * Returns 1 if there was previously a task blocking the current grace
535 * period on the specified rcu_node structure.
536 *
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700537 * The caller must hold rnp->lock with irqs disabled.
538 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700539static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
540 struct rcu_node *rnp,
541 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700542{
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700543 struct list_head *lp;
544 struct list_head *lp_root;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800545 int retval = 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700546 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800547 struct task_struct *t;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700548
Paul E. McKenney86848962009-08-27 15:00:12 -0700549 if (rnp == rnp_root) {
550 WARN_ONCE(1, "Last CPU thought to be offlined?");
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700551 return 0; /* Shouldn't happen: at least one CPU online. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700552 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800553
554 /* If we are on an internal node, complain bitterly. */
555 WARN_ON_ONCE(rnp != rdp->mynode);
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700556
557 /*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800558 * 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.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700565 */
Paul E. McKenney2036d942012-01-30 17:02:47 -0800566 if (rcu_preempt_blocked_readers_cgp(rnp) && rnp->qsmask == 0)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800567 retval |= RCU_OFL_TASKS_NORM_GP;
568 if (rcu_preempted_readers_exp(rnp))
569 retval |= RCU_OFL_TASKS_EXP_GP;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800570 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;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800582#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 */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800586 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700587 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800588
Paul E. McKenney1e3fd2b2012-07-27 13:41:47 -0700589 rnp->gp_tasks = NULL;
590 rnp->exp_tasks = NULL;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800591#ifdef CONFIG_RCU_BOOST
Paul E. McKenney1e3fd2b2012-07-27 13:41:47 -0700592 rnp->boost_tasks = NULL;
Paul E. McKenney5cc900c2012-07-31 14:09:49 -0700593 /*
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 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800598 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
599 if (rnp_root->boost_tasks != NULL &&
Paul E. McKenney5cc900c2012-07-31 14:09:49 -0700600 rnp_root->boost_tasks != rnp_root->gp_tasks &&
601 rnp_root->boost_tasks != rnp_root->exp_tasks)
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800602 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
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700606 return retval;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700607}
608
Paul E. McKenneye5601402012-01-07 11:03:57 -0800609#endif /* #ifdef CONFIG_HOTPLUG_CPU */
610
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700611/*
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700612 * 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) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700623 rcu_preempt_qs(cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700624 return;
625 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700626 if (t->rcu_read_lock_nesting > 0 &&
627 per_cpu(rcu_preempt_data, cpu).qs_pending)
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700628 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700629}
630
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700631#ifdef CONFIG_RCU_BOOST
632
Shaohua Li09223372011-06-14 13:26:25 +0800633static void rcu_preempt_do_callbacks(void)
634{
635 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
636}
637
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700638#endif /* #ifdef CONFIG_RCU_BOOST */
639
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700640/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800641 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700642 */
643void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
644{
Paul E. McKenney486e2592012-01-06 14:11:30 -0800645 __call_rcu(head, func, &rcu_preempt_state, 0);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700646}
647EXPORT_SYMBOL_GPL(call_rcu);
648
Paul E. McKenney486e2592012-01-06 14:11:30 -0800649/*
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
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800663/**
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
Paul E. McKenney77d84852010-07-08 17:38:59 -0700668 * 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.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -0700673 *
674 * See the description of synchronize_sched() for more detailed information
675 * on memory ordering guarantees.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800676 */
677void synchronize_rcu(void)
678{
Paul E. McKenneyfe15d702012-01-04 13:30:33 -0800679 rcu_lockdep_assert(!lock_is_held(&rcu_bh_lock_map) &&
680 !lock_is_held(&rcu_lock_map) &&
681 !lock_is_held(&rcu_sched_lock_map),
682 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800683 if (!rcu_scheduler_active)
684 return;
Paul E. McKenney2c428182011-05-26 22:14:36 -0700685 wait_rcu_gp(call_rcu);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800686}
687EXPORT_SYMBOL_GPL(synchronize_rcu);
688
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800689static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
Paul E. McKenneybcfa57c2012-07-23 16:03:51 -0700690static unsigned long sync_rcu_preempt_exp_count;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800691static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
692
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700693/*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800694 * 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{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800701 return rnp->exp_tasks != NULL;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800702}
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 *
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700727 * Most callers will set the "wake" flag, but the task initiating the
728 * expedited grace period need not wake itself.
729 *
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800730 * Caller must hold sync_rcu_preempt_exp_mutex.
731 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700732static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
733 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800734{
735 unsigned long flags;
736 unsigned long mask;
737
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800738 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800739 for (;;) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700740 if (!sync_rcu_preempt_exp_done(rnp)) {
741 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800742 break;
Paul E. McKenney131906b2011-07-17 02:05:49 -0700743 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800744 if (rnp->parent == NULL) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700745 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700746 if (wake)
747 wake_up(&sync_rcu_preempt_exp_wq);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800748 break;
749 }
750 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800751 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800752 rnp = rnp->parent;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800753 raw_spin_lock(&rnp->lock); /* irqs already disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800754 rnp->expmask &= ~mask;
755 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800756}
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{
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700768 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800769 int must_wait = 0;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800770
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700771 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700772 if (list_empty(&rnp->blkd_tasks)) {
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700773 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700774 } else {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800775 rnp->exp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700776 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800777 must_wait = 1;
778 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800779 if (!must_wait)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700780 rcu_report_exp_rnp(rsp, rnp, false); /* Don't wake self. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800781}
782
Paul E. McKenney236fefa2012-01-31 14:00:41 -0800783/**
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.
Paul E. McKenney019129d52009-10-14 10:15:56 -0700799 */
800void synchronize_rcu_expedited(void)
801{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800802 unsigned long flags;
803 struct rcu_node *rnp;
804 struct rcu_state *rsp = &rcu_preempt_state;
Paul E. McKenneybcfa57c2012-07-23 16:03:51 -0700805 unsigned long snap;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800806 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
812 /*
Paul E. McKenney1943c892012-07-30 17:19:25 -0700813 * 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
822 /*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800823 * 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)) {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700828 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 }
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700833 if (trycount++ < 10) {
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800834 udelay(trycount * num_online_cpus());
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700835 } else {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700836 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800837 synchronize_rcu();
838 return;
839 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800840 }
Paul E. McKenney1943c892012-07-30 17:19:25 -0700841 if (ULONG_CMP_LT(snap, ACCESS_ONCE(sync_rcu_preempt_exp_count))) {
842 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800843 goto unlock_mb_ret; /* Others did our work for us. */
Paul E. McKenney1943c892012-07-30 17:19:25 -0700844 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800845
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800846 /* force all RCU readers onto ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800847 synchronize_sched_expedited();
848
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800849 /* Initialize ->expmask for all non-leaf rcu_node structures. */
850 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700851 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800852 rnp->expmask = rnp->qsmaskinit;
Paul E. McKenney1943c892012-07-30 17:19:25 -0700853 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800854 }
855
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800856 /* Snapshot current state of ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800857 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
Paul E. McKenney1943c892012-07-30 17:19:25 -0700862 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800863
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800864 /* Wait for snapshotted ->blkd_tasks lists to drain. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800865 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. */
Paul E. McKenney019129d52009-10-14 10:15:56 -0700876}
877EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
878
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700879/**
880 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
Paul E. McKenneyf0a0e6f2012-10-23 13:47:01 -0700881 *
882 * Note that this primitive does not necessarily wait for an RCU grace period
883 * to complete. For example, if there are no RCU callbacks queued anywhere
884 * in the system, then rcu_barrier() is within its rights to return
885 * immediately, without waiting for anything, much less an RCU grace period.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700886 */
887void rcu_barrier(void)
888{
Paul E. McKenney037b64e2012-05-28 23:26:01 -0700889 _rcu_barrier(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700890}
891EXPORT_SYMBOL_GPL(rcu_barrier);
892
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700893/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800894 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700895 */
896static void __init __rcu_init_preempt(void)
897{
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800898 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700899}
900
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700901#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
902
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800903static struct rcu_state *rcu_state = &rcu_sched_state;
904
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700905/*
906 * Tell them what RCU they are running.
907 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800908static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700909{
910 printk(KERN_INFO "Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700911 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700912}
913
914/*
915 * Return the number of RCU batches processed thus far for debug & stats.
916 */
917long rcu_batches_completed(void)
918{
919 return rcu_batches_completed_sched();
920}
921EXPORT_SYMBOL_GPL(rcu_batches_completed);
922
923/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800924 * Force a quiescent state for RCU, which, because there is no preemptible
925 * RCU, becomes the same as rcu-sched.
926 */
927void rcu_force_quiescent_state(void)
928{
929 rcu_sched_force_quiescent_state();
930}
931EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
932
933/*
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700934 * Because preemptible RCU does not exist, we never have to check for
935 * CPUs being in quiescent states.
936 */
937static void rcu_preempt_note_context_switch(int cpu)
938{
939}
940
941/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800942 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700943 * RCU readers.
944 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800945static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700946{
947 return 0;
948}
949
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800950#ifdef CONFIG_HOTPLUG_CPU
951
952/* Because preemptible RCU does not exist, no quieting of tasks. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800953static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800954{
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800955 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800956}
957
958#endif /* #ifdef CONFIG_HOTPLUG_CPU */
959
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700960/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800961 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700962 * tasks blocked within RCU read-side critical sections.
963 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800964static void rcu_print_detail_task_stall(struct rcu_state *rsp)
965{
966}
967
968/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800969 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800970 * tasks blocked within RCU read-side critical sections.
971 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700972static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700973{
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700974 return 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700975}
976
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700977/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800978 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -0700979 * so there is no need to check for blocked tasks. So check only for
980 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700981 */
982static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
983{
Paul E. McKenney49e29122009-09-18 09:50:19 -0700984 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700985}
986
Paul E. McKenney33f76142009-08-24 09:42:01 -0700987#ifdef CONFIG_HOTPLUG_CPU
988
989/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800990 * Because preemptible RCU does not exist, it never needs to migrate
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700991 * tasks that were blocked within RCU read-side critical sections, and
992 * such non-existent tasks cannot possibly have been blocking the current
993 * grace period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700994 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700995static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
996 struct rcu_node *rnp,
997 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700998{
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700999 return 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001000}
1001
Paul E. McKenneye5601402012-01-07 11:03:57 -08001002#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1003
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001004/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001005 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001006 * to check.
1007 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001008static void rcu_preempt_check_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001009{
1010}
1011
1012/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08001013 * Queue an RCU callback for lazy invocation after a grace period.
1014 * This will likely be later named something like "call_rcu_lazy()",
1015 * but this change will require some way of tagging the lazy RCU
1016 * callbacks in the list of pending callbacks. Until then, this
1017 * function may only be called from __kfree_rcu().
1018 *
1019 * Because there is no preemptible RCU, we use RCU-sched instead.
1020 */
1021void kfree_call_rcu(struct rcu_head *head,
1022 void (*func)(struct rcu_head *rcu))
1023{
1024 __call_rcu(head, func, &rcu_sched_state, 1);
1025}
1026EXPORT_SYMBOL_GPL(kfree_call_rcu);
1027
1028/*
Paul E. McKenney019129d52009-10-14 10:15:56 -07001029 * Wait for an rcu-preempt grace period, but make it happen quickly.
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001030 * But because preemptible RCU does not exist, map to rcu-sched.
Paul E. McKenney019129d52009-10-14 10:15:56 -07001031 */
1032void synchronize_rcu_expedited(void)
1033{
1034 synchronize_sched_expedited();
1035}
1036EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1037
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001038#ifdef CONFIG_HOTPLUG_CPU
1039
1040/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001041 * Because preemptible RCU does not exist, there is never any need to
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001042 * report on tasks preempted in RCU read-side critical sections during
1043 * expedited RCU grace periods.
1044 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -07001045static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
1046 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001047{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001048}
1049
1050#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1051
Paul E. McKenney019129d52009-10-14 10:15:56 -07001052/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001053 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001054 * another name for rcu_barrier_sched().
1055 */
1056void rcu_barrier(void)
1057{
1058 rcu_barrier_sched();
1059}
1060EXPORT_SYMBOL_GPL(rcu_barrier);
1061
1062/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001063 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001064 */
1065static void __init __rcu_init_preempt(void)
1066{
1067}
1068
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001069#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001070
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001071#ifdef CONFIG_RCU_BOOST
1072
1073#include "rtmutex_common.h"
1074
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001075#ifdef CONFIG_RCU_TRACE
1076
1077static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1078{
1079 if (list_empty(&rnp->blkd_tasks))
1080 rnp->n_balk_blkd_tasks++;
1081 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1082 rnp->n_balk_exp_gp_tasks++;
1083 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1084 rnp->n_balk_boost_tasks++;
1085 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1086 rnp->n_balk_notblocked++;
1087 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -07001088 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001089 rnp->n_balk_notyet++;
1090 else
1091 rnp->n_balk_nos++;
1092}
1093
1094#else /* #ifdef CONFIG_RCU_TRACE */
1095
1096static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1097{
1098}
1099
1100#endif /* #else #ifdef CONFIG_RCU_TRACE */
1101
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001102static void rcu_wake_cond(struct task_struct *t, int status)
1103{
1104 /*
1105 * If the thread is yielding, only wake it when this
1106 * is invoked from idle
1107 */
1108 if (status != RCU_KTHREAD_YIELDING || is_idle_task(current))
1109 wake_up_process(t);
1110}
1111
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001112/*
1113 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1114 * or ->boost_tasks, advancing the pointer to the next task in the
1115 * ->blkd_tasks list.
1116 *
1117 * Note that irqs must be enabled: boosting the task can block.
1118 * Returns 1 if there are more tasks needing to be boosted.
1119 */
1120static int rcu_boost(struct rcu_node *rnp)
1121{
1122 unsigned long flags;
1123 struct rt_mutex mtx;
1124 struct task_struct *t;
1125 struct list_head *tb;
1126
1127 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1128 return 0; /* Nothing left to boost. */
1129
1130 raw_spin_lock_irqsave(&rnp->lock, flags);
1131
1132 /*
1133 * Recheck under the lock: all tasks in need of boosting
1134 * might exit their RCU read-side critical sections on their own.
1135 */
1136 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1137 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1138 return 0;
1139 }
1140
1141 /*
1142 * Preferentially boost tasks blocking expedited grace periods.
1143 * This cannot starve the normal grace periods because a second
1144 * expedited grace period must boost all blocked tasks, including
1145 * those blocking the pre-existing normal grace period.
1146 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001147 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001148 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001149 rnp->n_exp_boosts++;
1150 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001151 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001152 rnp->n_normal_boosts++;
1153 }
1154 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001155
1156 /*
1157 * We boost task t by manufacturing an rt_mutex that appears to
1158 * be held by task t. We leave a pointer to that rt_mutex where
1159 * task t can find it, and task t will release the mutex when it
1160 * exits its outermost RCU read-side critical section. Then
1161 * simply acquiring this artificial rt_mutex will boost task
1162 * t's priority. (Thanks to tglx for suggesting this approach!)
1163 *
1164 * Note that task t must acquire rnp->lock to remove itself from
1165 * the ->blkd_tasks list, which it will do from exit() if from
1166 * nowhere else. We therefore are guaranteed that task t will
1167 * stay around at least until we drop rnp->lock. Note that
1168 * rnp->lock also resolves races between our priority boosting
1169 * and task t's exiting its outermost RCU read-side critical
1170 * section.
1171 */
1172 t = container_of(tb, struct task_struct, rcu_node_entry);
1173 rt_mutex_init_proxy_locked(&mtx, t);
1174 t->rcu_boost_mutex = &mtx;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001175 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1176 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1177 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1178
Paul E. McKenney4f89b332011-12-09 14:43:47 -08001179 return ACCESS_ONCE(rnp->exp_tasks) != NULL ||
1180 ACCESS_ONCE(rnp->boost_tasks) != NULL;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001181}
1182
1183/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001184 * Priority-boosting kthread. One per leaf rcu_node and one for the
1185 * root rcu_node.
1186 */
1187static int rcu_boost_kthread(void *arg)
1188{
1189 struct rcu_node *rnp = (struct rcu_node *)arg;
1190 int spincnt = 0;
1191 int more2boost;
1192
Paul E. McKenney385680a2011-06-21 22:43:26 -07001193 trace_rcu_utilization("Start boost kthread@init");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001194 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001195 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001196 trace_rcu_utilization("End boost kthread@rcu_wait");
Peter Zijlstra08bca602011-05-20 16:06:29 -07001197 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001198 trace_rcu_utilization("Start boost kthread@rcu_wait");
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001199 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001200 more2boost = rcu_boost(rnp);
1201 if (more2boost)
1202 spincnt++;
1203 else
1204 spincnt = 0;
1205 if (spincnt > 10) {
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001206 rnp->boost_kthread_status = RCU_KTHREAD_YIELDING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001207 trace_rcu_utilization("End boost kthread@rcu_yield");
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001208 schedule_timeout_interruptible(2);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001209 trace_rcu_utilization("Start boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001210 spincnt = 0;
1211 }
1212 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001213 /* NOTREACHED */
Paul E. McKenney385680a2011-06-21 22:43:26 -07001214 trace_rcu_utilization("End boost kthread@notreached");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001215 return 0;
1216}
1217
1218/*
1219 * Check to see if it is time to start boosting RCU readers that are
1220 * blocking the current grace period, and, if so, tell the per-rcu_node
1221 * kthread to start boosting them. If there is an expedited grace
1222 * period in progress, it is always time to boost.
1223 *
Paul E. McKenneyb065a852012-08-01 15:57:54 -07001224 * The caller must hold rnp->lock, which this function releases.
1225 * The ->boost_kthread_task is immortal, so we don't need to worry
1226 * about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001227 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001228static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001229{
1230 struct task_struct *t;
1231
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001232 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1233 rnp->n_balk_exp_gp_tasks++;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001234 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001235 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001236 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001237 if (rnp->exp_tasks != NULL ||
1238 (rnp->gp_tasks != NULL &&
1239 rnp->boost_tasks == NULL &&
1240 rnp->qsmask == 0 &&
1241 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1242 if (rnp->exp_tasks == NULL)
1243 rnp->boost_tasks = rnp->gp_tasks;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001244 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001245 t = rnp->boost_kthread_task;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001246 if (t)
1247 rcu_wake_cond(t, rnp->boost_kthread_status);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001248 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001249 rcu_initiate_boost_trace(rnp);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001250 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1251 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001252}
1253
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001254/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001255 * Wake up the per-CPU kthread to invoke RCU callbacks.
1256 */
1257static void invoke_rcu_callbacks_kthread(void)
1258{
1259 unsigned long flags;
1260
1261 local_irq_save(flags);
1262 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001263 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001264 current != __this_cpu_read(rcu_cpu_kthread_task)) {
1265 rcu_wake_cond(__this_cpu_read(rcu_cpu_kthread_task),
1266 __this_cpu_read(rcu_cpu_kthread_status));
1267 }
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001268 local_irq_restore(flags);
1269}
1270
1271/*
Paul E. McKenneydff16722011-11-29 15:57:13 -08001272 * Is the current CPU running the RCU-callbacks kthread?
1273 * Caller must have preemption disabled.
1274 */
1275static bool rcu_is_callbacks_kthread(void)
1276{
1277 return __get_cpu_var(rcu_cpu_kthread_task) == current;
1278}
1279
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001280#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1281
1282/*
1283 * Do priority-boost accounting for the start of a new grace period.
1284 */
1285static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1286{
1287 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1288}
1289
1290/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001291 * Create an RCU-boost kthread for the specified node if one does not
1292 * already exist. We only create this kthread for preemptible RCU.
1293 * Returns zero if all is well, a negated errno otherwise.
1294 */
1295static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001296 struct rcu_node *rnp)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001297{
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001298 int rnp_index = rnp - &rsp->node[0];
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001299 unsigned long flags;
1300 struct sched_param sp;
1301 struct task_struct *t;
1302
1303 if (&rcu_preempt_state != rsp)
1304 return 0;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001305
1306 if (!rcu_scheduler_fully_active || rnp->qsmaskinit == 0)
1307 return 0;
1308
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001309 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001310 if (rnp->boost_kthread_task != NULL)
1311 return 0;
1312 t = kthread_create(rcu_boost_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001313 "rcub/%d", rnp_index);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001314 if (IS_ERR(t))
1315 return PTR_ERR(t);
1316 raw_spin_lock_irqsave(&rnp->lock, flags);
1317 rnp->boost_kthread_task = t;
1318 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001319 sp.sched_priority = RCU_BOOST_PRIO;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001320 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001321 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001322 return 0;
1323}
1324
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001325static void rcu_kthread_do_work(void)
1326{
1327 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1328 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1329 rcu_preempt_do_callbacks();
1330}
1331
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001332static void rcu_cpu_kthread_setup(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001333{
1334 struct sched_param sp;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001335
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001336 sp.sched_priority = RCU_KTHREAD_PRIO;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001337 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001338}
1339
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001340static void rcu_cpu_kthread_park(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001341{
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001342 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1343}
1344
1345static int rcu_cpu_kthread_should_run(unsigned int cpu)
1346{
1347 return __get_cpu_var(rcu_cpu_has_work);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001348}
1349
1350/*
1351 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07001352 * RCU softirq used in flavors and configurations of RCU that do not
1353 * support RCU priority boosting.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001354 */
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001355static void rcu_cpu_kthread(unsigned int cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001356{
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001357 unsigned int *statusp = &__get_cpu_var(rcu_cpu_kthread_status);
1358 char work, *workp = &__get_cpu_var(rcu_cpu_has_work);
1359 int spincnt;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001360
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001361 for (spincnt = 0; spincnt < 10; spincnt++) {
Paul E. McKenney385680a2011-06-21 22:43:26 -07001362 trace_rcu_utilization("Start CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001363 local_bh_disable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001364 *statusp = RCU_KTHREAD_RUNNING;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001365 this_cpu_inc(rcu_cpu_kthread_loops);
1366 local_irq_disable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001367 work = *workp;
1368 *workp = 0;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001369 local_irq_enable();
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001370 if (work)
1371 rcu_kthread_do_work();
1372 local_bh_enable();
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001373 if (*workp == 0) {
1374 trace_rcu_utilization("End CPU kthread@rcu_wait");
1375 *statusp = RCU_KTHREAD_WAITING;
1376 return;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001377 }
1378 }
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001379 *statusp = RCU_KTHREAD_YIELDING;
1380 trace_rcu_utilization("Start CPU kthread@rcu_yield");
1381 schedule_timeout_interruptible(2);
1382 trace_rcu_utilization("End CPU kthread@rcu_yield");
1383 *statusp = RCU_KTHREAD_WAITING;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001384}
1385
1386/*
1387 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1388 * served by the rcu_node in question. The CPU hotplug lock is still
1389 * held, so the value of rnp->qsmaskinit will be stable.
1390 *
1391 * We don't include outgoingcpu in the affinity set, use -1 if there is
1392 * no outgoing CPU. If there are no CPUs left in the affinity set,
1393 * this function allows the kthread to execute on any CPU.
1394 */
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001395static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001396{
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001397 struct task_struct *t = rnp->boost_kthread_task;
1398 unsigned long mask = rnp->qsmaskinit;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001399 cpumask_var_t cm;
1400 int cpu;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001401
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001402 if (!t)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001403 return;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001404 if (!zalloc_cpumask_var(&cm, GFP_KERNEL))
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001405 return;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001406 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1407 if ((mask & 0x1) && cpu != outgoingcpu)
1408 cpumask_set_cpu(cpu, cm);
1409 if (cpumask_weight(cm) == 0) {
1410 cpumask_setall(cm);
1411 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1412 cpumask_clear_cpu(cpu, cm);
1413 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1414 }
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001415 set_cpus_allowed_ptr(t, cm);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001416 free_cpumask_var(cm);
1417}
1418
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001419static struct smp_hotplug_thread rcu_cpu_thread_spec = {
1420 .store = &rcu_cpu_kthread_task,
1421 .thread_should_run = rcu_cpu_kthread_should_run,
1422 .thread_fn = rcu_cpu_kthread,
1423 .thread_comm = "rcuc/%u",
1424 .setup = rcu_cpu_kthread_setup,
1425 .park = rcu_cpu_kthread_park,
1426};
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001427
1428/*
1429 * Spawn all kthreads -- called as soon as the scheduler is running.
1430 */
1431static int __init rcu_spawn_kthreads(void)
1432{
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001433 struct rcu_node *rnp;
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001434 int cpu;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001435
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001436 rcu_scheduler_fully_active = 1;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001437 for_each_possible_cpu(cpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001438 per_cpu(rcu_cpu_has_work, cpu) = 0;
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001439 BUG_ON(smpboot_register_percpu_thread(&rcu_cpu_thread_spec));
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001440 rnp = rcu_get_root(rcu_state);
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001441 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001442 if (NUM_RCU_NODES > 1) {
1443 rcu_for_each_leaf_node(rcu_state, rnp)
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001444 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001445 }
1446 return 0;
1447}
1448early_initcall(rcu_spawn_kthreads);
1449
1450static void __cpuinit rcu_prepare_kthreads(int cpu)
1451{
1452 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1453 struct rcu_node *rnp = rdp->mynode;
1454
1455 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenney62ab7072012-07-16 10:42:38 +00001456 if (rcu_scheduler_fully_active)
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001457 (void)rcu_spawn_one_boost_kthread(rcu_state, rnp);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001458}
1459
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001460#else /* #ifdef CONFIG_RCU_BOOST */
1461
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001462static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001463{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001464 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001465}
1466
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001467static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001468{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001469 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001470}
1471
Paul E. McKenneydff16722011-11-29 15:57:13 -08001472static bool rcu_is_callbacks_kthread(void)
1473{
1474 return false;
1475}
1476
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001477static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1478{
1479}
1480
Thomas Gleixner5d01bbd2012-07-16 10:42:35 +00001481static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001482{
1483}
1484
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001485static int __init rcu_scheduler_really_started(void)
1486{
1487 rcu_scheduler_fully_active = 1;
1488 return 0;
1489}
1490early_initcall(rcu_scheduler_really_started);
1491
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001492static void __cpuinit rcu_prepare_kthreads(int cpu)
1493{
1494}
1495
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001496#endif /* #else #ifdef CONFIG_RCU_BOOST */
1497
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001498#if !defined(CONFIG_RCU_FAST_NO_HZ)
1499
1500/*
1501 * Check to see if any future RCU-related work will need to be done
1502 * by the current CPU, even if none need be done immediately, returning
1503 * 1 if so. This function is part of the RCU implementation; it is -not-
1504 * an exported member of the RCU API.
1505 *
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001506 * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
1507 * any flavor of RCU.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001508 */
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001509int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001510{
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001511 *delta_jiffies = ULONG_MAX;
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001512 return rcu_cpu_has_callbacks(cpu);
1513}
1514
1515/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001516 * Because we do not have RCU_FAST_NO_HZ, don't bother initializing for it.
1517 */
1518static void rcu_prepare_for_idle_init(int cpu)
1519{
1520}
1521
1522/*
1523 * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
1524 * after it.
1525 */
1526static void rcu_cleanup_after_idle(int cpu)
1527{
1528}
1529
1530/*
Paul E. McKenneya858af22012-01-16 13:29:10 -08001531 * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n,
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001532 * is nothing.
1533 */
1534static void rcu_prepare_for_idle(int cpu)
1535{
1536}
1537
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001538/*
1539 * Don't bother keeping a running count of the number of RCU callbacks
1540 * posted because CONFIG_RCU_FAST_NO_HZ=n.
1541 */
1542static void rcu_idle_count_callbacks_posted(void)
1543{
1544}
1545
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001546#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1547
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001548/*
1549 * This code is invoked when a CPU goes idle, at which point we want
1550 * to have the CPU do everything required for RCU so that it can enter
1551 * the energy-efficient dyntick-idle mode. This is handled by a
1552 * state machine implemented by rcu_prepare_for_idle() below.
1553 *
1554 * The following three proprocessor symbols control this state machine:
1555 *
1556 * RCU_IDLE_FLUSHES gives the maximum number of times that we will attempt
1557 * to satisfy RCU. Beyond this point, it is better to incur a periodic
1558 * scheduling-clock interrupt than to loop through the state machine
1559 * at full power.
1560 * RCU_IDLE_OPT_FLUSHES gives the number of RCU_IDLE_FLUSHES that are
1561 * optional if RCU does not need anything immediately from this
1562 * CPU, even if this CPU still has RCU callbacks queued. The first
1563 * times through the state machine are mandatory: we need to give
1564 * the state machine a chance to communicate a quiescent state
1565 * to the RCU core.
1566 * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted
1567 * to sleep in dyntick-idle mode with RCU callbacks pending. This
1568 * is sized to be roughly one RCU grace period. Those energy-efficiency
1569 * benchmarkers who might otherwise be tempted to set this to a large
1570 * number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your
1571 * system. And if you are -that- concerned about energy efficiency,
1572 * just power the system down and be done with it!
Paul E. McKenney778d2502012-01-10 14:13:24 -08001573 * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is
1574 * permitted to sleep in dyntick-idle mode with only lazy RCU
1575 * callbacks pending. Setting this too high can OOM your system.
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001576 *
1577 * The values below work well in practice. If future workloads require
1578 * adjustment, they can be converted into kernel config parameters, though
1579 * making the state machine smarter might be a better option.
1580 */
1581#define RCU_IDLE_FLUSHES 5 /* Number of dyntick-idle tries. */
1582#define RCU_IDLE_OPT_FLUSHES 3 /* Optional dyntick-idle tries. */
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001583#define RCU_IDLE_GP_DELAY 4 /* Roughly one grace period. */
Paul E. McKenney778d2502012-01-10 14:13:24 -08001584#define RCU_IDLE_LAZY_GP_DELAY (6 * HZ) /* Roughly six seconds. */
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001585
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001586extern int tick_nohz_enabled;
1587
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001588/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08001589 * Does the specified flavor of RCU have non-lazy callbacks pending on
1590 * the specified CPU? Both RCU flavor and CPU are specified by the
1591 * rcu_data structure.
1592 */
1593static bool __rcu_cpu_has_nonlazy_callbacks(struct rcu_data *rdp)
1594{
1595 return rdp->qlen != rdp->qlen_lazy;
1596}
1597
1598#ifdef CONFIG_TREE_PREEMPT_RCU
1599
1600/*
1601 * Are there non-lazy RCU-preempt callbacks? (There cannot be if there
1602 * is no RCU-preempt in the kernel.)
1603 */
1604static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1605{
1606 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
1607
1608 return __rcu_cpu_has_nonlazy_callbacks(rdp);
1609}
1610
1611#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
1612
1613static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1614{
1615 return 0;
1616}
1617
1618#endif /* else #ifdef CONFIG_TREE_PREEMPT_RCU */
1619
1620/*
1621 * Does any flavor of RCU have non-lazy callbacks on the specified CPU?
1622 */
1623static bool rcu_cpu_has_nonlazy_callbacks(int cpu)
1624{
1625 return __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_sched_data, cpu)) ||
1626 __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_bh_data, cpu)) ||
1627 rcu_preempt_cpu_has_nonlazy_callbacks(cpu);
1628}
1629
1630/*
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001631 * Allow the CPU to enter dyntick-idle mode if either: (1) There are no
1632 * callbacks on this CPU, (2) this CPU has not yet attempted to enter
1633 * dyntick-idle mode, or (3) this CPU is in the process of attempting to
1634 * enter dyntick-idle mode. Otherwise, if we have recently tried and failed
1635 * to enter dyntick-idle mode, we refuse to try to enter it. After all,
1636 * it is better to incur scheduling-clock interrupts than to spin
1637 * continuously for the same time duration!
1638 *
1639 * The delta_jiffies argument is used to store the time when RCU is
1640 * going to need the CPU again if it still has callbacks. The reason
1641 * for this is that rcu_prepare_for_idle() might need to post a timer,
1642 * but if so, it will do so after tick_nohz_stop_sched_tick() has set
1643 * the wakeup time for this CPU. This means that RCU's timer can be
1644 * delayed until the wakeup time, which defeats the purpose of posting
1645 * a timer.
1646 */
1647int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
1648{
1649 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1650
1651 /* Flag a new idle sojourn to the idle-entry state machine. */
1652 rdtp->idle_first_pass = 1;
1653 /* If no callbacks, RCU doesn't need the CPU. */
1654 if (!rcu_cpu_has_callbacks(cpu)) {
1655 *delta_jiffies = ULONG_MAX;
1656 return 0;
1657 }
1658 if (rdtp->dyntick_holdoff == jiffies) {
1659 /* RCU recently tried and failed, so don't try again. */
1660 *delta_jiffies = 1;
1661 return 1;
1662 }
1663 /* Set up for the possibility that RCU will post a timer. */
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001664 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1665 *delta_jiffies = round_up(RCU_IDLE_GP_DELAY + jiffies,
1666 RCU_IDLE_GP_DELAY) - jiffies;
1667 } else {
1668 *delta_jiffies = jiffies + RCU_IDLE_LAZY_GP_DELAY;
1669 *delta_jiffies = round_jiffies(*delta_jiffies) - jiffies;
1670 }
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001671 return 0;
1672}
1673
1674/*
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001675 * Handler for smp_call_function_single(). The only point of this
1676 * handler is to wake the CPU up, so the handler does only tracing.
1677 */
1678void rcu_idle_demigrate(void *unused)
1679{
1680 trace_rcu_prep_idle("Demigrate");
1681}
1682
1683/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001684 * Timer handler used to force CPU to start pushing its remaining RCU
1685 * callbacks in the case where it entered dyntick-idle mode with callbacks
1686 * pending. The hander doesn't really need to do anything because the
1687 * real work is done upon re-entry to idle, or by the next scheduling-clock
1688 * interrupt should idle not be re-entered.
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001689 *
1690 * One special case: the timer gets migrated without awakening the CPU
1691 * on which the timer was scheduled on. In this case, we must wake up
1692 * that CPU. We do so with smp_call_function_single().
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001693 */
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001694static void rcu_idle_gp_timer_func(unsigned long cpu_in)
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001695{
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001696 int cpu = (int)cpu_in;
1697
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001698 trace_rcu_prep_idle("Timer");
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001699 if (cpu != smp_processor_id())
1700 smp_call_function_single(cpu, rcu_idle_demigrate, NULL, 0);
1701 else
1702 WARN_ON_ONCE(1); /* Getting here can hang the system... */
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001703}
1704
1705/*
1706 * Initialize the timer used to pull CPUs out of dyntick-idle mode.
1707 */
1708static void rcu_prepare_for_idle_init(int cpu)
1709{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001710 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1711
1712 rdtp->dyntick_holdoff = jiffies - 1;
1713 setup_timer(&rdtp->idle_gp_timer, rcu_idle_gp_timer_func, cpu);
1714 rdtp->idle_gp_timer_expires = jiffies - 1;
1715 rdtp->idle_first_pass = 1;
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001716}
1717
1718/*
1719 * Clean up for exit from idle. Because we are exiting from idle, there
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001720 * is no longer any point to ->idle_gp_timer, so cancel it. This will
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001721 * do nothing if this timer is not active, so just cancel it unconditionally.
1722 */
1723static void rcu_cleanup_after_idle(int cpu)
1724{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001725 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1726
1727 del_timer(&rdtp->idle_gp_timer);
Paul E. McKenney2fdbb312012-02-23 15:58:29 -08001728 trace_rcu_prep_idle("Cleanup after idle");
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001729 rdtp->tick_nohz_enabled_snap = ACCESS_ONCE(tick_nohz_enabled);
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001730}
1731
1732/*
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001733 * Check to see if any RCU-related work can be done by the current CPU,
1734 * and if so, schedule a softirq to get it done. This function is part
1735 * of the RCU implementation; it is -not- an exported member of the RCU API.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001736 *
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001737 * The idea is for the current CPU to clear out all work required by the
1738 * RCU core for the current grace period, so that this CPU can be permitted
1739 * to enter dyntick-idle mode. In some cases, it will need to be awakened
1740 * at the end of the grace period by whatever CPU ends the grace period.
1741 * This allows CPUs to go dyntick-idle more quickly, and to reduce the
1742 * number of wakeups by a modest integer factor.
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001743 *
1744 * Because it is not legal to invoke rcu_process_callbacks() with irqs
1745 * disabled, we do one pass of force_quiescent_state(), then do a
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001746 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001747 * later. The ->dyntick_drain field controls the sequencing.
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001748 *
1749 * The caller must have disabled interrupts.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001750 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001751static void rcu_prepare_for_idle(int cpu)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001752{
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07001753 struct timer_list *tp;
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001754 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001755 int tne;
1756
1757 /* Handle nohz enablement switches conservatively. */
1758 tne = ACCESS_ONCE(tick_nohz_enabled);
1759 if (tne != rdtp->tick_nohz_enabled_snap) {
1760 if (rcu_cpu_has_callbacks(cpu))
1761 invoke_rcu_core(); /* force nohz to see update. */
1762 rdtp->tick_nohz_enabled_snap = tne;
1763 return;
1764 }
1765 if (!tne)
1766 return;
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07001767
Paul E. McKenney9a0c6fe2012-06-28 12:33:51 -07001768 /* Adaptive-tick mode, where usermode execution is idle to RCU. */
1769 if (!is_idle_task(current)) {
1770 rdtp->dyntick_holdoff = jiffies - 1;
1771 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1772 trace_rcu_prep_idle("User dyntick with callbacks");
1773 rdtp->idle_gp_timer_expires =
1774 round_up(jiffies + RCU_IDLE_GP_DELAY,
1775 RCU_IDLE_GP_DELAY);
1776 } else if (rcu_cpu_has_callbacks(cpu)) {
1777 rdtp->idle_gp_timer_expires =
1778 round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY);
1779 trace_rcu_prep_idle("User dyntick with lazy callbacks");
1780 } else {
1781 return;
1782 }
1783 tp = &rdtp->idle_gp_timer;
1784 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
1785 return;
1786 }
1787
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08001788 /*
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001789 * If this is an idle re-entry, for example, due to use of
1790 * RCU_NONIDLE() or the new idle-loop tracing API within the idle
1791 * loop, then don't take any state-machine actions, unless the
1792 * momentary exit from idle queued additional non-lazy callbacks.
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001793 * Instead, repost the ->idle_gp_timer if this CPU has callbacks
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001794 * pending.
1795 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001796 if (!rdtp->idle_first_pass &&
1797 (rdtp->nonlazy_posted == rdtp->nonlazy_posted_snap)) {
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07001798 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001799 tp = &rdtp->idle_gp_timer;
1800 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07001801 }
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001802 return;
1803 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001804 rdtp->idle_first_pass = 0;
1805 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted - 1;
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001806
1807 /*
Paul E. McKenneyf535a602011-11-22 20:43:02 -08001808 * If there are no callbacks on this CPU, enter dyntick-idle mode.
1809 * Also reset state to avoid prejudicing later attempts.
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08001810 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001811 if (!rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001812 rdtp->dyntick_holdoff = jiffies - 1;
1813 rdtp->dyntick_drain = 0;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001814 trace_rcu_prep_idle("No callbacks");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001815 return;
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001816 }
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08001817
1818 /*
1819 * If in holdoff mode, just return. We will presumably have
1820 * refrained from disabling the scheduling-clock tick.
1821 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001822 if (rdtp->dyntick_holdoff == jiffies) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001823 trace_rcu_prep_idle("In holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001824 return;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001825 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001826
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001827 /* Check and update the ->dyntick_drain sequencing. */
1828 if (rdtp->dyntick_drain <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001829 /* First time through, initialize the counter. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001830 rdtp->dyntick_drain = RCU_IDLE_FLUSHES;
1831 } else if (rdtp->dyntick_drain <= RCU_IDLE_OPT_FLUSHES &&
Paul E. McKenneyc3ce9102012-02-14 10:12:54 -08001832 !rcu_pending(cpu) &&
1833 !local_softirq_pending()) {
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001834 /* Can we go dyntick-idle despite still having callbacks? */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001835 rdtp->dyntick_drain = 0;
1836 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07001837 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1838 trace_rcu_prep_idle("Dyntick with callbacks");
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001839 rdtp->idle_gp_timer_expires =
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001840 round_up(jiffies + RCU_IDLE_GP_DELAY,
1841 RCU_IDLE_GP_DELAY);
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07001842 } else {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001843 rdtp->idle_gp_timer_expires =
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001844 round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY);
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07001845 trace_rcu_prep_idle("Dyntick with lazy callbacks");
1846 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001847 tp = &rdtp->idle_gp_timer;
1848 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
1849 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001850 return; /* Nothing more to do immediately. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001851 } else if (--(rdtp->dyntick_drain) <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001852 /* We have hit the limit, so time to give up. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001853 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001854 trace_rcu_prep_idle("Begin holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001855 invoke_rcu_core(); /* Force the CPU out of dyntick-idle. */
1856 return;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001857 }
1858
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001859 /*
1860 * Do one step of pushing the remaining RCU callbacks through
1861 * the RCU core state machine.
1862 */
1863#ifdef CONFIG_TREE_PREEMPT_RCU
1864 if (per_cpu(rcu_preempt_data, cpu).nxtlist) {
1865 rcu_preempt_qs(cpu);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07001866 force_quiescent_state(&rcu_preempt_state);
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001867 }
1868#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001869 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
1870 rcu_sched_qs(cpu);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07001871 force_quiescent_state(&rcu_sched_state);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001872 }
1873 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
1874 rcu_bh_qs(cpu);
Paul E. McKenney4cdfc172012-06-22 17:06:26 -07001875 force_quiescent_state(&rcu_bh_state);
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001876 }
1877
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001878 /*
1879 * If RCU callbacks are still pending, RCU still needs this CPU.
1880 * So try forcing the callbacks through the grace period.
1881 */
Paul E. McKenney3ad0dec2011-11-22 21:08:13 -08001882 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001883 trace_rcu_prep_idle("More callbacks");
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001884 invoke_rcu_core();
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -07001885 } else {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08001886 trace_rcu_prep_idle("Callbacks drained");
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -07001887 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001888}
1889
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001890/*
Paul E. McKenney98248a02012-05-03 15:38:10 -07001891 * Keep a running count of the number of non-lazy callbacks posted
1892 * on this CPU. This running counter (which is never decremented) allows
1893 * rcu_prepare_for_idle() to detect when something out of the idle loop
1894 * posts a callback, even if an equal number of callbacks are invoked.
1895 * Of course, callbacks should only be posted from within a trace event
1896 * designed to be called from idle or from within RCU_NONIDLE().
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001897 */
1898static void rcu_idle_count_callbacks_posted(void)
1899{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001900 __this_cpu_add(rcu_dynticks.nonlazy_posted, 1);
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001901}
1902
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07001903/*
1904 * Data for flushing lazy RCU callbacks at OOM time.
1905 */
1906static atomic_t oom_callback_count;
1907static DECLARE_WAIT_QUEUE_HEAD(oom_callback_wq);
1908
1909/*
1910 * RCU OOM callback -- decrement the outstanding count and deliver the
1911 * wake-up if we are the last one.
1912 */
1913static void rcu_oom_callback(struct rcu_head *rhp)
1914{
1915 if (atomic_dec_and_test(&oom_callback_count))
1916 wake_up(&oom_callback_wq);
1917}
1918
1919/*
1920 * Post an rcu_oom_notify callback on the current CPU if it has at
1921 * least one lazy callback. This will unnecessarily post callbacks
1922 * to CPUs that already have a non-lazy callback at the end of their
1923 * callback list, but this is an infrequent operation, so accept some
1924 * extra overhead to keep things simple.
1925 */
1926static void rcu_oom_notify_cpu(void *unused)
1927{
1928 struct rcu_state *rsp;
1929 struct rcu_data *rdp;
1930
1931 for_each_rcu_flavor(rsp) {
1932 rdp = __this_cpu_ptr(rsp->rda);
1933 if (rdp->qlen_lazy != 0) {
1934 atomic_inc(&oom_callback_count);
1935 rsp->call(&rdp->oom_head, rcu_oom_callback);
1936 }
1937 }
1938}
1939
1940/*
1941 * If low on memory, ensure that each CPU has a non-lazy callback.
1942 * This will wake up CPUs that have only lazy callbacks, in turn
1943 * ensuring that they free up the corresponding memory in a timely manner.
1944 * Because an uncertain amount of memory will be freed in some uncertain
1945 * timeframe, we do not claim to have freed anything.
1946 */
1947static int rcu_oom_notify(struct notifier_block *self,
1948 unsigned long notused, void *nfreed)
1949{
1950 int cpu;
1951
1952 /* Wait for callbacks from earlier instance to complete. */
1953 wait_event(oom_callback_wq, atomic_read(&oom_callback_count) == 0);
1954
1955 /*
1956 * Prevent premature wakeup: ensure that all increments happen
1957 * before there is a chance of the counter reaching zero.
1958 */
1959 atomic_set(&oom_callback_count, 1);
1960
1961 get_online_cpus();
1962 for_each_online_cpu(cpu) {
1963 smp_call_function_single(cpu, rcu_oom_notify_cpu, NULL, 1);
1964 cond_resched();
1965 }
1966 put_online_cpus();
1967
1968 /* Unconditionally decrement: no need to wake ourselves up. */
1969 atomic_dec(&oom_callback_count);
1970
1971 return NOTIFY_OK;
1972}
1973
1974static struct notifier_block rcu_oom_nb = {
1975 .notifier_call = rcu_oom_notify
1976};
1977
1978static int __init rcu_register_oom_notifier(void)
1979{
1980 register_oom_notifier(&rcu_oom_nb);
1981 return 0;
1982}
1983early_initcall(rcu_register_oom_notifier);
1984
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001985#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */
Paul E. McKenneya858af22012-01-16 13:29:10 -08001986
1987#ifdef CONFIG_RCU_CPU_STALL_INFO
1988
1989#ifdef CONFIG_RCU_FAST_NO_HZ
1990
1991static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
1992{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001993 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1994 struct timer_list *tltp = &rdtp->idle_gp_timer;
Paul E. McKenney86f343b2012-09-21 10:41:50 -07001995 char c;
Paul E. McKenneya858af22012-01-16 13:29:10 -08001996
Paul E. McKenney86f343b2012-09-21 10:41:50 -07001997 c = rdtp->dyntick_holdoff == jiffies ? 'H' : '.';
1998 if (timer_pending(tltp))
1999 sprintf(cp, "drain=%d %c timer=%lu",
2000 rdtp->dyntick_drain, c, tltp->expires - jiffies);
2001 else
2002 sprintf(cp, "drain=%d %c timer not pending",
2003 rdtp->dyntick_drain, c);
Paul E. McKenneya858af22012-01-16 13:29:10 -08002004}
2005
2006#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
2007
2008static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2009{
Carsten Emde1c17e4d2012-06-19 10:43:16 +02002010 *cp = '\0';
Paul E. McKenneya858af22012-01-16 13:29:10 -08002011}
2012
2013#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
2014
2015/* Initiate the stall-info list. */
2016static void print_cpu_stall_info_begin(void)
2017{
2018 printk(KERN_CONT "\n");
2019}
2020
2021/*
2022 * Print out diagnostic information for the specified stalled CPU.
2023 *
2024 * If the specified CPU is aware of the current RCU grace period
2025 * (flavor specified by rsp), then print the number of scheduling
2026 * clock interrupts the CPU has taken during the time that it has
2027 * been aware. Otherwise, print the number of RCU grace periods
2028 * that this CPU is ignorant of, for example, "1" if the CPU was
2029 * aware of the previous grace period.
2030 *
2031 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
2032 */
2033static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2034{
2035 char fast_no_hz[72];
2036 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
2037 struct rcu_dynticks *rdtp = rdp->dynticks;
2038 char *ticks_title;
2039 unsigned long ticks_value;
2040
2041 if (rsp->gpnum == rdp->gpnum) {
2042 ticks_title = "ticks this GP";
2043 ticks_value = rdp->ticks_this_gp;
2044 } else {
2045 ticks_title = "GPs behind";
2046 ticks_value = rsp->gpnum - rdp->gpnum;
2047 }
2048 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
2049 printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n",
2050 cpu, ticks_value, ticks_title,
2051 atomic_read(&rdtp->dynticks) & 0xfff,
2052 rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
2053 fast_no_hz);
2054}
2055
2056/* Terminate the stall-info list. */
2057static void print_cpu_stall_info_end(void)
2058{
2059 printk(KERN_ERR "\t");
2060}
2061
2062/* Zero ->ticks_this_gp for all flavors of RCU. */
2063static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2064{
2065 rdp->ticks_this_gp = 0;
2066}
2067
2068/* Increment ->ticks_this_gp for all flavors of RCU. */
2069static void increment_cpu_stall_ticks(void)
2070{
Paul E. McKenney115f7a72012-08-10 13:55:03 -07002071 struct rcu_state *rsp;
2072
2073 for_each_rcu_flavor(rsp)
2074 __this_cpu_ptr(rsp->rda)->ticks_this_gp++;
Paul E. McKenneya858af22012-01-16 13:29:10 -08002075}
2076
2077#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
2078
2079static void print_cpu_stall_info_begin(void)
2080{
2081 printk(KERN_CONT " {");
2082}
2083
2084static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2085{
2086 printk(KERN_CONT " %d", cpu);
2087}
2088
2089static void print_cpu_stall_info_end(void)
2090{
2091 printk(KERN_CONT "} ");
2092}
2093
2094static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2095{
2096}
2097
2098static void increment_cpu_stall_ticks(void)
2099{
2100}
2101
2102#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */