blob: b4e8eb24a5f1584f2406f08b3e8e8c6850dc01a6 [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. McKenneyf41d9112009-08-22 13:56:52 -070029
Mike Galbraith5b61b0b2011-08-19 11:39:11 -070030#define RCU_KTHREAD_PRIO 1
31
32#ifdef CONFIG_RCU_BOOST
33#define RCU_BOOST_PRIO CONFIG_RCU_BOOST_PRIO
34#else
35#define RCU_BOOST_PRIO RCU_KTHREAD_PRIO
36#endif
37
Paul E. McKenney26845c22010-04-13 14:19:23 -070038/*
39 * Check the RCU kernel configuration parameters and print informative
40 * messages about anything out of the ordinary. If you like #ifdef, you
41 * will love this function.
42 */
43static void __init rcu_bootup_announce_oddness(void)
44{
45#ifdef CONFIG_RCU_TRACE
46 printk(KERN_INFO "\tRCU debugfs-based tracing is enabled.\n");
47#endif
48#if (defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 64) || (!defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 32)
49 printk(KERN_INFO "\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
50 CONFIG_RCU_FANOUT);
51#endif
52#ifdef CONFIG_RCU_FANOUT_EXACT
53 printk(KERN_INFO "\tHierarchical RCU autobalancing is disabled.\n");
54#endif
55#ifdef CONFIG_RCU_FAST_NO_HZ
56 printk(KERN_INFO
57 "\tRCU dyntick-idle grace-period acceleration is enabled.\n");
58#endif
59#ifdef CONFIG_PROVE_RCU
60 printk(KERN_INFO "\tRCU lockdep checking is enabled.\n");
61#endif
62#ifdef CONFIG_RCU_TORTURE_TEST_RUNNABLE
63 printk(KERN_INFO "\tRCU torture testing starts during boot.\n");
64#endif
Paul E. McKenney81a294c2010-08-30 09:52:50 -070065#if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE)
Paul E. McKenneya858af22012-01-16 13:29:10 -080066 printk(KERN_INFO "\tDump stacks of tasks blocking RCU-preempt GP.\n");
67#endif
68#if defined(CONFIG_RCU_CPU_STALL_INFO)
69 printk(KERN_INFO "\tAdditional per-CPU info printed with stalls.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070070#endif
71#if NUM_RCU_LVL_4 != 0
Paul E. McKenneycc5df652012-06-15 18:16:00 -070072 printk(KERN_INFO "\tFour-level hierarchy is enabled.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070073#endif
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -070074 if (rcu_fanout_leaf != CONFIG_RCU_FANOUT_LEAF)
75 printk(KERN_INFO "\tExperimental boot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf);
Paul E. McKenneycca6f392012-05-08 21:00:28 -070076 if (nr_cpu_ids != NR_CPUS)
77 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 -070078}
79
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070080#ifdef CONFIG_TREE_PREEMPT_RCU
81
Paul E. McKenney037b64e2012-05-28 23:26:01 -070082struct rcu_state rcu_preempt_state =
83 RCU_STATE_INITIALIZER(rcu_preempt, call_rcu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070084DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
Paul E. McKenney27f4d282011-02-07 12:47:15 -080085static struct rcu_state *rcu_state = &rcu_preempt_state;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070086
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080087static int rcu_preempted_readers_exp(struct rcu_node *rnp);
88
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070089/*
90 * Tell them what RCU they are running.
91 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -080092static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070093{
Paul E. McKenney6cc68792011-03-02 13:15:15 -080094 printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070095 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070096}
97
98/*
99 * Return the number of RCU-preempt batches processed thus far
100 * for debug and statistics.
101 */
102long rcu_batches_completed_preempt(void)
103{
104 return rcu_preempt_state.completed;
105}
106EXPORT_SYMBOL_GPL(rcu_batches_completed_preempt);
107
108/*
109 * Return the number of RCU batches processed thus far for debug & stats.
110 */
111long rcu_batches_completed(void)
112{
113 return rcu_batches_completed_preempt();
114}
115EXPORT_SYMBOL_GPL(rcu_batches_completed);
116
117/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800118 * Force a quiescent state for preemptible RCU.
119 */
120void rcu_force_quiescent_state(void)
121{
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -0700122 force_quiescent_state(&rcu_preempt_state);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800123}
124EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
125
126/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800127 * Record a preemptible-RCU quiescent state for the specified CPU. Note
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700128 * that this just means that the task currently running on the CPU is
129 * not in a quiescent state. There might be any number of tasks blocked
130 * while in an RCU read-side critical section.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700131 *
132 * Unlike the other rcu_*_qs() functions, callers to this function
133 * must disable irqs in order to protect the assignment to
134 * ->rcu_read_unlock_special.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700135 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700136static void rcu_preempt_qs(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700137{
138 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700139
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700140 rdp->passed_quiesce_gpnum = rdp->gpnum;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700141 barrier();
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700142 if (rdp->passed_quiesce == 0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700143 trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs");
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700144 rdp->passed_quiesce = 1;
Paul E. McKenney25502a62010-04-01 17:37:01 -0700145 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700146}
147
148/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700149 * We have entered the scheduler, and the current task might soon be
150 * context-switched away from. If this task is in an RCU read-side
151 * critical section, we will no longer be able to rely on the CPU to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800152 * record that fact, so we enqueue the task on the blkd_tasks list.
153 * The task will dequeue itself when it exits the outermost enclosing
154 * RCU read-side critical section. Therefore, the current grace period
155 * cannot be permitted to complete until the blkd_tasks list entries
156 * predating the current grace period drain, in other words, until
157 * rnp->gp_tasks becomes NULL.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700158 *
159 * Caller must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700160 */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700161static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700162{
163 struct task_struct *t = current;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700164 unsigned long flags;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700165 struct rcu_data *rdp;
166 struct rcu_node *rnp;
167
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700168 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700169 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
170
171 /* Possibly blocking in an RCU read-side critical section. */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700172 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700173 rnp = rdp->mynode;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800174 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700175 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
Paul E. McKenney86848962009-08-27 15:00:12 -0700176 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700177
178 /*
179 * If this CPU has already checked in, then this task
180 * will hold up the next grace period rather than the
181 * current grace period. Queue the task accordingly.
182 * If the task is queued for the current grace period
183 * (i.e., this CPU has not yet passed through a quiescent
184 * state for the current grace period), then as long
185 * as that task remains queued, the current grace period
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800186 * cannot end. Note that there is some uncertainty as
187 * to exactly when the current grace period started.
188 * We take a conservative approach, which can result
189 * in unnecessarily waiting on tasks that started very
190 * slightly after the current grace period began. C'est
191 * la vie!!!
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700192 *
193 * But first, note that the current CPU must still be
194 * on line!
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700195 */
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700196 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700197 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800198 if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) {
199 list_add(&t->rcu_node_entry, rnp->gp_tasks->prev);
200 rnp->gp_tasks = &t->rcu_node_entry;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800201#ifdef CONFIG_RCU_BOOST
202 if (rnp->boost_tasks != NULL)
203 rnp->boost_tasks = rnp->gp_tasks;
204#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800205 } else {
206 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
207 if (rnp->qsmask & rdp->grpmask)
208 rnp->gp_tasks = &t->rcu_node_entry;
209 }
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700210 trace_rcu_preempt_task(rdp->rsp->name,
211 t->pid,
212 (rnp->qsmask & rdp->grpmask)
213 ? rnp->gpnum
214 : rnp->gpnum + 1);
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800215 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700216 } else if (t->rcu_read_lock_nesting < 0 &&
217 t->rcu_read_unlock_special) {
218
219 /*
220 * Complete exit from RCU read-side critical section on
221 * behalf of preempted instance of __rcu_read_unlock().
222 */
223 rcu_read_unlock_special(t);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700224 }
225
226 /*
227 * Either we were not in an RCU read-side critical section to
228 * begin with, or we have now recorded that critical section
229 * globally. Either way, we can now note a quiescent state
230 * for this CPU. Again, if we were in an RCU read-side critical
231 * section, and if that critical section was blocking the current
232 * grace period, then the fact that the task has been enqueued
233 * means that we continue to block the current grace period.
234 */
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700235 local_irq_save(flags);
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700236 rcu_preempt_qs(cpu);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700237 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700238}
239
240/*
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700241 * Check for preempted RCU readers blocking the current grace period
242 * for the specified rcu_node structure. If the caller needs a reliable
243 * answer, it must hold the rcu_node's ->lock.
244 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800245static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700246{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800247 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700248}
249
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800250/*
251 * Record a quiescent state for all tasks that were previously queued
252 * on the specified rcu_node structure and that were blocking the current
253 * RCU grace period. The caller must hold the specified rnp->lock with
254 * irqs disabled, and this lock is released upon return, but irqs remain
255 * disabled.
256 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800257static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800258 __releases(rnp->lock)
259{
260 unsigned long mask;
261 struct rcu_node *rnp_p;
262
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800263 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800264 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800265 return; /* Still need more quiescent states! */
266 }
267
268 rnp_p = rnp->parent;
269 if (rnp_p == NULL) {
270 /*
271 * Either there is only one rcu_node in the tree,
272 * or tasks were kicked up to root rcu_node due to
273 * CPUs going offline.
274 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800275 rcu_report_qs_rsp(&rcu_preempt_state, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800276 return;
277 }
278
279 /* Report up the rest of the hierarchy. */
280 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800281 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
282 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800283 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800284}
285
286/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800287 * Advance a ->blkd_tasks-list pointer to the next entry, instead
288 * returning NULL if at the end of the list.
289 */
290static struct list_head *rcu_next_node_entry(struct task_struct *t,
291 struct rcu_node *rnp)
292{
293 struct list_head *np;
294
295 np = t->rcu_node_entry.next;
296 if (np == &rnp->blkd_tasks)
297 np = NULL;
298 return np;
299}
300
301/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800302 * Handle special cases during rcu_read_unlock(), such as needing to
303 * notify RCU core processing or task having blocked during the RCU
304 * read-side critical section.
305 */
Paul E. McKenney2a3fa842012-05-21 11:58:36 -0700306void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700307{
308 int empty;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800309 int empty_exp;
Paul E. McKenney389abd42011-09-21 14:41:37 -0700310 int empty_exp_now;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700311 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800312 struct list_head *np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700313#ifdef CONFIG_RCU_BOOST
314 struct rt_mutex *rbmp = NULL;
315#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700316 struct rcu_node *rnp;
317 int special;
318
319 /* NMI handlers cannot block and cannot safely manipulate state. */
320 if (in_nmi())
321 return;
322
323 local_irq_save(flags);
324
325 /*
326 * If RCU core is waiting for this CPU to exit critical section,
327 * let it know that we have done so.
328 */
329 special = t->rcu_read_unlock_special;
330 if (special & RCU_READ_UNLOCK_NEED_QS) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700331 rcu_preempt_qs(smp_processor_id());
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700332 }
333
334 /* Hardware IRQ handlers cannot block. */
Peter Zijlstraec433f02011-07-19 15:32:00 -0700335 if (in_irq() || in_serving_softirq()) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700336 local_irq_restore(flags);
337 return;
338 }
339
340 /* Clean up if blocked during RCU read-side critical section. */
341 if (special & RCU_READ_UNLOCK_BLOCKED) {
342 t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED;
343
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700344 /*
345 * Remove this task from the list it blocked on. The
346 * task can migrate while we acquire the lock, but at
347 * most one time. So at most two passes through loop.
348 */
349 for (;;) {
Paul E. McKenney86848962009-08-27 15:00:12 -0700350 rnp = t->rcu_blocked_node;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800351 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700352 if (rnp == t->rcu_blocked_node)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700353 break;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800354 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700355 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800356 empty = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800357 empty_exp = !rcu_preempted_readers_exp(rnp);
358 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800359 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700360 list_del_init(&t->rcu_node_entry);
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700361 t->rcu_blocked_node = NULL;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700362 trace_rcu_unlock_preempted_task("rcu_preempt",
363 rnp->gpnum, t->pid);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800364 if (&t->rcu_node_entry == rnp->gp_tasks)
365 rnp->gp_tasks = np;
366 if (&t->rcu_node_entry == rnp->exp_tasks)
367 rnp->exp_tasks = np;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800368#ifdef CONFIG_RCU_BOOST
369 if (&t->rcu_node_entry == rnp->boost_tasks)
370 rnp->boost_tasks = np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700371 /* Snapshot/clear ->rcu_boost_mutex with rcu_node lock held. */
372 if (t->rcu_boost_mutex) {
373 rbmp = t->rcu_boost_mutex;
374 t->rcu_boost_mutex = NULL;
Paul E. McKenney7765be22011-07-14 12:24:11 -0700375 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800376#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700377
378 /*
379 * If this was the last task on the current list, and if
380 * we aren't waiting on any CPUs, report the quiescent state.
Paul E. McKenney389abd42011-09-21 14:41:37 -0700381 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
382 * so we must take a snapshot of the expedited state.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700383 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700384 empty_exp_now = !rcu_preempted_readers_exp(rnp);
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700385 if (!empty && !rcu_preempt_blocked_readers_cgp(rnp)) {
386 trace_rcu_quiescent_state_report("preempt_rcu",
387 rnp->gpnum,
388 0, rnp->qsmask,
389 rnp->level,
390 rnp->grplo,
391 rnp->grphi,
392 !!rnp->gp_tasks);
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800393 rcu_report_unblock_qs_rnp(rnp, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700394 } else {
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700395 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700396 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800397
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800398#ifdef CONFIG_RCU_BOOST
399 /* Unboost if we were boosted. */
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700400 if (rbmp)
401 rt_mutex_unlock(rbmp);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800402#endif /* #ifdef CONFIG_RCU_BOOST */
403
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800404 /*
405 * If this was the last task on the expedited lists,
406 * then we need to report up the rcu_node hierarchy.
407 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700408 if (!empty_exp && empty_exp_now)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700409 rcu_report_exp_rnp(&rcu_preempt_state, rnp, true);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800410 } else {
411 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700412 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700413}
414
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800415#ifdef CONFIG_RCU_CPU_STALL_VERBOSE
416
417/*
418 * Dump detailed information for all tasks blocking the current RCU
419 * grace period on the specified rcu_node structure.
420 */
421static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
422{
423 unsigned long flags;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800424 struct task_struct *t;
425
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800426 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800427 return;
428 raw_spin_lock_irqsave(&rnp->lock, flags);
429 t = list_entry(rnp->gp_tasks,
430 struct task_struct, rcu_node_entry);
431 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
432 sched_show_task(t);
433 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800434}
435
436/*
437 * Dump detailed information for all tasks blocking the current RCU
438 * grace period.
439 */
440static void rcu_print_detail_task_stall(struct rcu_state *rsp)
441{
442 struct rcu_node *rnp = rcu_get_root(rsp);
443
444 rcu_print_detail_task_stall_rnp(rnp);
445 rcu_for_each_leaf_node(rsp, rnp)
446 rcu_print_detail_task_stall_rnp(rnp);
447}
448
449#else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
450
451static void rcu_print_detail_task_stall(struct rcu_state *rsp)
452{
453}
454
455#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
456
Paul E. McKenneya858af22012-01-16 13:29:10 -0800457#ifdef CONFIG_RCU_CPU_STALL_INFO
458
459static void rcu_print_task_stall_begin(struct rcu_node *rnp)
460{
461 printk(KERN_ERR "\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
462 rnp->level, rnp->grplo, rnp->grphi);
463}
464
465static void rcu_print_task_stall_end(void)
466{
467 printk(KERN_CONT "\n");
468}
469
470#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
471
472static void rcu_print_task_stall_begin(struct rcu_node *rnp)
473{
474}
475
476static void rcu_print_task_stall_end(void)
477{
478}
479
480#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */
481
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700482/*
483 * Scan the current list of tasks blocked within RCU read-side critical
484 * sections, printing out the tid of each.
485 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700486static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700487{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700488 struct task_struct *t;
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700489 int ndetected = 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700490
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800491 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700492 return 0;
Paul E. McKenneya858af22012-01-16 13:29:10 -0800493 rcu_print_task_stall_begin(rnp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800494 t = list_entry(rnp->gp_tasks,
495 struct task_struct, rcu_node_entry);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700496 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenneya858af22012-01-16 13:29:10 -0800497 printk(KERN_CONT " P%d", t->pid);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700498 ndetected++;
499 }
Paul E. McKenneya858af22012-01-16 13:29:10 -0800500 rcu_print_task_stall_end();
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700501 return ndetected;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700502}
503
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700504/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700505 * Check that the list of blocked tasks for the newly completed grace
506 * period is in fact empty. It is a serious bug to complete a grace
507 * period that still has RCU readers blocked! This function must be
508 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
509 * must be held by the caller.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800510 *
511 * Also, if there are blocked tasks on the list, they automatically
512 * block the newly created grace period, so set up ->gp_tasks accordingly.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700513 */
514static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
515{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800516 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800517 if (!list_empty(&rnp->blkd_tasks))
518 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700519 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700520}
521
Paul E. McKenney33f76142009-08-24 09:42:01 -0700522#ifdef CONFIG_HOTPLUG_CPU
523
524/*
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700525 * Handle tasklist migration for case in which all CPUs covered by the
526 * specified rcu_node have gone offline. Move them up to the root
527 * rcu_node. The reason for not just moving them to the immediate
528 * parent is to remove the need for rcu_read_unlock_special() to
529 * make more than two attempts to acquire the target rcu_node's lock.
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800530 * Returns true if there were tasks blocking the current RCU grace
531 * period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700532 *
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700533 * Returns 1 if there was previously a task blocking the current grace
534 * period on the specified rcu_node structure.
535 *
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700536 * The caller must hold rnp->lock with irqs disabled.
537 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700538static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
539 struct rcu_node *rnp,
540 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700541{
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700542 struct list_head *lp;
543 struct list_head *lp_root;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800544 int retval = 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700545 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800546 struct task_struct *t;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700547
Paul E. McKenney86848962009-08-27 15:00:12 -0700548 if (rnp == rnp_root) {
549 WARN_ONCE(1, "Last CPU thought to be offlined?");
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700550 return 0; /* Shouldn't happen: at least one CPU online. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700551 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800552
553 /* If we are on an internal node, complain bitterly. */
554 WARN_ON_ONCE(rnp != rdp->mynode);
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700555
556 /*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800557 * Move tasks up to root rcu_node. Don't try to get fancy for
558 * this corner-case operation -- just put this node's tasks
559 * at the head of the root node's list, and update the root node's
560 * ->gp_tasks and ->exp_tasks pointers to those of this node's,
561 * if non-NULL. This might result in waiting for more tasks than
562 * absolutely necessary, but this is a good performance/complexity
563 * tradeoff.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700564 */
Paul E. McKenney2036d942012-01-30 17:02:47 -0800565 if (rcu_preempt_blocked_readers_cgp(rnp) && rnp->qsmask == 0)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800566 retval |= RCU_OFL_TASKS_NORM_GP;
567 if (rcu_preempted_readers_exp(rnp))
568 retval |= RCU_OFL_TASKS_EXP_GP;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800569 lp = &rnp->blkd_tasks;
570 lp_root = &rnp_root->blkd_tasks;
571 while (!list_empty(lp)) {
572 t = list_entry(lp->next, typeof(*t), rcu_node_entry);
573 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
574 list_del(&t->rcu_node_entry);
575 t->rcu_blocked_node = rnp_root;
576 list_add(&t->rcu_node_entry, lp_root);
577 if (&t->rcu_node_entry == rnp->gp_tasks)
578 rnp_root->gp_tasks = rnp->gp_tasks;
579 if (&t->rcu_node_entry == rnp->exp_tasks)
580 rnp_root->exp_tasks = rnp->exp_tasks;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800581#ifdef CONFIG_RCU_BOOST
582 if (&t->rcu_node_entry == rnp->boost_tasks)
583 rnp_root->boost_tasks = rnp->boost_tasks;
584#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800585 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700586 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800587
588#ifdef CONFIG_RCU_BOOST
589 /* In case root is being boosted and leaf is not. */
590 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
591 if (rnp_root->boost_tasks != NULL &&
592 rnp_root->boost_tasks != rnp_root->gp_tasks)
593 rnp_root->boost_tasks = rnp_root->gp_tasks;
594 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
595#endif /* #ifdef CONFIG_RCU_BOOST */
596
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800597 rnp->gp_tasks = NULL;
598 rnp->exp_tasks = NULL;
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700599 return retval;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700600}
601
Paul E. McKenneye5601402012-01-07 11:03:57 -0800602#endif /* #ifdef CONFIG_HOTPLUG_CPU */
603
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700604/*
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700605 * Check for a quiescent state from the current CPU. When a task blocks,
606 * the task is recorded in the corresponding CPU's rcu_node structure,
607 * which is checked elsewhere.
608 *
609 * Caller must disable hard irqs.
610 */
611static void rcu_preempt_check_callbacks(int cpu)
612{
613 struct task_struct *t = current;
614
615 if (t->rcu_read_lock_nesting == 0) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700616 rcu_preempt_qs(cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700617 return;
618 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700619 if (t->rcu_read_lock_nesting > 0 &&
620 per_cpu(rcu_preempt_data, cpu).qs_pending)
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700621 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700622}
623
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700624#ifdef CONFIG_RCU_BOOST
625
Shaohua Li09223372011-06-14 13:26:25 +0800626static void rcu_preempt_do_callbacks(void)
627{
628 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
629}
630
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700631#endif /* #ifdef CONFIG_RCU_BOOST */
632
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700633/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800634 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700635 */
636void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
637{
Paul E. McKenney486e2592012-01-06 14:11:30 -0800638 __call_rcu(head, func, &rcu_preempt_state, 0);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700639}
640EXPORT_SYMBOL_GPL(call_rcu);
641
Paul E. McKenney486e2592012-01-06 14:11:30 -0800642/*
643 * Queue an RCU callback for lazy invocation after a grace period.
644 * This will likely be later named something like "call_rcu_lazy()",
645 * but this change will require some way of tagging the lazy RCU
646 * callbacks in the list of pending callbacks. Until then, this
647 * function may only be called from __kfree_rcu().
648 */
649void kfree_call_rcu(struct rcu_head *head,
650 void (*func)(struct rcu_head *rcu))
651{
652 __call_rcu(head, func, &rcu_preempt_state, 1);
653}
654EXPORT_SYMBOL_GPL(kfree_call_rcu);
655
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800656/**
657 * synchronize_rcu - wait until a grace period has elapsed.
658 *
659 * Control will return to the caller some time after a full grace
660 * period has elapsed, in other words after all currently executing RCU
Paul E. McKenney77d84852010-07-08 17:38:59 -0700661 * read-side critical sections have completed. Note, however, that
662 * upon return from synchronize_rcu(), the caller might well be executing
663 * concurrently with new RCU read-side critical sections that began while
664 * synchronize_rcu() was waiting. RCU read-side critical sections are
665 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800666 */
667void synchronize_rcu(void)
668{
Paul E. McKenneyfe15d702012-01-04 13:30:33 -0800669 rcu_lockdep_assert(!lock_is_held(&rcu_bh_lock_map) &&
670 !lock_is_held(&rcu_lock_map) &&
671 !lock_is_held(&rcu_sched_lock_map),
672 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800673 if (!rcu_scheduler_active)
674 return;
Paul E. McKenney2c428182011-05-26 22:14:36 -0700675 wait_rcu_gp(call_rcu);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800676}
677EXPORT_SYMBOL_GPL(synchronize_rcu);
678
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800679static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
Paul E. McKenneybcfa57c2012-07-23 16:03:51 -0700680static unsigned long sync_rcu_preempt_exp_count;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800681static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
682
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700683/*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800684 * Return non-zero if there are any tasks in RCU read-side critical
685 * sections blocking the current preemptible-RCU expedited grace period.
686 * If there is no preemptible-RCU expedited grace period currently in
687 * progress, returns zero unconditionally.
688 */
689static int rcu_preempted_readers_exp(struct rcu_node *rnp)
690{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800691 return rnp->exp_tasks != NULL;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800692}
693
694/*
695 * return non-zero if there is no RCU expedited grace period in progress
696 * for the specified rcu_node structure, in other words, if all CPUs and
697 * tasks covered by the specified rcu_node structure have done their bit
698 * for the current expedited grace period. Works only for preemptible
699 * RCU -- other RCU implementation use other means.
700 *
701 * Caller must hold sync_rcu_preempt_exp_mutex.
702 */
703static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
704{
705 return !rcu_preempted_readers_exp(rnp) &&
706 ACCESS_ONCE(rnp->expmask) == 0;
707}
708
709/*
710 * Report the exit from RCU read-side critical section for the last task
711 * that queued itself during or before the current expedited preemptible-RCU
712 * grace period. This event is reported either to the rcu_node structure on
713 * which the task was queued or to one of that rcu_node structure's ancestors,
714 * recursively up the tree. (Calm down, calm down, we do the recursion
715 * iteratively!)
716 *
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700717 * Most callers will set the "wake" flag, but the task initiating the
718 * expedited grace period need not wake itself.
719 *
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800720 * Caller must hold sync_rcu_preempt_exp_mutex.
721 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700722static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
723 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800724{
725 unsigned long flags;
726 unsigned long mask;
727
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800728 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800729 for (;;) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700730 if (!sync_rcu_preempt_exp_done(rnp)) {
731 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800732 break;
Paul E. McKenney131906b2011-07-17 02:05:49 -0700733 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800734 if (rnp->parent == NULL) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700735 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700736 if (wake)
737 wake_up(&sync_rcu_preempt_exp_wq);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800738 break;
739 }
740 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800741 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800742 rnp = rnp->parent;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800743 raw_spin_lock(&rnp->lock); /* irqs already disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800744 rnp->expmask &= ~mask;
745 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800746}
747
748/*
749 * Snapshot the tasks blocking the newly started preemptible-RCU expedited
750 * grace period for the specified rcu_node structure. If there are no such
751 * tasks, report it up the rcu_node hierarchy.
752 *
753 * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock.
754 */
755static void
756sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp)
757{
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700758 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800759 int must_wait = 0;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800760
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700761 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700762 if (list_empty(&rnp->blkd_tasks)) {
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700763 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700764 } else {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800765 rnp->exp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700766 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800767 must_wait = 1;
768 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800769 if (!must_wait)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700770 rcu_report_exp_rnp(rsp, rnp, false); /* Don't wake self. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800771}
772
Paul E. McKenney236fefa2012-01-31 14:00:41 -0800773/**
774 * synchronize_rcu_expedited - Brute-force RCU grace period
775 *
776 * Wait for an RCU-preempt grace period, but expedite it. The basic
777 * idea is to invoke synchronize_sched_expedited() to push all the tasks to
778 * the ->blkd_tasks lists and wait for this list to drain. This consumes
779 * significant time on all CPUs and is unfriendly to real-time workloads,
780 * so is thus not recommended for any sort of common-case code.
781 * In fact, if you are using synchronize_rcu_expedited() in a loop,
782 * please restructure your code to batch your updates, and then Use a
783 * single synchronize_rcu() instead.
784 *
785 * Note that it is illegal to call this function while holding any lock
786 * that is acquired by a CPU-hotplug notifier. And yes, it is also illegal
787 * to call this function from a CPU-hotplug notifier. Failing to observe
788 * these restriction will result in deadlock.
Paul E. McKenney019129d52009-10-14 10:15:56 -0700789 */
790void synchronize_rcu_expedited(void)
791{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800792 unsigned long flags;
793 struct rcu_node *rnp;
794 struct rcu_state *rsp = &rcu_preempt_state;
Paul E. McKenneybcfa57c2012-07-23 16:03:51 -0700795 unsigned long snap;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800796 int trycount = 0;
797
798 smp_mb(); /* Caller's modifications seen first by other CPUs. */
799 snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1;
800 smp_mb(); /* Above access cannot bleed into critical section. */
801
802 /*
Paul E. McKenney1943c892012-07-30 17:19:25 -0700803 * Block CPU-hotplug operations. This means that any CPU-hotplug
804 * operation that finds an rcu_node structure with tasks in the
805 * process of being boosted will know that all tasks blocking
806 * this expedited grace period will already be in the process of
807 * being boosted. This simplifies the process of moving tasks
808 * from leaf to root rcu_node structures.
809 */
810 get_online_cpus();
811
812 /*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800813 * Acquire lock, falling back to synchronize_rcu() if too many
814 * lock-acquisition failures. Of course, if someone does the
815 * expedited grace period for us, just leave.
816 */
817 while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700818 if (ULONG_CMP_LT(snap,
819 ACCESS_ONCE(sync_rcu_preempt_exp_count))) {
820 put_online_cpus();
821 goto mb_ret; /* Others did our work for us. */
822 }
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700823 if (trycount++ < 10) {
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800824 udelay(trycount * num_online_cpus());
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -0700825 } else {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700826 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800827 synchronize_rcu();
828 return;
829 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800830 }
Paul E. McKenney1943c892012-07-30 17:19:25 -0700831 if (ULONG_CMP_LT(snap, ACCESS_ONCE(sync_rcu_preempt_exp_count))) {
832 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800833 goto unlock_mb_ret; /* Others did our work for us. */
Paul E. McKenney1943c892012-07-30 17:19:25 -0700834 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800835
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800836 /* force all RCU readers onto ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800837 synchronize_sched_expedited();
838
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800839 /* Initialize ->expmask for all non-leaf rcu_node structures. */
840 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
Paul E. McKenney1943c892012-07-30 17:19:25 -0700841 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800842 rnp->expmask = rnp->qsmaskinit;
Paul E. McKenney1943c892012-07-30 17:19:25 -0700843 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800844 }
845
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800846 /* Snapshot current state of ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800847 rcu_for_each_leaf_node(rsp, rnp)
848 sync_rcu_preempt_exp_init(rsp, rnp);
849 if (NUM_RCU_NODES > 1)
850 sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp));
851
Paul E. McKenney1943c892012-07-30 17:19:25 -0700852 put_online_cpus();
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800853
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800854 /* Wait for snapshotted ->blkd_tasks lists to drain. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800855 rnp = rcu_get_root(rsp);
856 wait_event(sync_rcu_preempt_exp_wq,
857 sync_rcu_preempt_exp_done(rnp));
858
859 /* Clean up and exit. */
860 smp_mb(); /* ensure expedited GP seen before counter increment. */
861 ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
862unlock_mb_ret:
863 mutex_unlock(&sync_rcu_preempt_exp_mutex);
864mb_ret:
865 smp_mb(); /* ensure subsequent action seen after grace period. */
Paul E. McKenney019129d52009-10-14 10:15:56 -0700866}
867EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
868
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700869/**
870 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
871 */
872void rcu_barrier(void)
873{
Paul E. McKenney037b64e2012-05-28 23:26:01 -0700874 _rcu_barrier(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700875}
876EXPORT_SYMBOL_GPL(rcu_barrier);
877
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700878/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800879 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700880 */
881static void __init __rcu_init_preempt(void)
882{
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800883 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700884}
885
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700886#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
887
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800888static struct rcu_state *rcu_state = &rcu_sched_state;
889
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700890/*
891 * Tell them what RCU they are running.
892 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800893static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700894{
895 printk(KERN_INFO "Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700896 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700897}
898
899/*
900 * Return the number of RCU batches processed thus far for debug & stats.
901 */
902long rcu_batches_completed(void)
903{
904 return rcu_batches_completed_sched();
905}
906EXPORT_SYMBOL_GPL(rcu_batches_completed);
907
908/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800909 * Force a quiescent state for RCU, which, because there is no preemptible
910 * RCU, becomes the same as rcu-sched.
911 */
912void rcu_force_quiescent_state(void)
913{
914 rcu_sched_force_quiescent_state();
915}
916EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
917
918/*
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700919 * Because preemptible RCU does not exist, we never have to check for
920 * CPUs being in quiescent states.
921 */
922static void rcu_preempt_note_context_switch(int cpu)
923{
924}
925
926/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800927 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700928 * RCU readers.
929 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800930static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d42009-09-23 09:50:41 -0700931{
932 return 0;
933}
934
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800935#ifdef CONFIG_HOTPLUG_CPU
936
937/* Because preemptible RCU does not exist, no quieting of tasks. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800938static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800939{
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800940 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800941}
942
943#endif /* #ifdef CONFIG_HOTPLUG_CPU */
944
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700945/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800946 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700947 * tasks blocked within RCU read-side critical sections.
948 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800949static void rcu_print_detail_task_stall(struct rcu_state *rsp)
950{
951}
952
953/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800954 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800955 * tasks blocked within RCU read-side critical sections.
956 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700957static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700958{
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700959 return 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700960}
961
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700962/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800963 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -0700964 * so there is no need to check for blocked tasks. So check only for
965 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700966 */
967static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
968{
Paul E. McKenney49e29122009-09-18 09:50:19 -0700969 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700970}
971
Paul E. McKenney33f76142009-08-24 09:42:01 -0700972#ifdef CONFIG_HOTPLUG_CPU
973
974/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800975 * Because preemptible RCU does not exist, it never needs to migrate
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700976 * tasks that were blocked within RCU read-side critical sections, and
977 * such non-existent tasks cannot possibly have been blocking the current
978 * grace period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700979 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700980static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
981 struct rcu_node *rnp,
982 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700983{
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700984 return 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700985}
986
Paul E. McKenneye5601402012-01-07 11:03:57 -0800987#endif /* #ifdef CONFIG_HOTPLUG_CPU */
988
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700989/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800990 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700991 * to check.
992 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700993static void rcu_preempt_check_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700994{
995}
996
997/*
Paul E. McKenney486e2592012-01-06 14:11:30 -0800998 * Queue an RCU callback for lazy invocation after a grace period.
999 * This will likely be later named something like "call_rcu_lazy()",
1000 * but this change will require some way of tagging the lazy RCU
1001 * callbacks in the list of pending callbacks. Until then, this
1002 * function may only be called from __kfree_rcu().
1003 *
1004 * Because there is no preemptible RCU, we use RCU-sched instead.
1005 */
1006void kfree_call_rcu(struct rcu_head *head,
1007 void (*func)(struct rcu_head *rcu))
1008{
1009 __call_rcu(head, func, &rcu_sched_state, 1);
1010}
1011EXPORT_SYMBOL_GPL(kfree_call_rcu);
1012
1013/*
Paul E. McKenney019129d52009-10-14 10:15:56 -07001014 * Wait for an rcu-preempt grace period, but make it happen quickly.
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001015 * But because preemptible RCU does not exist, map to rcu-sched.
Paul E. McKenney019129d52009-10-14 10:15:56 -07001016 */
1017void synchronize_rcu_expedited(void)
1018{
1019 synchronize_sched_expedited();
1020}
1021EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1022
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001023#ifdef CONFIG_HOTPLUG_CPU
1024
1025/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001026 * Because preemptible RCU does not exist, there is never any need to
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001027 * report on tasks preempted in RCU read-side critical sections during
1028 * expedited RCU grace periods.
1029 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -07001030static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
1031 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001032{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001033}
1034
1035#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1036
Paul E. McKenney019129d52009-10-14 10:15:56 -07001037/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001038 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001039 * another name for rcu_barrier_sched().
1040 */
1041void rcu_barrier(void)
1042{
1043 rcu_barrier_sched();
1044}
1045EXPORT_SYMBOL_GPL(rcu_barrier);
1046
1047/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001048 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001049 */
1050static void __init __rcu_init_preempt(void)
1051{
1052}
1053
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001054#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001055
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001056#ifdef CONFIG_RCU_BOOST
1057
1058#include "rtmutex_common.h"
1059
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001060#ifdef CONFIG_RCU_TRACE
1061
1062static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1063{
1064 if (list_empty(&rnp->blkd_tasks))
1065 rnp->n_balk_blkd_tasks++;
1066 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1067 rnp->n_balk_exp_gp_tasks++;
1068 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1069 rnp->n_balk_boost_tasks++;
1070 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1071 rnp->n_balk_notblocked++;
1072 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -07001073 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001074 rnp->n_balk_notyet++;
1075 else
1076 rnp->n_balk_nos++;
1077}
1078
1079#else /* #ifdef CONFIG_RCU_TRACE */
1080
1081static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1082{
1083}
1084
1085#endif /* #else #ifdef CONFIG_RCU_TRACE */
1086
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001087/*
1088 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1089 * or ->boost_tasks, advancing the pointer to the next task in the
1090 * ->blkd_tasks list.
1091 *
1092 * Note that irqs must be enabled: boosting the task can block.
1093 * Returns 1 if there are more tasks needing to be boosted.
1094 */
1095static int rcu_boost(struct rcu_node *rnp)
1096{
1097 unsigned long flags;
1098 struct rt_mutex mtx;
1099 struct task_struct *t;
1100 struct list_head *tb;
1101
1102 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1103 return 0; /* Nothing left to boost. */
1104
1105 raw_spin_lock_irqsave(&rnp->lock, flags);
1106
1107 /*
1108 * Recheck under the lock: all tasks in need of boosting
1109 * might exit their RCU read-side critical sections on their own.
1110 */
1111 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1112 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1113 return 0;
1114 }
1115
1116 /*
1117 * Preferentially boost tasks blocking expedited grace periods.
1118 * This cannot starve the normal grace periods because a second
1119 * expedited grace period must boost all blocked tasks, including
1120 * those blocking the pre-existing normal grace period.
1121 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001122 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001123 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001124 rnp->n_exp_boosts++;
1125 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001126 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001127 rnp->n_normal_boosts++;
1128 }
1129 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001130
1131 /*
1132 * We boost task t by manufacturing an rt_mutex that appears to
1133 * be held by task t. We leave a pointer to that rt_mutex where
1134 * task t can find it, and task t will release the mutex when it
1135 * exits its outermost RCU read-side critical section. Then
1136 * simply acquiring this artificial rt_mutex will boost task
1137 * t's priority. (Thanks to tglx for suggesting this approach!)
1138 *
1139 * Note that task t must acquire rnp->lock to remove itself from
1140 * the ->blkd_tasks list, which it will do from exit() if from
1141 * nowhere else. We therefore are guaranteed that task t will
1142 * stay around at least until we drop rnp->lock. Note that
1143 * rnp->lock also resolves races between our priority boosting
1144 * and task t's exiting its outermost RCU read-side critical
1145 * section.
1146 */
1147 t = container_of(tb, struct task_struct, rcu_node_entry);
1148 rt_mutex_init_proxy_locked(&mtx, t);
1149 t->rcu_boost_mutex = &mtx;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001150 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1151 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1152 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1153
Paul E. McKenney4f89b332011-12-09 14:43:47 -08001154 return ACCESS_ONCE(rnp->exp_tasks) != NULL ||
1155 ACCESS_ONCE(rnp->boost_tasks) != NULL;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001156}
1157
1158/*
1159 * Timer handler to initiate waking up of boost kthreads that
1160 * have yielded the CPU due to excessive numbers of tasks to
1161 * boost. We wake up the per-rcu_node kthread, which in turn
1162 * will wake up the booster kthread.
1163 */
1164static void rcu_boost_kthread_timer(unsigned long arg)
1165{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001166 invoke_rcu_node_kthread((struct rcu_node *)arg);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001167}
1168
1169/*
1170 * Priority-boosting kthread. One per leaf rcu_node and one for the
1171 * root rcu_node.
1172 */
1173static int rcu_boost_kthread(void *arg)
1174{
1175 struct rcu_node *rnp = (struct rcu_node *)arg;
1176 int spincnt = 0;
1177 int more2boost;
1178
Paul E. McKenney385680a2011-06-21 22:43:26 -07001179 trace_rcu_utilization("Start boost kthread@init");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001180 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001181 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001182 trace_rcu_utilization("End boost kthread@rcu_wait");
Peter Zijlstra08bca602011-05-20 16:06:29 -07001183 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001184 trace_rcu_utilization("Start boost kthread@rcu_wait");
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001185 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001186 more2boost = rcu_boost(rnp);
1187 if (more2boost)
1188 spincnt++;
1189 else
1190 spincnt = 0;
1191 if (spincnt > 10) {
Paul E. McKenney385680a2011-06-21 22:43:26 -07001192 trace_rcu_utilization("End boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001193 rcu_yield(rcu_boost_kthread_timer, (unsigned long)rnp);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001194 trace_rcu_utilization("Start boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001195 spincnt = 0;
1196 }
1197 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001198 /* NOTREACHED */
Paul E. McKenney385680a2011-06-21 22:43:26 -07001199 trace_rcu_utilization("End boost kthread@notreached");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001200 return 0;
1201}
1202
1203/*
1204 * Check to see if it is time to start boosting RCU readers that are
1205 * blocking the current grace period, and, if so, tell the per-rcu_node
1206 * kthread to start boosting them. If there is an expedited grace
1207 * period in progress, it is always time to boost.
1208 *
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001209 * The caller must hold rnp->lock, which this function releases,
1210 * but irqs remain disabled. The ->boost_kthread_task is immortal,
1211 * so we don't need to worry about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001212 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001213static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001214{
1215 struct task_struct *t;
1216
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001217 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1218 rnp->n_balk_exp_gp_tasks++;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001219 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001220 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001221 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001222 if (rnp->exp_tasks != NULL ||
1223 (rnp->gp_tasks != NULL &&
1224 rnp->boost_tasks == NULL &&
1225 rnp->qsmask == 0 &&
1226 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1227 if (rnp->exp_tasks == NULL)
1228 rnp->boost_tasks = rnp->gp_tasks;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001229 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001230 t = rnp->boost_kthread_task;
1231 if (t != NULL)
1232 wake_up_process(t);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001233 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001234 rcu_initiate_boost_trace(rnp);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001235 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1236 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001237}
1238
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001239/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001240 * Wake up the per-CPU kthread to invoke RCU callbacks.
1241 */
1242static void invoke_rcu_callbacks_kthread(void)
1243{
1244 unsigned long flags;
1245
1246 local_irq_save(flags);
1247 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001248 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
1249 current != __this_cpu_read(rcu_cpu_kthread_task))
1250 wake_up_process(__this_cpu_read(rcu_cpu_kthread_task));
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001251 local_irq_restore(flags);
1252}
1253
1254/*
Paul E. McKenneydff16722011-11-29 15:57:13 -08001255 * Is the current CPU running the RCU-callbacks kthread?
1256 * Caller must have preemption disabled.
1257 */
1258static bool rcu_is_callbacks_kthread(void)
1259{
1260 return __get_cpu_var(rcu_cpu_kthread_task) == current;
1261}
1262
1263/*
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001264 * Set the affinity of the boost kthread. The CPU-hotplug locks are
1265 * held, so no one should be messing with the existence of the boost
1266 * kthread.
1267 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001268static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp,
1269 cpumask_var_t cm)
1270{
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001271 struct task_struct *t;
1272
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001273 t = rnp->boost_kthread_task;
1274 if (t != NULL)
1275 set_cpus_allowed_ptr(rnp->boost_kthread_task, cm);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001276}
1277
1278#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1279
1280/*
1281 * Do priority-boost accounting for the start of a new grace period.
1282 */
1283static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1284{
1285 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1286}
1287
1288/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001289 * Create an RCU-boost kthread for the specified node if one does not
1290 * already exist. We only create this kthread for preemptible RCU.
1291 * Returns zero if all is well, a negated errno otherwise.
1292 */
1293static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
1294 struct rcu_node *rnp,
1295 int rnp_index)
1296{
1297 unsigned long flags;
1298 struct sched_param sp;
1299 struct task_struct *t;
1300
1301 if (&rcu_preempt_state != rsp)
1302 return 0;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001303 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001304 if (rnp->boost_kthread_task != NULL)
1305 return 0;
1306 t = kthread_create(rcu_boost_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001307 "rcub/%d", rnp_index);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001308 if (IS_ERR(t))
1309 return PTR_ERR(t);
1310 raw_spin_lock_irqsave(&rnp->lock, flags);
1311 rnp->boost_kthread_task = t;
1312 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001313 sp.sched_priority = RCU_BOOST_PRIO;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001314 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001315 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001316 return 0;
1317}
1318
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001319#ifdef CONFIG_HOTPLUG_CPU
1320
1321/*
1322 * Stop the RCU's per-CPU kthread when its CPU goes offline,.
1323 */
1324static void rcu_stop_cpu_kthread(int cpu)
1325{
1326 struct task_struct *t;
1327
1328 /* Stop the CPU's kthread. */
1329 t = per_cpu(rcu_cpu_kthread_task, cpu);
1330 if (t != NULL) {
1331 per_cpu(rcu_cpu_kthread_task, cpu) = NULL;
1332 kthread_stop(t);
1333 }
1334}
1335
1336#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1337
1338static void rcu_kthread_do_work(void)
1339{
1340 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1341 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1342 rcu_preempt_do_callbacks();
1343}
1344
1345/*
1346 * Wake up the specified per-rcu_node-structure kthread.
1347 * Because the per-rcu_node kthreads are immortal, we don't need
1348 * to do anything to keep them alive.
1349 */
1350static void invoke_rcu_node_kthread(struct rcu_node *rnp)
1351{
1352 struct task_struct *t;
1353
1354 t = rnp->node_kthread_task;
1355 if (t != NULL)
1356 wake_up_process(t);
1357}
1358
1359/*
1360 * Set the specified CPU's kthread to run RT or not, as specified by
1361 * the to_rt argument. The CPU-hotplug locks are held, so the task
1362 * is not going away.
1363 */
1364static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1365{
1366 int policy;
1367 struct sched_param sp;
1368 struct task_struct *t;
1369
1370 t = per_cpu(rcu_cpu_kthread_task, cpu);
1371 if (t == NULL)
1372 return;
1373 if (to_rt) {
1374 policy = SCHED_FIFO;
1375 sp.sched_priority = RCU_KTHREAD_PRIO;
1376 } else {
1377 policy = SCHED_NORMAL;
1378 sp.sched_priority = 0;
1379 }
1380 sched_setscheduler_nocheck(t, policy, &sp);
1381}
1382
1383/*
1384 * Timer handler to initiate the waking up of per-CPU kthreads that
1385 * have yielded the CPU due to excess numbers of RCU callbacks.
1386 * We wake up the per-rcu_node kthread, which in turn will wake up
1387 * the booster kthread.
1388 */
1389static void rcu_cpu_kthread_timer(unsigned long arg)
1390{
1391 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, arg);
1392 struct rcu_node *rnp = rdp->mynode;
1393
1394 atomic_or(rdp->grpmask, &rnp->wakemask);
1395 invoke_rcu_node_kthread(rnp);
1396}
1397
1398/*
1399 * Drop to non-real-time priority and yield, but only after posting a
1400 * timer that will cause us to regain our real-time priority if we
1401 * remain preempted. Either way, we restore our real-time priority
1402 * before returning.
1403 */
1404static void rcu_yield(void (*f)(unsigned long), unsigned long arg)
1405{
1406 struct sched_param sp;
1407 struct timer_list yield_timer;
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001408 int prio = current->rt_priority;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001409
1410 setup_timer_on_stack(&yield_timer, f, arg);
1411 mod_timer(&yield_timer, jiffies + 2);
1412 sp.sched_priority = 0;
1413 sched_setscheduler_nocheck(current, SCHED_NORMAL, &sp);
1414 set_user_nice(current, 19);
1415 schedule();
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001416 set_user_nice(current, 0);
1417 sp.sched_priority = prio;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001418 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
1419 del_timer(&yield_timer);
1420}
1421
1422/*
1423 * Handle cases where the rcu_cpu_kthread() ends up on the wrong CPU.
1424 * This can happen while the corresponding CPU is either coming online
1425 * or going offline. We cannot wait until the CPU is fully online
1426 * before starting the kthread, because the various notifier functions
1427 * can wait for RCU grace periods. So we park rcu_cpu_kthread() until
1428 * the corresponding CPU is online.
1429 *
1430 * Return 1 if the kthread needs to stop, 0 otherwise.
1431 *
1432 * Caller must disable bh. This function can momentarily enable it.
1433 */
1434static int rcu_cpu_kthread_should_stop(int cpu)
1435{
1436 while (cpu_is_offline(cpu) ||
1437 !cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)) ||
1438 smp_processor_id() != cpu) {
1439 if (kthread_should_stop())
1440 return 1;
1441 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1442 per_cpu(rcu_cpu_kthread_cpu, cpu) = raw_smp_processor_id();
1443 local_bh_enable();
1444 schedule_timeout_uninterruptible(1);
1445 if (!cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)))
1446 set_cpus_allowed_ptr(current, cpumask_of(cpu));
1447 local_bh_disable();
1448 }
1449 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1450 return 0;
1451}
1452
1453/*
1454 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07001455 * RCU softirq used in flavors and configurations of RCU that do not
1456 * support RCU priority boosting.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001457 */
1458static int rcu_cpu_kthread(void *arg)
1459{
1460 int cpu = (int)(long)arg;
1461 unsigned long flags;
1462 int spincnt = 0;
1463 unsigned int *statusp = &per_cpu(rcu_cpu_kthread_status, cpu);
1464 char work;
1465 char *workp = &per_cpu(rcu_cpu_has_work, cpu);
1466
Paul E. McKenney385680a2011-06-21 22:43:26 -07001467 trace_rcu_utilization("Start CPU kthread@init");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001468 for (;;) {
1469 *statusp = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001470 trace_rcu_utilization("End CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001471 rcu_wait(*workp != 0 || kthread_should_stop());
Paul E. McKenney385680a2011-06-21 22:43:26 -07001472 trace_rcu_utilization("Start CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001473 local_bh_disable();
1474 if (rcu_cpu_kthread_should_stop(cpu)) {
1475 local_bh_enable();
1476 break;
1477 }
1478 *statusp = RCU_KTHREAD_RUNNING;
1479 per_cpu(rcu_cpu_kthread_loops, cpu)++;
1480 local_irq_save(flags);
1481 work = *workp;
1482 *workp = 0;
1483 local_irq_restore(flags);
1484 if (work)
1485 rcu_kthread_do_work();
1486 local_bh_enable();
1487 if (*workp != 0)
1488 spincnt++;
1489 else
1490 spincnt = 0;
1491 if (spincnt > 10) {
1492 *statusp = RCU_KTHREAD_YIELDING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001493 trace_rcu_utilization("End CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001494 rcu_yield(rcu_cpu_kthread_timer, (unsigned long)cpu);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001495 trace_rcu_utilization("Start CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001496 spincnt = 0;
1497 }
1498 }
1499 *statusp = RCU_KTHREAD_STOPPED;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001500 trace_rcu_utilization("End CPU kthread@term");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001501 return 0;
1502}
1503
1504/*
1505 * Spawn a per-CPU kthread, setting up affinity and priority.
1506 * Because the CPU hotplug lock is held, no other CPU will be attempting
1507 * to manipulate rcu_cpu_kthread_task. There might be another CPU
1508 * attempting to access it during boot, but the locking in kthread_bind()
1509 * will enforce sufficient ordering.
1510 *
1511 * Please note that we cannot simply refuse to wake up the per-CPU
1512 * kthread because kthreads are created in TASK_UNINTERRUPTIBLE state,
1513 * which can result in softlockup complaints if the task ends up being
1514 * idle for more than a couple of minutes.
1515 *
1516 * However, please note also that we cannot bind the per-CPU kthread to its
1517 * CPU until that CPU is fully online. We also cannot wait until the
1518 * CPU is fully online before we create its per-CPU kthread, as this would
1519 * deadlock the system when CPU notifiers tried waiting for grace
1520 * periods. So we bind the per-CPU kthread to its CPU only if the CPU
1521 * is online. If its CPU is not yet fully online, then the code in
1522 * rcu_cpu_kthread() will wait until it is fully online, and then do
1523 * the binding.
1524 */
1525static int __cpuinit rcu_spawn_one_cpu_kthread(int cpu)
1526{
1527 struct sched_param sp;
1528 struct task_struct *t;
1529
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001530 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001531 per_cpu(rcu_cpu_kthread_task, cpu) != NULL)
1532 return 0;
Eric Dumazet1f288092011-06-16 15:53:18 -07001533 t = kthread_create_on_node(rcu_cpu_kthread,
1534 (void *)(long)cpu,
1535 cpu_to_node(cpu),
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001536 "rcuc/%d", cpu);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001537 if (IS_ERR(t))
1538 return PTR_ERR(t);
1539 if (cpu_online(cpu))
1540 kthread_bind(t, cpu);
1541 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1542 WARN_ON_ONCE(per_cpu(rcu_cpu_kthread_task, cpu) != NULL);
1543 sp.sched_priority = RCU_KTHREAD_PRIO;
1544 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1545 per_cpu(rcu_cpu_kthread_task, cpu) = t;
1546 wake_up_process(t); /* Get to TASK_INTERRUPTIBLE quickly. */
1547 return 0;
1548}
1549
1550/*
1551 * Per-rcu_node kthread, which is in charge of waking up the per-CPU
1552 * kthreads when needed. We ignore requests to wake up kthreads
1553 * for offline CPUs, which is OK because force_quiescent_state()
1554 * takes care of this case.
1555 */
1556static int rcu_node_kthread(void *arg)
1557{
1558 int cpu;
1559 unsigned long flags;
1560 unsigned long mask;
1561 struct rcu_node *rnp = (struct rcu_node *)arg;
1562 struct sched_param sp;
1563 struct task_struct *t;
1564
1565 for (;;) {
1566 rnp->node_kthread_status = RCU_KTHREAD_WAITING;
1567 rcu_wait(atomic_read(&rnp->wakemask) != 0);
1568 rnp->node_kthread_status = RCU_KTHREAD_RUNNING;
1569 raw_spin_lock_irqsave(&rnp->lock, flags);
1570 mask = atomic_xchg(&rnp->wakemask, 0);
1571 rcu_initiate_boost(rnp, flags); /* releases rnp->lock. */
1572 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1) {
1573 if ((mask & 0x1) == 0)
1574 continue;
1575 preempt_disable();
1576 t = per_cpu(rcu_cpu_kthread_task, cpu);
1577 if (!cpu_online(cpu) || t == NULL) {
1578 preempt_enable();
1579 continue;
1580 }
1581 per_cpu(rcu_cpu_has_work, cpu) = 1;
1582 sp.sched_priority = RCU_KTHREAD_PRIO;
1583 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1584 preempt_enable();
1585 }
1586 }
1587 /* NOTREACHED */
1588 rnp->node_kthread_status = RCU_KTHREAD_STOPPED;
1589 return 0;
1590}
1591
1592/*
1593 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1594 * served by the rcu_node in question. The CPU hotplug lock is still
1595 * held, so the value of rnp->qsmaskinit will be stable.
1596 *
1597 * We don't include outgoingcpu in the affinity set, use -1 if there is
1598 * no outgoing CPU. If there are no CPUs left in the affinity set,
1599 * this function allows the kthread to execute on any CPU.
1600 */
1601static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1602{
1603 cpumask_var_t cm;
1604 int cpu;
1605 unsigned long mask = rnp->qsmaskinit;
1606
1607 if (rnp->node_kthread_task == NULL)
1608 return;
1609 if (!alloc_cpumask_var(&cm, GFP_KERNEL))
1610 return;
1611 cpumask_clear(cm);
1612 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1613 if ((mask & 0x1) && cpu != outgoingcpu)
1614 cpumask_set_cpu(cpu, cm);
1615 if (cpumask_weight(cm) == 0) {
1616 cpumask_setall(cm);
1617 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1618 cpumask_clear_cpu(cpu, cm);
1619 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1620 }
1621 set_cpus_allowed_ptr(rnp->node_kthread_task, cm);
1622 rcu_boost_kthread_setaffinity(rnp, cm);
1623 free_cpumask_var(cm);
1624}
1625
1626/*
1627 * Spawn a per-rcu_node kthread, setting priority and affinity.
1628 * Called during boot before online/offline can happen, or, if
1629 * during runtime, with the main CPU-hotplug locks held. So only
1630 * one of these can be executing at a time.
1631 */
1632static int __cpuinit rcu_spawn_one_node_kthread(struct rcu_state *rsp,
1633 struct rcu_node *rnp)
1634{
1635 unsigned long flags;
1636 int rnp_index = rnp - &rsp->node[0];
1637 struct sched_param sp;
1638 struct task_struct *t;
1639
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001640 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001641 rnp->qsmaskinit == 0)
1642 return 0;
1643 if (rnp->node_kthread_task == NULL) {
1644 t = kthread_create(rcu_node_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001645 "rcun/%d", rnp_index);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001646 if (IS_ERR(t))
1647 return PTR_ERR(t);
1648 raw_spin_lock_irqsave(&rnp->lock, flags);
1649 rnp->node_kthread_task = t;
1650 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1651 sp.sched_priority = 99;
1652 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1653 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
1654 }
1655 return rcu_spawn_one_boost_kthread(rsp, rnp, rnp_index);
1656}
1657
1658/*
1659 * Spawn all kthreads -- called as soon as the scheduler is running.
1660 */
1661static int __init rcu_spawn_kthreads(void)
1662{
1663 int cpu;
1664 struct rcu_node *rnp;
1665
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001666 rcu_scheduler_fully_active = 1;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001667 for_each_possible_cpu(cpu) {
1668 per_cpu(rcu_cpu_has_work, cpu) = 0;
1669 if (cpu_online(cpu))
1670 (void)rcu_spawn_one_cpu_kthread(cpu);
1671 }
1672 rnp = rcu_get_root(rcu_state);
1673 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1674 if (NUM_RCU_NODES > 1) {
1675 rcu_for_each_leaf_node(rcu_state, rnp)
1676 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1677 }
1678 return 0;
1679}
1680early_initcall(rcu_spawn_kthreads);
1681
1682static void __cpuinit rcu_prepare_kthreads(int cpu)
1683{
1684 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1685 struct rcu_node *rnp = rdp->mynode;
1686
1687 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001688 if (rcu_scheduler_fully_active) {
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001689 (void)rcu_spawn_one_cpu_kthread(cpu);
1690 if (rnp->node_kthread_task == NULL)
1691 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1692 }
1693}
1694
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001695#else /* #ifdef CONFIG_RCU_BOOST */
1696
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001697static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001698{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001699 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001700}
1701
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001702static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001703{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001704 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001705}
1706
Paul E. McKenneydff16722011-11-29 15:57:13 -08001707static bool rcu_is_callbacks_kthread(void)
1708{
1709 return false;
1710}
1711
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001712static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1713{
1714}
1715
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001716#ifdef CONFIG_HOTPLUG_CPU
1717
1718static void rcu_stop_cpu_kthread(int cpu)
1719{
1720}
1721
1722#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1723
1724static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1725{
1726}
1727
1728static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1729{
1730}
1731
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001732static int __init rcu_scheduler_really_started(void)
1733{
1734 rcu_scheduler_fully_active = 1;
1735 return 0;
1736}
1737early_initcall(rcu_scheduler_really_started);
1738
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001739static void __cpuinit rcu_prepare_kthreads(int cpu)
1740{
1741}
1742
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001743#endif /* #else #ifdef CONFIG_RCU_BOOST */
1744
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001745#if !defined(CONFIG_RCU_FAST_NO_HZ)
1746
1747/*
1748 * Check to see if any future RCU-related work will need to be done
1749 * by the current CPU, even if none need be done immediately, returning
1750 * 1 if so. This function is part of the RCU implementation; it is -not-
1751 * an exported member of the RCU API.
1752 *
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001753 * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
1754 * any flavor of RCU.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001755 */
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001756int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001757{
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001758 *delta_jiffies = ULONG_MAX;
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001759 return rcu_cpu_has_callbacks(cpu);
1760}
1761
1762/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001763 * Because we do not have RCU_FAST_NO_HZ, don't bother initializing for it.
1764 */
1765static void rcu_prepare_for_idle_init(int cpu)
1766{
1767}
1768
1769/*
1770 * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
1771 * after it.
1772 */
1773static void rcu_cleanup_after_idle(int cpu)
1774{
1775}
1776
1777/*
Paul E. McKenneya858af22012-01-16 13:29:10 -08001778 * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n,
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001779 * is nothing.
1780 */
1781static void rcu_prepare_for_idle(int cpu)
1782{
1783}
1784
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001785/*
1786 * Don't bother keeping a running count of the number of RCU callbacks
1787 * posted because CONFIG_RCU_FAST_NO_HZ=n.
1788 */
1789static void rcu_idle_count_callbacks_posted(void)
1790{
1791}
1792
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001793#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1794
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001795/*
1796 * This code is invoked when a CPU goes idle, at which point we want
1797 * to have the CPU do everything required for RCU so that it can enter
1798 * the energy-efficient dyntick-idle mode. This is handled by a
1799 * state machine implemented by rcu_prepare_for_idle() below.
1800 *
1801 * The following three proprocessor symbols control this state machine:
1802 *
1803 * RCU_IDLE_FLUSHES gives the maximum number of times that we will attempt
1804 * to satisfy RCU. Beyond this point, it is better to incur a periodic
1805 * scheduling-clock interrupt than to loop through the state machine
1806 * at full power.
1807 * RCU_IDLE_OPT_FLUSHES gives the number of RCU_IDLE_FLUSHES that are
1808 * optional if RCU does not need anything immediately from this
1809 * CPU, even if this CPU still has RCU callbacks queued. The first
1810 * times through the state machine are mandatory: we need to give
1811 * the state machine a chance to communicate a quiescent state
1812 * to the RCU core.
1813 * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted
1814 * to sleep in dyntick-idle mode with RCU callbacks pending. This
1815 * is sized to be roughly one RCU grace period. Those energy-efficiency
1816 * benchmarkers who might otherwise be tempted to set this to a large
1817 * number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your
1818 * system. And if you are -that- concerned about energy efficiency,
1819 * just power the system down and be done with it!
Paul E. McKenney778d2502012-01-10 14:13:24 -08001820 * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is
1821 * permitted to sleep in dyntick-idle mode with only lazy RCU
1822 * callbacks pending. Setting this too high can OOM your system.
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001823 *
1824 * The values below work well in practice. If future workloads require
1825 * adjustment, they can be converted into kernel config parameters, though
1826 * making the state machine smarter might be a better option.
1827 */
1828#define RCU_IDLE_FLUSHES 5 /* Number of dyntick-idle tries. */
1829#define RCU_IDLE_OPT_FLUSHES 3 /* Optional dyntick-idle tries. */
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001830#define RCU_IDLE_GP_DELAY 4 /* Roughly one grace period. */
Paul E. McKenney778d2502012-01-10 14:13:24 -08001831#define RCU_IDLE_LAZY_GP_DELAY (6 * HZ) /* Roughly six seconds. */
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001832
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001833extern int tick_nohz_enabled;
1834
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001835/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08001836 * Does the specified flavor of RCU have non-lazy callbacks pending on
1837 * the specified CPU? Both RCU flavor and CPU are specified by the
1838 * rcu_data structure.
1839 */
1840static bool __rcu_cpu_has_nonlazy_callbacks(struct rcu_data *rdp)
1841{
1842 return rdp->qlen != rdp->qlen_lazy;
1843}
1844
1845#ifdef CONFIG_TREE_PREEMPT_RCU
1846
1847/*
1848 * Are there non-lazy RCU-preempt callbacks? (There cannot be if there
1849 * is no RCU-preempt in the kernel.)
1850 */
1851static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1852{
1853 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
1854
1855 return __rcu_cpu_has_nonlazy_callbacks(rdp);
1856}
1857
1858#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
1859
1860static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1861{
1862 return 0;
1863}
1864
1865#endif /* else #ifdef CONFIG_TREE_PREEMPT_RCU */
1866
1867/*
1868 * Does any flavor of RCU have non-lazy callbacks on the specified CPU?
1869 */
1870static bool rcu_cpu_has_nonlazy_callbacks(int cpu)
1871{
1872 return __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_sched_data, cpu)) ||
1873 __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_bh_data, cpu)) ||
1874 rcu_preempt_cpu_has_nonlazy_callbacks(cpu);
1875}
1876
1877/*
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001878 * Allow the CPU to enter dyntick-idle mode if either: (1) There are no
1879 * callbacks on this CPU, (2) this CPU has not yet attempted to enter
1880 * dyntick-idle mode, or (3) this CPU is in the process of attempting to
1881 * enter dyntick-idle mode. Otherwise, if we have recently tried and failed
1882 * to enter dyntick-idle mode, we refuse to try to enter it. After all,
1883 * it is better to incur scheduling-clock interrupts than to spin
1884 * continuously for the same time duration!
1885 *
1886 * The delta_jiffies argument is used to store the time when RCU is
1887 * going to need the CPU again if it still has callbacks. The reason
1888 * for this is that rcu_prepare_for_idle() might need to post a timer,
1889 * but if so, it will do so after tick_nohz_stop_sched_tick() has set
1890 * the wakeup time for this CPU. This means that RCU's timer can be
1891 * delayed until the wakeup time, which defeats the purpose of posting
1892 * a timer.
1893 */
1894int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
1895{
1896 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1897
1898 /* Flag a new idle sojourn to the idle-entry state machine. */
1899 rdtp->idle_first_pass = 1;
1900 /* If no callbacks, RCU doesn't need the CPU. */
1901 if (!rcu_cpu_has_callbacks(cpu)) {
1902 *delta_jiffies = ULONG_MAX;
1903 return 0;
1904 }
1905 if (rdtp->dyntick_holdoff == jiffies) {
1906 /* RCU recently tried and failed, so don't try again. */
1907 *delta_jiffies = 1;
1908 return 1;
1909 }
1910 /* Set up for the possibility that RCU will post a timer. */
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07001911 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
1912 *delta_jiffies = round_up(RCU_IDLE_GP_DELAY + jiffies,
1913 RCU_IDLE_GP_DELAY) - jiffies;
1914 } else {
1915 *delta_jiffies = jiffies + RCU_IDLE_LAZY_GP_DELAY;
1916 *delta_jiffies = round_jiffies(*delta_jiffies) - jiffies;
1917 }
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001918 return 0;
1919}
1920
1921/*
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001922 * Handler for smp_call_function_single(). The only point of this
1923 * handler is to wake the CPU up, so the handler does only tracing.
1924 */
1925void rcu_idle_demigrate(void *unused)
1926{
1927 trace_rcu_prep_idle("Demigrate");
1928}
1929
1930/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001931 * Timer handler used to force CPU to start pushing its remaining RCU
1932 * callbacks in the case where it entered dyntick-idle mode with callbacks
1933 * pending. The hander doesn't really need to do anything because the
1934 * real work is done upon re-entry to idle, or by the next scheduling-clock
1935 * interrupt should idle not be re-entered.
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001936 *
1937 * One special case: the timer gets migrated without awakening the CPU
1938 * on which the timer was scheduled on. In this case, we must wake up
1939 * that CPU. We do so with smp_call_function_single().
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001940 */
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001941static void rcu_idle_gp_timer_func(unsigned long cpu_in)
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001942{
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001943 int cpu = (int)cpu_in;
1944
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001945 trace_rcu_prep_idle("Timer");
Paul E. McKenney21e52e12012-04-30 14:16:19 -07001946 if (cpu != smp_processor_id())
1947 smp_call_function_single(cpu, rcu_idle_demigrate, NULL, 0);
1948 else
1949 WARN_ON_ONCE(1); /* Getting here can hang the system... */
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001950}
1951
1952/*
1953 * Initialize the timer used to pull CPUs out of dyntick-idle mode.
1954 */
1955static void rcu_prepare_for_idle_init(int cpu)
1956{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001957 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1958
1959 rdtp->dyntick_holdoff = jiffies - 1;
1960 setup_timer(&rdtp->idle_gp_timer, rcu_idle_gp_timer_func, cpu);
1961 rdtp->idle_gp_timer_expires = jiffies - 1;
1962 rdtp->idle_first_pass = 1;
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001963}
1964
1965/*
1966 * Clean up for exit from idle. Because we are exiting from idle, there
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001967 * is no longer any point to ->idle_gp_timer, so cancel it. This will
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001968 * do nothing if this timer is not active, so just cancel it unconditionally.
1969 */
1970static void rcu_cleanup_after_idle(int cpu)
1971{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001972 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
1973
1974 del_timer(&rdtp->idle_gp_timer);
Paul E. McKenney2fdbb312012-02-23 15:58:29 -08001975 trace_rcu_prep_idle("Cleanup after idle");
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07001976 rdtp->tick_nohz_enabled_snap = ACCESS_ONCE(tick_nohz_enabled);
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001977}
1978
1979/*
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001980 * Check to see if any RCU-related work can be done by the current CPU,
1981 * and if so, schedule a softirq to get it done. This function is part
1982 * of the RCU implementation; it is -not- an exported member of the RCU API.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001983 *
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001984 * The idea is for the current CPU to clear out all work required by the
1985 * RCU core for the current grace period, so that this CPU can be permitted
1986 * to enter dyntick-idle mode. In some cases, it will need to be awakened
1987 * at the end of the grace period by whatever CPU ends the grace period.
1988 * This allows CPUs to go dyntick-idle more quickly, and to reduce the
1989 * number of wakeups by a modest integer factor.
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001990 *
1991 * Because it is not legal to invoke rcu_process_callbacks() with irqs
1992 * disabled, we do one pass of force_quiescent_state(), then do a
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001993 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07001994 * later. The ->dyntick_drain field controls the sequencing.
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001995 *
1996 * The caller must have disabled interrupts.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001997 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001998static void rcu_prepare_for_idle(int cpu)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001999{
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002000 struct timer_list *tp;
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002001 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenney9d2ad242012-06-24 10:15:02 -07002002 int tne;
2003
2004 /* Handle nohz enablement switches conservatively. */
2005 tne = ACCESS_ONCE(tick_nohz_enabled);
2006 if (tne != rdtp->tick_nohz_enabled_snap) {
2007 if (rcu_cpu_has_callbacks(cpu))
2008 invoke_rcu_core(); /* force nohz to see update. */
2009 rdtp->tick_nohz_enabled_snap = tne;
2010 return;
2011 }
2012 if (!tne)
2013 return;
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002014
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002015 /*
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002016 * If this is an idle re-entry, for example, due to use of
2017 * RCU_NONIDLE() or the new idle-loop tracing API within the idle
2018 * loop, then don't take any state-machine actions, unless the
2019 * momentary exit from idle queued additional non-lazy callbacks.
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002020 * Instead, repost the ->idle_gp_timer if this CPU has callbacks
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002021 * pending.
2022 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002023 if (!rdtp->idle_first_pass &&
2024 (rdtp->nonlazy_posted == rdtp->nonlazy_posted_snap)) {
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002025 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002026 tp = &rdtp->idle_gp_timer;
2027 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002028 }
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002029 return;
2030 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002031 rdtp->idle_first_pass = 0;
2032 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted - 1;
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002033
2034 /*
Paul E. McKenneyf535a602011-11-22 20:43:02 -08002035 * If there are no callbacks on this CPU, enter dyntick-idle mode.
2036 * Also reset state to avoid prejudicing later attempts.
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002037 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002038 if (!rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002039 rdtp->dyntick_holdoff = jiffies - 1;
2040 rdtp->dyntick_drain = 0;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002041 trace_rcu_prep_idle("No callbacks");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002042 return;
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07002043 }
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002044
2045 /*
2046 * If in holdoff mode, just return. We will presumably have
2047 * refrained from disabling the scheduling-clock tick.
2048 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002049 if (rdtp->dyntick_holdoff == jiffies) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002050 trace_rcu_prep_idle("In holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002051 return;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002052 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002053
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002054 /* Check and update the ->dyntick_drain sequencing. */
2055 if (rdtp->dyntick_drain <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002056 /* First time through, initialize the counter. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002057 rdtp->dyntick_drain = RCU_IDLE_FLUSHES;
2058 } else if (rdtp->dyntick_drain <= RCU_IDLE_OPT_FLUSHES &&
Paul E. McKenneyc3ce9102012-02-14 10:12:54 -08002059 !rcu_pending(cpu) &&
2060 !local_softirq_pending()) {
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002061 /* Can we go dyntick-idle despite still having callbacks? */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002062 rdtp->dyntick_drain = 0;
2063 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002064 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
2065 trace_rcu_prep_idle("Dyntick with callbacks");
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002066 rdtp->idle_gp_timer_expires =
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07002067 round_up(jiffies + RCU_IDLE_GP_DELAY,
2068 RCU_IDLE_GP_DELAY);
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002069 } else {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002070 rdtp->idle_gp_timer_expires =
Paul E. McKenneye84c48a2012-06-04 20:45:10 -07002071 round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY);
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002072 trace_rcu_prep_idle("Dyntick with lazy callbacks");
2073 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002074 tp = &rdtp->idle_gp_timer;
2075 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
2076 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08002077 return; /* Nothing more to do immediately. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002078 } else if (--(rdtp->dyntick_drain) <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002079 /* We have hit the limit, so time to give up. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002080 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002081 trace_rcu_prep_idle("Begin holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002082 invoke_rcu_core(); /* Force the CPU out of dyntick-idle. */
2083 return;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002084 }
2085
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002086 /*
2087 * Do one step of pushing the remaining RCU callbacks through
2088 * the RCU core state machine.
2089 */
2090#ifdef CONFIG_TREE_PREEMPT_RCU
2091 if (per_cpu(rcu_preempt_data, cpu).nxtlist) {
2092 rcu_preempt_qs(cpu);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002093 force_quiescent_state(&rcu_preempt_state);
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002094 }
2095#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002096 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
2097 rcu_sched_qs(cpu);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002098 force_quiescent_state(&rcu_sched_state);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002099 }
2100 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
2101 rcu_bh_qs(cpu);
Paul E. McKenney4cdfc1752012-06-22 17:06:26 -07002102 force_quiescent_state(&rcu_bh_state);
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002103 }
2104
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002105 /*
2106 * If RCU callbacks are still pending, RCU still needs this CPU.
2107 * So try forcing the callbacks through the grace period.
2108 */
Paul E. McKenney3ad0dec2011-11-22 21:08:13 -08002109 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002110 trace_rcu_prep_idle("More callbacks");
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002111 invoke_rcu_core();
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -07002112 } else {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002113 trace_rcu_prep_idle("Callbacks drained");
Paul E. McKenneyc701d5d2012-06-28 08:08:25 -07002114 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002115}
2116
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002117/*
Paul E. McKenney98248a02012-05-03 15:38:10 -07002118 * Keep a running count of the number of non-lazy callbacks posted
2119 * on this CPU. This running counter (which is never decremented) allows
2120 * rcu_prepare_for_idle() to detect when something out of the idle loop
2121 * posts a callback, even if an equal number of callbacks are invoked.
2122 * Of course, callbacks should only be posted from within a trace event
2123 * designed to be called from idle or from within RCU_NONIDLE().
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002124 */
2125static void rcu_idle_count_callbacks_posted(void)
2126{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002127 __this_cpu_add(rcu_dynticks.nonlazy_posted, 1);
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002128}
2129
Paul E. McKenneyb626c1b2012-06-11 17:39:43 -07002130/*
2131 * Data for flushing lazy RCU callbacks at OOM time.
2132 */
2133static atomic_t oom_callback_count;
2134static DECLARE_WAIT_QUEUE_HEAD(oom_callback_wq);
2135
2136/*
2137 * RCU OOM callback -- decrement the outstanding count and deliver the
2138 * wake-up if we are the last one.
2139 */
2140static void rcu_oom_callback(struct rcu_head *rhp)
2141{
2142 if (atomic_dec_and_test(&oom_callback_count))
2143 wake_up(&oom_callback_wq);
2144}
2145
2146/*
2147 * Post an rcu_oom_notify callback on the current CPU if it has at
2148 * least one lazy callback. This will unnecessarily post callbacks
2149 * to CPUs that already have a non-lazy callback at the end of their
2150 * callback list, but this is an infrequent operation, so accept some
2151 * extra overhead to keep things simple.
2152 */
2153static void rcu_oom_notify_cpu(void *unused)
2154{
2155 struct rcu_state *rsp;
2156 struct rcu_data *rdp;
2157
2158 for_each_rcu_flavor(rsp) {
2159 rdp = __this_cpu_ptr(rsp->rda);
2160 if (rdp->qlen_lazy != 0) {
2161 atomic_inc(&oom_callback_count);
2162 rsp->call(&rdp->oom_head, rcu_oom_callback);
2163 }
2164 }
2165}
2166
2167/*
2168 * If low on memory, ensure that each CPU has a non-lazy callback.
2169 * This will wake up CPUs that have only lazy callbacks, in turn
2170 * ensuring that they free up the corresponding memory in a timely manner.
2171 * Because an uncertain amount of memory will be freed in some uncertain
2172 * timeframe, we do not claim to have freed anything.
2173 */
2174static int rcu_oom_notify(struct notifier_block *self,
2175 unsigned long notused, void *nfreed)
2176{
2177 int cpu;
2178
2179 /* Wait for callbacks from earlier instance to complete. */
2180 wait_event(oom_callback_wq, atomic_read(&oom_callback_count) == 0);
2181
2182 /*
2183 * Prevent premature wakeup: ensure that all increments happen
2184 * before there is a chance of the counter reaching zero.
2185 */
2186 atomic_set(&oom_callback_count, 1);
2187
2188 get_online_cpus();
2189 for_each_online_cpu(cpu) {
2190 smp_call_function_single(cpu, rcu_oom_notify_cpu, NULL, 1);
2191 cond_resched();
2192 }
2193 put_online_cpus();
2194
2195 /* Unconditionally decrement: no need to wake ourselves up. */
2196 atomic_dec(&oom_callback_count);
2197
2198 return NOTIFY_OK;
2199}
2200
2201static struct notifier_block rcu_oom_nb = {
2202 .notifier_call = rcu_oom_notify
2203};
2204
2205static int __init rcu_register_oom_notifier(void)
2206{
2207 register_oom_notifier(&rcu_oom_nb);
2208 return 0;
2209}
2210early_initcall(rcu_register_oom_notifier);
2211
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002212#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */
Paul E. McKenneya858af22012-01-16 13:29:10 -08002213
2214#ifdef CONFIG_RCU_CPU_STALL_INFO
2215
2216#ifdef CONFIG_RCU_FAST_NO_HZ
2217
2218static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2219{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002220 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
2221 struct timer_list *tltp = &rdtp->idle_gp_timer;
Paul E. McKenneya858af22012-01-16 13:29:10 -08002222
Paul E. McKenney2ee3dc82012-02-23 17:13:19 -08002223 sprintf(cp, "drain=%d %c timer=%lu",
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002224 rdtp->dyntick_drain,
2225 rdtp->dyntick_holdoff == jiffies ? 'H' : '.',
Paul E. McKenney2ee3dc82012-02-23 17:13:19 -08002226 timer_pending(tltp) ? tltp->expires - jiffies : -1);
Paul E. McKenneya858af22012-01-16 13:29:10 -08002227}
2228
2229#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
2230
2231static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2232{
Carsten Emde1c17e4d2012-06-19 10:43:16 +02002233 *cp = '\0';
Paul E. McKenneya858af22012-01-16 13:29:10 -08002234}
2235
2236#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
2237
2238/* Initiate the stall-info list. */
2239static void print_cpu_stall_info_begin(void)
2240{
2241 printk(KERN_CONT "\n");
2242}
2243
2244/*
2245 * Print out diagnostic information for the specified stalled CPU.
2246 *
2247 * If the specified CPU is aware of the current RCU grace period
2248 * (flavor specified by rsp), then print the number of scheduling
2249 * clock interrupts the CPU has taken during the time that it has
2250 * been aware. Otherwise, print the number of RCU grace periods
2251 * that this CPU is ignorant of, for example, "1" if the CPU was
2252 * aware of the previous grace period.
2253 *
2254 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
2255 */
2256static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2257{
2258 char fast_no_hz[72];
2259 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
2260 struct rcu_dynticks *rdtp = rdp->dynticks;
2261 char *ticks_title;
2262 unsigned long ticks_value;
2263
2264 if (rsp->gpnum == rdp->gpnum) {
2265 ticks_title = "ticks this GP";
2266 ticks_value = rdp->ticks_this_gp;
2267 } else {
2268 ticks_title = "GPs behind";
2269 ticks_value = rsp->gpnum - rdp->gpnum;
2270 }
2271 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
2272 printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n",
2273 cpu, ticks_value, ticks_title,
2274 atomic_read(&rdtp->dynticks) & 0xfff,
2275 rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
2276 fast_no_hz);
2277}
2278
2279/* Terminate the stall-info list. */
2280static void print_cpu_stall_info_end(void)
2281{
2282 printk(KERN_ERR "\t");
2283}
2284
2285/* Zero ->ticks_this_gp for all flavors of RCU. */
2286static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2287{
2288 rdp->ticks_this_gp = 0;
2289}
2290
2291/* Increment ->ticks_this_gp for all flavors of RCU. */
2292static void increment_cpu_stall_ticks(void)
2293{
2294 __get_cpu_var(rcu_sched_data).ticks_this_gp++;
2295 __get_cpu_var(rcu_bh_data).ticks_this_gp++;
2296#ifdef CONFIG_TREE_PREEMPT_RCU
2297 __get_cpu_var(rcu_preempt_data).ticks_this_gp++;
2298#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
2299}
2300
2301#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
2302
2303static void print_cpu_stall_info_begin(void)
2304{
2305 printk(KERN_CONT " {");
2306}
2307
2308static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2309{
2310 printk(KERN_CONT " %d", cpu);
2311}
2312
2313static void print_cpu_stall_info_end(void)
2314{
2315 printk(KERN_CONT "} ");
2316}
2317
2318static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2319{
2320}
2321
2322static void increment_cpu_stall_ticks(void)
2323{
2324}
2325
2326#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */