blob: d3127e8764cb9f72026c8619192532e05fe253d1 [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>
Lai Jiangshan7b27d542010-10-21 11:29:05 +080028#include <linux/stop_machine.h>
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070029
Paul E. McKenney26845c22010-04-13 14:19:23 -070030/*
31 * Check the RCU kernel configuration parameters and print informative
32 * messages about anything out of the ordinary. If you like #ifdef, you
33 * will love this function.
34 */
35static void __init rcu_bootup_announce_oddness(void)
36{
37#ifdef CONFIG_RCU_TRACE
38 printk(KERN_INFO "\tRCU debugfs-based tracing is enabled.\n");
39#endif
40#if (defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 64) || (!defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 32)
41 printk(KERN_INFO "\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
42 CONFIG_RCU_FANOUT);
43#endif
44#ifdef CONFIG_RCU_FANOUT_EXACT
45 printk(KERN_INFO "\tHierarchical RCU autobalancing is disabled.\n");
46#endif
47#ifdef CONFIG_RCU_FAST_NO_HZ
48 printk(KERN_INFO
49 "\tRCU dyntick-idle grace-period acceleration is enabled.\n");
50#endif
51#ifdef CONFIG_PROVE_RCU
52 printk(KERN_INFO "\tRCU lockdep checking is enabled.\n");
53#endif
54#ifdef CONFIG_RCU_TORTURE_TEST_RUNNABLE
55 printk(KERN_INFO "\tRCU torture testing starts during boot.\n");
56#endif
Paul E. McKenney81a294c2010-08-30 09:52:50 -070057#if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE)
Paul E. McKenney26845c22010-04-13 14:19:23 -070058 printk(KERN_INFO "\tVerbose stalled-CPUs detection is disabled.\n");
59#endif
60#if NUM_RCU_LVL_4 != 0
61 printk(KERN_INFO "\tExperimental four-level hierarchy is enabled.\n");
62#endif
63}
64
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070065#ifdef CONFIG_TREE_PREEMPT_RCU
66
Paul E. McKenneye99033c2011-06-21 00:13:44 -070067struct rcu_state rcu_preempt_state = RCU_STATE_INITIALIZER(rcu_preempt);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070068DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
Paul E. McKenney27f4d282011-02-07 12:47:15 -080069static struct rcu_state *rcu_state = &rcu_preempt_state;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070070
Paul E. McKenney10f39bb2011-07-17 21:14:35 -070071static void rcu_read_unlock_special(struct task_struct *t);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080072static int rcu_preempted_readers_exp(struct rcu_node *rnp);
73
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070074/*
75 * Tell them what RCU they are running.
76 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -080077static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070078{
Paul E. McKenney6cc68792011-03-02 13:15:15 -080079 printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070080 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070081}
82
83/*
84 * Return the number of RCU-preempt batches processed thus far
85 * for debug and statistics.
86 */
87long rcu_batches_completed_preempt(void)
88{
89 return rcu_preempt_state.completed;
90}
91EXPORT_SYMBOL_GPL(rcu_batches_completed_preempt);
92
93/*
94 * Return the number of RCU batches processed thus far for debug & stats.
95 */
96long rcu_batches_completed(void)
97{
98 return rcu_batches_completed_preempt();
99}
100EXPORT_SYMBOL_GPL(rcu_batches_completed);
101
102/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800103 * Force a quiescent state for preemptible RCU.
104 */
105void rcu_force_quiescent_state(void)
106{
107 force_quiescent_state(&rcu_preempt_state, 0);
108}
109EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
110
111/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800112 * Record a preemptible-RCU quiescent state for the specified CPU. Note
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700113 * that this just means that the task currently running on the CPU is
114 * not in a quiescent state. There might be any number of tasks blocked
115 * while in an RCU read-side critical section.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700116 *
117 * Unlike the other rcu_*_qs() functions, callers to this function
118 * must disable irqs in order to protect the assignment to
119 * ->rcu_read_unlock_special.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700120 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700121static void rcu_preempt_qs(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700122{
123 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700124
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700125 rdp->passed_quiesce_gpnum = rdp->gpnum;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700126 barrier();
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700127 if (rdp->passed_quiesce == 0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700128 trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs");
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700129 rdp->passed_quiesce = 1;
Paul E. McKenney25502a62010-04-01 17:37:01 -0700130 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700131}
132
133/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700134 * We have entered the scheduler, and the current task might soon be
135 * context-switched away from. If this task is in an RCU read-side
136 * critical section, we will no longer be able to rely on the CPU to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800137 * record that fact, so we enqueue the task on the blkd_tasks list.
138 * The task will dequeue itself when it exits the outermost enclosing
139 * RCU read-side critical section. Therefore, the current grace period
140 * cannot be permitted to complete until the blkd_tasks list entries
141 * predating the current grace period drain, in other words, until
142 * rnp->gp_tasks becomes NULL.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700143 *
144 * Caller must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700145 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700146static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700147{
148 struct task_struct *t = current;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700149 unsigned long flags;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700150 struct rcu_data *rdp;
151 struct rcu_node *rnp;
152
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700153 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700154 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
155
156 /* Possibly blocking in an RCU read-side critical section. */
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800157 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700158 rnp = rdp->mynode;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800159 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700160 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
Paul E. McKenney86848962009-08-27 15:00:12 -0700161 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700162
163 /*
164 * If this CPU has already checked in, then this task
165 * will hold up the next grace period rather than the
166 * current grace period. Queue the task accordingly.
167 * If the task is queued for the current grace period
168 * (i.e., this CPU has not yet passed through a quiescent
169 * state for the current grace period), then as long
170 * as that task remains queued, the current grace period
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800171 * cannot end. Note that there is some uncertainty as
172 * to exactly when the current grace period started.
173 * We take a conservative approach, which can result
174 * in unnecessarily waiting on tasks that started very
175 * slightly after the current grace period began. C'est
176 * la vie!!!
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700177 *
178 * But first, note that the current CPU must still be
179 * on line!
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700180 */
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700181 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700182 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800183 if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) {
184 list_add(&t->rcu_node_entry, rnp->gp_tasks->prev);
185 rnp->gp_tasks = &t->rcu_node_entry;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800186#ifdef CONFIG_RCU_BOOST
187 if (rnp->boost_tasks != NULL)
188 rnp->boost_tasks = rnp->gp_tasks;
189#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800190 } else {
191 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
192 if (rnp->qsmask & rdp->grpmask)
193 rnp->gp_tasks = &t->rcu_node_entry;
194 }
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700195 trace_rcu_preempt_task(rdp->rsp->name,
196 t->pid,
197 (rnp->qsmask & rdp->grpmask)
198 ? rnp->gpnum
199 : rnp->gpnum + 1);
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800200 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700201 } else if (t->rcu_read_lock_nesting < 0 &&
202 t->rcu_read_unlock_special) {
203
204 /*
205 * Complete exit from RCU read-side critical section on
206 * behalf of preempted instance of __rcu_read_unlock().
207 */
208 rcu_read_unlock_special(t);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700209 }
210
211 /*
212 * Either we were not in an RCU read-side critical section to
213 * begin with, or we have now recorded that critical section
214 * globally. Either way, we can now note a quiescent state
215 * for this CPU. Again, if we were in an RCU read-side critical
216 * section, and if that critical section was blocking the current
217 * grace period, then the fact that the task has been enqueued
218 * means that we continue to block the current grace period.
219 */
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700220 local_irq_save(flags);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700221 rcu_preempt_qs(cpu);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700222 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700223}
224
225/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800226 * Tree-preemptible RCU implementation for rcu_read_lock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700227 * Just increment ->rcu_read_lock_nesting, shared state will be updated
228 * if we block.
229 */
230void __rcu_read_lock(void)
231{
Paul E. McKenney80dcf602010-08-19 16:57:45 -0700232 current->rcu_read_lock_nesting++;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700233 barrier(); /* needed if we ever invoke rcu_read_lock in rcutree.c */
234}
235EXPORT_SYMBOL_GPL(__rcu_read_lock);
236
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700237/*
238 * Check for preempted RCU readers blocking the current grace period
239 * for the specified rcu_node structure. If the caller needs a reliable
240 * answer, it must hold the rcu_node's ->lock.
241 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800242static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700243{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800244 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700245}
246
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800247/*
248 * Record a quiescent state for all tasks that were previously queued
249 * on the specified rcu_node structure and that were blocking the current
250 * RCU grace period. The caller must hold the specified rnp->lock with
251 * irqs disabled, and this lock is released upon return, but irqs remain
252 * disabled.
253 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800254static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800255 __releases(rnp->lock)
256{
257 unsigned long mask;
258 struct rcu_node *rnp_p;
259
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800260 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800261 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800262 return; /* Still need more quiescent states! */
263 }
264
265 rnp_p = rnp->parent;
266 if (rnp_p == NULL) {
267 /*
268 * Either there is only one rcu_node in the tree,
269 * or tasks were kicked up to root rcu_node due to
270 * CPUs going offline.
271 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800272 rcu_report_qs_rsp(&rcu_preempt_state, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800273 return;
274 }
275
276 /* Report up the rest of the hierarchy. */
277 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800278 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
279 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800280 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800281}
282
283/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800284 * Advance a ->blkd_tasks-list pointer to the next entry, instead
285 * returning NULL if at the end of the list.
286 */
287static struct list_head *rcu_next_node_entry(struct task_struct *t,
288 struct rcu_node *rnp)
289{
290 struct list_head *np;
291
292 np = t->rcu_node_entry.next;
293 if (np == &rnp->blkd_tasks)
294 np = NULL;
295 return np;
296}
297
298/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800299 * Handle special cases during rcu_read_unlock(), such as needing to
300 * notify RCU core processing or task having blocked during the RCU
301 * read-side critical section.
302 */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700303static noinline void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700304{
305 int empty;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800306 int empty_exp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700307 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800308 struct list_head *np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700309#ifdef CONFIG_RCU_BOOST
310 struct rt_mutex *rbmp = NULL;
311#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700312 struct rcu_node *rnp;
313 int special;
314
315 /* NMI handlers cannot block and cannot safely manipulate state. */
316 if (in_nmi())
317 return;
318
319 local_irq_save(flags);
320
321 /*
322 * If RCU core is waiting for this CPU to exit critical section,
323 * let it know that we have done so.
324 */
325 special = t->rcu_read_unlock_special;
326 if (special & RCU_READ_UNLOCK_NEED_QS) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700327 rcu_preempt_qs(smp_processor_id());
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700328 }
329
330 /* Hardware IRQ handlers cannot block. */
Peter Zijlstraec433f02011-07-19 15:32:00 -0700331 if (in_irq() || in_serving_softirq()) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700332 local_irq_restore(flags);
333 return;
334 }
335
336 /* Clean up if blocked during RCU read-side critical section. */
337 if (special & RCU_READ_UNLOCK_BLOCKED) {
338 t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED;
339
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700340 /*
341 * Remove this task from the list it blocked on. The
342 * task can migrate while we acquire the lock, but at
343 * most one time. So at most two passes through loop.
344 */
345 for (;;) {
Paul E. McKenney86848962009-08-27 15:00:12 -0700346 rnp = t->rcu_blocked_node;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800347 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700348 if (rnp == t->rcu_blocked_node)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700349 break;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800350 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700351 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800352 empty = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800353 empty_exp = !rcu_preempted_readers_exp(rnp);
354 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800355 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700356 list_del_init(&t->rcu_node_entry);
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700357 t->rcu_blocked_node = NULL;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700358 trace_rcu_unlock_preempted_task("rcu_preempt",
359 rnp->gpnum, t->pid);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800360 if (&t->rcu_node_entry == rnp->gp_tasks)
361 rnp->gp_tasks = np;
362 if (&t->rcu_node_entry == rnp->exp_tasks)
363 rnp->exp_tasks = np;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800364#ifdef CONFIG_RCU_BOOST
365 if (&t->rcu_node_entry == rnp->boost_tasks)
366 rnp->boost_tasks = np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700367 /* Snapshot/clear ->rcu_boost_mutex with rcu_node lock held. */
368 if (t->rcu_boost_mutex) {
369 rbmp = t->rcu_boost_mutex;
370 t->rcu_boost_mutex = NULL;
Paul E. McKenney7765be22011-07-14 12:24:11 -0700371 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800372#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700373
374 /*
375 * If this was the last task on the current list, and if
376 * we aren't waiting on any CPUs, report the quiescent state.
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800377 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700378 */
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700379 if (!empty && !rcu_preempt_blocked_readers_cgp(rnp)) {
380 trace_rcu_quiescent_state_report("preempt_rcu",
381 rnp->gpnum,
382 0, rnp->qsmask,
383 rnp->level,
384 rnp->grplo,
385 rnp->grphi,
386 !!rnp->gp_tasks);
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800387 rcu_report_unblock_qs_rnp(rnp, flags);
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700388 } else
389 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800390
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800391#ifdef CONFIG_RCU_BOOST
392 /* Unboost if we were boosted. */
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700393 if (rbmp)
394 rt_mutex_unlock(rbmp);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800395#endif /* #ifdef CONFIG_RCU_BOOST */
396
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800397 /*
398 * If this was the last task on the expedited lists,
399 * then we need to report up the rcu_node hierarchy.
400 */
401 if (!empty_exp && !rcu_preempted_readers_exp(rnp))
402 rcu_report_exp_rnp(&rcu_preempt_state, rnp);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800403 } else {
404 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700405 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700406}
407
408/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800409 * Tree-preemptible RCU implementation for rcu_read_unlock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700410 * Decrement ->rcu_read_lock_nesting. If the result is zero (outermost
411 * rcu_read_unlock()) and ->rcu_read_unlock_special is non-zero, then
412 * invoke rcu_read_unlock_special() to clean up after a context switch
413 * in an RCU read-side critical section and other special cases.
414 */
415void __rcu_read_unlock(void)
416{
417 struct task_struct *t = current;
418
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700419 if (t->rcu_read_lock_nesting != 1)
420 --t->rcu_read_lock_nesting;
421 else {
Paul E. McKenney6206ab92011-08-01 06:22:11 -0700422 barrier(); /* critical section before exit code. */
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700423 t->rcu_read_lock_nesting = INT_MIN;
424 barrier(); /* assign before ->rcu_read_unlock_special load */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700425 if (unlikely(ACCESS_ONCE(t->rcu_read_unlock_special)))
426 rcu_read_unlock_special(t);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700427 barrier(); /* ->rcu_read_unlock_special load before assign */
428 t->rcu_read_lock_nesting = 0;
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700429 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800430#ifdef CONFIG_PROVE_LOCKING
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700431 {
432 int rrln = ACCESS_ONCE(t->rcu_read_lock_nesting);
433
434 WARN_ON_ONCE(rrln < 0 && rrln > INT_MIN / 2);
435 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800436#endif /* #ifdef CONFIG_PROVE_LOCKING */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700437}
438EXPORT_SYMBOL_GPL(__rcu_read_unlock);
439
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800440#ifdef CONFIG_RCU_CPU_STALL_VERBOSE
441
442/*
443 * Dump detailed information for all tasks blocking the current RCU
444 * grace period on the specified rcu_node structure.
445 */
446static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
447{
448 unsigned long flags;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800449 struct task_struct *t;
450
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800451 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800452 return;
453 raw_spin_lock_irqsave(&rnp->lock, flags);
454 t = list_entry(rnp->gp_tasks,
455 struct task_struct, rcu_node_entry);
456 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
457 sched_show_task(t);
458 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800459}
460
461/*
462 * Dump detailed information for all tasks blocking the current RCU
463 * grace period.
464 */
465static void rcu_print_detail_task_stall(struct rcu_state *rsp)
466{
467 struct rcu_node *rnp = rcu_get_root(rsp);
468
469 rcu_print_detail_task_stall_rnp(rnp);
470 rcu_for_each_leaf_node(rsp, rnp)
471 rcu_print_detail_task_stall_rnp(rnp);
472}
473
474#else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
475
476static void rcu_print_detail_task_stall(struct rcu_state *rsp)
477{
478}
479
480#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
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. McKenney12f5f522010-11-29 21:56:39 -0800493 t = list_entry(rnp->gp_tasks,
494 struct task_struct, rcu_node_entry);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700495 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800496 printk(" P%d", t->pid);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700497 ndetected++;
498 }
499 return ndetected;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700500}
501
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700502/*
503 * Suppress preemptible RCU's CPU stall warnings by pushing the
504 * time of the next stall-warning message comfortably far into the
505 * future.
506 */
507static void rcu_preempt_stall_reset(void)
508{
509 rcu_preempt_state.jiffies_stall = jiffies + ULONG_MAX / 2;
510}
511
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700512/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700513 * Check that the list of blocked tasks for the newly completed grace
514 * period is in fact empty. It is a serious bug to complete a grace
515 * period that still has RCU readers blocked! This function must be
516 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
517 * must be held by the caller.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800518 *
519 * Also, if there are blocked tasks on the list, they automatically
520 * block the newly created grace period, so set up ->gp_tasks accordingly.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700521 */
522static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
523{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800524 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800525 if (!list_empty(&rnp->blkd_tasks))
526 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700527 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700528}
529
Paul E. McKenney33f76142009-08-24 09:42:01 -0700530#ifdef CONFIG_HOTPLUG_CPU
531
532/*
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700533 * Handle tasklist migration for case in which all CPUs covered by the
534 * specified rcu_node have gone offline. Move them up to the root
535 * rcu_node. The reason for not just moving them to the immediate
536 * parent is to remove the need for rcu_read_unlock_special() to
537 * make more than two attempts to acquire the target rcu_node's lock.
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800538 * Returns true if there were tasks blocking the current RCU grace
539 * period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700540 *
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700541 * Returns 1 if there was previously a task blocking the current grace
542 * period on the specified rcu_node structure.
543 *
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700544 * The caller must hold rnp->lock with irqs disabled.
545 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700546static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
547 struct rcu_node *rnp,
548 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700549{
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700550 struct list_head *lp;
551 struct list_head *lp_root;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800552 int retval = 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700553 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800554 struct task_struct *t;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700555
Paul E. McKenney86848962009-08-27 15:00:12 -0700556 if (rnp == rnp_root) {
557 WARN_ONCE(1, "Last CPU thought to be offlined?");
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700558 return 0; /* Shouldn't happen: at least one CPU online. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700559 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800560
561 /* If we are on an internal node, complain bitterly. */
562 WARN_ON_ONCE(rnp != rdp->mynode);
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700563
564 /*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800565 * Move tasks up to root rcu_node. Don't try to get fancy for
566 * this corner-case operation -- just put this node's tasks
567 * at the head of the root node's list, and update the root node's
568 * ->gp_tasks and ->exp_tasks pointers to those of this node's,
569 * if non-NULL. This might result in waiting for more tasks than
570 * absolutely necessary, but this is a good performance/complexity
571 * tradeoff.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700572 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800573 if (rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800574 retval |= RCU_OFL_TASKS_NORM_GP;
575 if (rcu_preempted_readers_exp(rnp))
576 retval |= RCU_OFL_TASKS_EXP_GP;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800577 lp = &rnp->blkd_tasks;
578 lp_root = &rnp_root->blkd_tasks;
579 while (!list_empty(lp)) {
580 t = list_entry(lp->next, typeof(*t), rcu_node_entry);
581 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
582 list_del(&t->rcu_node_entry);
583 t->rcu_blocked_node = rnp_root;
584 list_add(&t->rcu_node_entry, lp_root);
585 if (&t->rcu_node_entry == rnp->gp_tasks)
586 rnp_root->gp_tasks = rnp->gp_tasks;
587 if (&t->rcu_node_entry == rnp->exp_tasks)
588 rnp_root->exp_tasks = rnp->exp_tasks;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800589#ifdef CONFIG_RCU_BOOST
590 if (&t->rcu_node_entry == rnp->boost_tasks)
591 rnp_root->boost_tasks = rnp->boost_tasks;
592#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800593 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700594 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800595
596#ifdef CONFIG_RCU_BOOST
597 /* In case root is being boosted and leaf is not. */
598 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
599 if (rnp_root->boost_tasks != NULL &&
600 rnp_root->boost_tasks != rnp_root->gp_tasks)
601 rnp_root->boost_tasks = rnp_root->gp_tasks;
602 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
603#endif /* #ifdef CONFIG_RCU_BOOST */
604
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800605 rnp->gp_tasks = NULL;
606 rnp->exp_tasks = NULL;
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700607 return retval;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700608}
609
610/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800611 * Do CPU-offline processing for preemptible RCU.
Paul E. McKenney33f76142009-08-24 09:42:01 -0700612 */
613static void rcu_preempt_offline_cpu(int cpu)
614{
615 __rcu_offline_cpu(cpu, &rcu_preempt_state);
616}
617
618#endif /* #ifdef CONFIG_HOTPLUG_CPU */
619
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700620/*
621 * Check for a quiescent state from the current CPU. When a task blocks,
622 * the task is recorded in the corresponding CPU's rcu_node structure,
623 * which is checked elsewhere.
624 *
625 * Caller must disable hard irqs.
626 */
627static void rcu_preempt_check_callbacks(int cpu)
628{
629 struct task_struct *t = current;
630
631 if (t->rcu_read_lock_nesting == 0) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700632 rcu_preempt_qs(cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700633 return;
634 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700635 if (t->rcu_read_lock_nesting > 0 &&
636 per_cpu(rcu_preempt_data, cpu).qs_pending)
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700637 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700638}
639
640/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800641 * Process callbacks for preemptible RCU.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700642 */
643static void rcu_preempt_process_callbacks(void)
644{
645 __rcu_process_callbacks(&rcu_preempt_state,
646 &__get_cpu_var(rcu_preempt_data));
647}
648
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700649#ifdef CONFIG_RCU_BOOST
650
Shaohua Li09223372011-06-14 13:26:25 +0800651static void rcu_preempt_do_callbacks(void)
652{
653 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
654}
655
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700656#endif /* #ifdef CONFIG_RCU_BOOST */
657
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700658/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800659 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700660 */
661void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
662{
663 __call_rcu(head, func, &rcu_preempt_state);
664}
665EXPORT_SYMBOL_GPL(call_rcu);
666
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800667/**
668 * synchronize_rcu - wait until a grace period has elapsed.
669 *
670 * Control will return to the caller some time after a full grace
671 * period has elapsed, in other words after all currently executing RCU
Paul E. McKenney77d84852010-07-08 17:38:59 -0700672 * read-side critical sections have completed. Note, however, that
673 * upon return from synchronize_rcu(), the caller might well be executing
674 * concurrently with new RCU read-side critical sections that began while
675 * synchronize_rcu() was waiting. RCU read-side critical sections are
676 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800677 */
678void synchronize_rcu(void)
679{
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800680 if (!rcu_scheduler_active)
681 return;
Paul E. McKenney2c428182011-05-26 22:14:36 -0700682 wait_rcu_gp(call_rcu);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800683}
684EXPORT_SYMBOL_GPL(synchronize_rcu);
685
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800686static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
687static long sync_rcu_preempt_exp_count;
688static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
689
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700690/*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800691 * Return non-zero if there are any tasks in RCU read-side critical
692 * sections blocking the current preemptible-RCU expedited grace period.
693 * If there is no preemptible-RCU expedited grace period currently in
694 * progress, returns zero unconditionally.
695 */
696static int rcu_preempted_readers_exp(struct rcu_node *rnp)
697{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800698 return rnp->exp_tasks != NULL;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800699}
700
701/*
702 * return non-zero if there is no RCU expedited grace period in progress
703 * for the specified rcu_node structure, in other words, if all CPUs and
704 * tasks covered by the specified rcu_node structure have done their bit
705 * for the current expedited grace period. Works only for preemptible
706 * RCU -- other RCU implementation use other means.
707 *
708 * Caller must hold sync_rcu_preempt_exp_mutex.
709 */
710static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
711{
712 return !rcu_preempted_readers_exp(rnp) &&
713 ACCESS_ONCE(rnp->expmask) == 0;
714}
715
716/*
717 * Report the exit from RCU read-side critical section for the last task
718 * that queued itself during or before the current expedited preemptible-RCU
719 * grace period. This event is reported either to the rcu_node structure on
720 * which the task was queued or to one of that rcu_node structure's ancestors,
721 * recursively up the tree. (Calm down, calm down, we do the recursion
722 * iteratively!)
723 *
724 * Caller must hold sync_rcu_preempt_exp_mutex.
725 */
726static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp)
727{
728 unsigned long flags;
729 unsigned long mask;
730
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800731 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800732 for (;;) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700733 if (!sync_rcu_preempt_exp_done(rnp)) {
734 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800735 break;
Paul E. McKenney131906b2011-07-17 02:05:49 -0700736 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800737 if (rnp->parent == NULL) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700738 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800739 wake_up(&sync_rcu_preempt_exp_wq);
740 break;
741 }
742 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800743 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800744 rnp = rnp->parent;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800745 raw_spin_lock(&rnp->lock); /* irqs already disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800746 rnp->expmask &= ~mask;
747 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800748}
749
750/*
751 * Snapshot the tasks blocking the newly started preemptible-RCU expedited
752 * grace period for the specified rcu_node structure. If there are no such
753 * tasks, report it up the rcu_node hierarchy.
754 *
755 * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock.
756 */
757static void
758sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp)
759{
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700760 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800761 int must_wait = 0;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800762
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700763 raw_spin_lock_irqsave(&rnp->lock, flags);
764 if (list_empty(&rnp->blkd_tasks))
765 raw_spin_unlock_irqrestore(&rnp->lock, flags);
766 else {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800767 rnp->exp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700768 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800769 must_wait = 1;
770 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800771 if (!must_wait)
772 rcu_report_exp_rnp(rsp, rnp);
773}
774
775/*
776 * Wait for an rcu-preempt grace period, but expedite it. The basic idea
777 * is to invoke synchronize_sched_expedited() to push all the tasks to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800778 * the ->blkd_tasks lists and wait for this list to drain.
Paul E. McKenney019129d2009-10-14 10:15:56 -0700779 */
780void synchronize_rcu_expedited(void)
781{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800782 unsigned long flags;
783 struct rcu_node *rnp;
784 struct rcu_state *rsp = &rcu_preempt_state;
785 long snap;
786 int trycount = 0;
787
788 smp_mb(); /* Caller's modifications seen first by other CPUs. */
789 snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1;
790 smp_mb(); /* Above access cannot bleed into critical section. */
791
792 /*
793 * Acquire lock, falling back to synchronize_rcu() if too many
794 * lock-acquisition failures. Of course, if someone does the
795 * expedited grace period for us, just leave.
796 */
797 while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) {
798 if (trycount++ < 10)
799 udelay(trycount * num_online_cpus());
800 else {
801 synchronize_rcu();
802 return;
803 }
804 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
805 goto mb_ret; /* Others did our work for us. */
806 }
807 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
808 goto unlock_mb_ret; /* Others did our work for us. */
809
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800810 /* force all RCU readers onto ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800811 synchronize_sched_expedited();
812
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800813 raw_spin_lock_irqsave(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800814
815 /* Initialize ->expmask for all non-leaf rcu_node structures. */
816 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800817 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800818 rnp->expmask = rnp->qsmaskinit;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800819 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800820 }
821
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800822 /* Snapshot current state of ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800823 rcu_for_each_leaf_node(rsp, rnp)
824 sync_rcu_preempt_exp_init(rsp, rnp);
825 if (NUM_RCU_NODES > 1)
826 sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp));
827
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800828 raw_spin_unlock_irqrestore(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800829
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800830 /* Wait for snapshotted ->blkd_tasks lists to drain. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800831 rnp = rcu_get_root(rsp);
832 wait_event(sync_rcu_preempt_exp_wq,
833 sync_rcu_preempt_exp_done(rnp));
834
835 /* Clean up and exit. */
836 smp_mb(); /* ensure expedited GP seen before counter increment. */
837 ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
838unlock_mb_ret:
839 mutex_unlock(&sync_rcu_preempt_exp_mutex);
840mb_ret:
841 smp_mb(); /* ensure subsequent action seen after grace period. */
Paul E. McKenney019129d2009-10-14 10:15:56 -0700842}
843EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
844
845/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800846 * Check to see if there is any immediate preemptible-RCU-related work
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700847 * to be done.
848 */
849static int rcu_preempt_pending(int cpu)
850{
851 return __rcu_pending(&rcu_preempt_state,
852 &per_cpu(rcu_preempt_data, cpu));
853}
854
855/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800856 * Does preemptible RCU need the CPU to stay out of dynticks mode?
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700857 */
858static int rcu_preempt_needs_cpu(int cpu)
859{
860 return !!per_cpu(rcu_preempt_data, cpu).nxtlist;
861}
862
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700863/**
864 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
865 */
866void rcu_barrier(void)
867{
868 _rcu_barrier(&rcu_preempt_state, call_rcu);
869}
870EXPORT_SYMBOL_GPL(rcu_barrier);
871
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700872/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800873 * Initialize preemptible RCU's per-CPU data.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700874 */
875static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
876{
877 rcu_init_percpu_data(cpu, &rcu_preempt_state, 1);
878}
879
880/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800881 * Move preemptible RCU's callbacks from dying CPU to other online CPU.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700882 */
Lai Jiangshan29494be2010-10-20 14:13:06 +0800883static void rcu_preempt_send_cbs_to_online(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700884{
Lai Jiangshan29494be2010-10-20 14:13:06 +0800885 rcu_send_cbs_to_online(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700886}
887
888/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800889 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700890 */
891static void __init __rcu_init_preempt(void)
892{
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800893 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700894}
895
896/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800897 * Check for a task exiting while in a preemptible-RCU read-side
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700898 * critical section, clean up if so. No need to issue warnings,
899 * as debug_check_no_locks_held() already does this if lockdep
900 * is enabled.
901 */
902void exit_rcu(void)
903{
904 struct task_struct *t = current;
905
906 if (t->rcu_read_lock_nesting == 0)
907 return;
908 t->rcu_read_lock_nesting = 1;
Lai Jiangshan13491a02011-02-25 11:37:59 -0800909 __rcu_read_unlock();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700910}
911
912#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
913
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800914static struct rcu_state *rcu_state = &rcu_sched_state;
915
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700916/*
917 * Tell them what RCU they are running.
918 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800919static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700920{
921 printk(KERN_INFO "Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700922 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700923}
924
925/*
926 * Return the number of RCU batches processed thus far for debug & stats.
927 */
928long rcu_batches_completed(void)
929{
930 return rcu_batches_completed_sched();
931}
932EXPORT_SYMBOL_GPL(rcu_batches_completed);
933
934/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800935 * Force a quiescent state for RCU, which, because there is no preemptible
936 * RCU, becomes the same as rcu-sched.
937 */
938void rcu_force_quiescent_state(void)
939{
940 rcu_sched_force_quiescent_state();
941}
942EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
943
944/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800945 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700946 * CPUs being in quiescent states.
947 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700948static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700949{
950}
951
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700952/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800953 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700954 * RCU readers.
955 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800956static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700957{
958 return 0;
959}
960
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800961#ifdef CONFIG_HOTPLUG_CPU
962
963/* Because preemptible RCU does not exist, no quieting of tasks. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800964static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800965{
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800966 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800967}
968
969#endif /* #ifdef CONFIG_HOTPLUG_CPU */
970
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700971/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800972 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700973 * tasks blocked within RCU read-side critical sections.
974 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800975static void rcu_print_detail_task_stall(struct rcu_state *rsp)
976{
977}
978
979/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800980 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800981 * tasks blocked within RCU read-side critical sections.
982 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700983static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700984{
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700985 return 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700986}
987
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700988/*
989 * Because preemptible RCU does not exist, there is no need to suppress
990 * its CPU stall warnings.
991 */
992static void rcu_preempt_stall_reset(void)
993{
994}
995
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700996/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800997 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -0700998 * so there is no need to check for blocked tasks. So check only for
999 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -07001000 */
1001static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
1002{
Paul E. McKenney49e29122009-09-18 09:50:19 -07001003 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -07001004}
1005
Paul E. McKenney33f76142009-08-24 09:42:01 -07001006#ifdef CONFIG_HOTPLUG_CPU
1007
1008/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001009 * Because preemptible RCU does not exist, it never needs to migrate
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001010 * tasks that were blocked within RCU read-side critical sections, and
1011 * such non-existent tasks cannot possibly have been blocking the current
1012 * grace period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001013 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001014static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
1015 struct rcu_node *rnp,
1016 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001017{
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001018 return 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001019}
1020
1021/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001022 * Because preemptible RCU does not exist, it never needs CPU-offline
Paul E. McKenney33f76142009-08-24 09:42:01 -07001023 * processing.
1024 */
1025static void rcu_preempt_offline_cpu(int cpu)
1026{
1027}
1028
1029#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1030
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001031/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001032 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001033 * to check.
1034 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001035static void rcu_preempt_check_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001036{
1037}
1038
1039/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001040 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001041 * to process.
1042 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001043static void rcu_preempt_process_callbacks(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001044{
1045}
1046
1047/*
Paul E. McKenney019129d2009-10-14 10:15:56 -07001048 * Wait for an rcu-preempt grace period, but make it happen quickly.
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001049 * But because preemptible RCU does not exist, map to rcu-sched.
Paul E. McKenney019129d2009-10-14 10:15:56 -07001050 */
1051void synchronize_rcu_expedited(void)
1052{
1053 synchronize_sched_expedited();
1054}
1055EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1056
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001057#ifdef CONFIG_HOTPLUG_CPU
1058
1059/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001060 * Because preemptible RCU does not exist, there is never any need to
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001061 * report on tasks preempted in RCU read-side critical sections during
1062 * expedited RCU grace periods.
1063 */
1064static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp)
1065{
1066 return;
1067}
1068
1069#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1070
Paul E. McKenney019129d2009-10-14 10:15:56 -07001071/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001072 * Because preemptible RCU does not exist, it never has any work to do.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001073 */
1074static int rcu_preempt_pending(int cpu)
1075{
1076 return 0;
1077}
1078
1079/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001080 * Because preemptible RCU does not exist, it never needs any CPU.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001081 */
1082static int rcu_preempt_needs_cpu(int cpu)
1083{
1084 return 0;
1085}
1086
1087/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001088 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001089 * another name for rcu_barrier_sched().
1090 */
1091void rcu_barrier(void)
1092{
1093 rcu_barrier_sched();
1094}
1095EXPORT_SYMBOL_GPL(rcu_barrier);
1096
1097/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001098 * Because preemptible RCU does not exist, there is no per-CPU
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001099 * data to initialize.
1100 */
1101static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
1102{
1103}
1104
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001105/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001106 * Because there is no preemptible RCU, there are no callbacks to move.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001107 */
Lai Jiangshan29494be2010-10-20 14:13:06 +08001108static void rcu_preempt_send_cbs_to_online(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001109{
1110}
1111
1112/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001113 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001114 */
1115static void __init __rcu_init_preempt(void)
1116{
1117}
1118
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001119#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001120
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001121#ifdef CONFIG_RCU_BOOST
1122
1123#include "rtmutex_common.h"
1124
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001125#ifdef CONFIG_RCU_TRACE
1126
1127static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1128{
1129 if (list_empty(&rnp->blkd_tasks))
1130 rnp->n_balk_blkd_tasks++;
1131 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1132 rnp->n_balk_exp_gp_tasks++;
1133 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1134 rnp->n_balk_boost_tasks++;
1135 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1136 rnp->n_balk_notblocked++;
1137 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -07001138 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001139 rnp->n_balk_notyet++;
1140 else
1141 rnp->n_balk_nos++;
1142}
1143
1144#else /* #ifdef CONFIG_RCU_TRACE */
1145
1146static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1147{
1148}
1149
1150#endif /* #else #ifdef CONFIG_RCU_TRACE */
1151
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001152/*
1153 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1154 * or ->boost_tasks, advancing the pointer to the next task in the
1155 * ->blkd_tasks list.
1156 *
1157 * Note that irqs must be enabled: boosting the task can block.
1158 * Returns 1 if there are more tasks needing to be boosted.
1159 */
1160static int rcu_boost(struct rcu_node *rnp)
1161{
1162 unsigned long flags;
1163 struct rt_mutex mtx;
1164 struct task_struct *t;
1165 struct list_head *tb;
1166
1167 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1168 return 0; /* Nothing left to boost. */
1169
1170 raw_spin_lock_irqsave(&rnp->lock, flags);
1171
1172 /*
1173 * Recheck under the lock: all tasks in need of boosting
1174 * might exit their RCU read-side critical sections on their own.
1175 */
1176 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1177 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1178 return 0;
1179 }
1180
1181 /*
1182 * Preferentially boost tasks blocking expedited grace periods.
1183 * This cannot starve the normal grace periods because a second
1184 * expedited grace period must boost all blocked tasks, including
1185 * those blocking the pre-existing normal grace period.
1186 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001187 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001188 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001189 rnp->n_exp_boosts++;
1190 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001191 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001192 rnp->n_normal_boosts++;
1193 }
1194 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001195
1196 /*
1197 * We boost task t by manufacturing an rt_mutex that appears to
1198 * be held by task t. We leave a pointer to that rt_mutex where
1199 * task t can find it, and task t will release the mutex when it
1200 * exits its outermost RCU read-side critical section. Then
1201 * simply acquiring this artificial rt_mutex will boost task
1202 * t's priority. (Thanks to tglx for suggesting this approach!)
1203 *
1204 * Note that task t must acquire rnp->lock to remove itself from
1205 * the ->blkd_tasks list, which it will do from exit() if from
1206 * nowhere else. We therefore are guaranteed that task t will
1207 * stay around at least until we drop rnp->lock. Note that
1208 * rnp->lock also resolves races between our priority boosting
1209 * and task t's exiting its outermost RCU read-side critical
1210 * section.
1211 */
1212 t = container_of(tb, struct task_struct, rcu_node_entry);
1213 rt_mutex_init_proxy_locked(&mtx, t);
1214 t->rcu_boost_mutex = &mtx;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001215 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1216 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1217 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1218
1219 return rnp->exp_tasks != NULL || rnp->boost_tasks != NULL;
1220}
1221
1222/*
1223 * Timer handler to initiate waking up of boost kthreads that
1224 * have yielded the CPU due to excessive numbers of tasks to
1225 * boost. We wake up the per-rcu_node kthread, which in turn
1226 * will wake up the booster kthread.
1227 */
1228static void rcu_boost_kthread_timer(unsigned long arg)
1229{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001230 invoke_rcu_node_kthread((struct rcu_node *)arg);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001231}
1232
1233/*
1234 * Priority-boosting kthread. One per leaf rcu_node and one for the
1235 * root rcu_node.
1236 */
1237static int rcu_boost_kthread(void *arg)
1238{
1239 struct rcu_node *rnp = (struct rcu_node *)arg;
1240 int spincnt = 0;
1241 int more2boost;
1242
Paul E. McKenney385680a2011-06-21 22:43:26 -07001243 trace_rcu_utilization("Start boost kthread@init");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001244 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001245 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001246 trace_rcu_utilization("End boost kthread@rcu_wait");
Peter Zijlstra08bca602011-05-20 16:06:29 -07001247 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001248 trace_rcu_utilization("Start boost kthread@rcu_wait");
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001249 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001250 more2boost = rcu_boost(rnp);
1251 if (more2boost)
1252 spincnt++;
1253 else
1254 spincnt = 0;
1255 if (spincnt > 10) {
Paul E. McKenney385680a2011-06-21 22:43:26 -07001256 trace_rcu_utilization("End boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001257 rcu_yield(rcu_boost_kthread_timer, (unsigned long)rnp);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001258 trace_rcu_utilization("Start boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001259 spincnt = 0;
1260 }
1261 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001262 /* NOTREACHED */
Paul E. McKenney385680a2011-06-21 22:43:26 -07001263 trace_rcu_utilization("End boost kthread@notreached");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001264 return 0;
1265}
1266
1267/*
1268 * Check to see if it is time to start boosting RCU readers that are
1269 * blocking the current grace period, and, if so, tell the per-rcu_node
1270 * kthread to start boosting them. If there is an expedited grace
1271 * period in progress, it is always time to boost.
1272 *
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001273 * The caller must hold rnp->lock, which this function releases,
1274 * but irqs remain disabled. The ->boost_kthread_task is immortal,
1275 * so we don't need to worry about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001276 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001277static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001278{
1279 struct task_struct *t;
1280
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001281 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1282 rnp->n_balk_exp_gp_tasks++;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001283 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001284 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001285 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001286 if (rnp->exp_tasks != NULL ||
1287 (rnp->gp_tasks != NULL &&
1288 rnp->boost_tasks == NULL &&
1289 rnp->qsmask == 0 &&
1290 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1291 if (rnp->exp_tasks == NULL)
1292 rnp->boost_tasks = rnp->gp_tasks;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001293 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001294 t = rnp->boost_kthread_task;
1295 if (t != NULL)
1296 wake_up_process(t);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001297 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001298 rcu_initiate_boost_trace(rnp);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001299 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1300 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001301}
1302
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001303/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001304 * Wake up the per-CPU kthread to invoke RCU callbacks.
1305 */
1306static void invoke_rcu_callbacks_kthread(void)
1307{
1308 unsigned long flags;
1309
1310 local_irq_save(flags);
1311 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001312 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
1313 current != __this_cpu_read(rcu_cpu_kthread_task))
1314 wake_up_process(__this_cpu_read(rcu_cpu_kthread_task));
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001315 local_irq_restore(flags);
1316}
1317
1318/*
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001319 * Set the affinity of the boost kthread. The CPU-hotplug locks are
1320 * held, so no one should be messing with the existence of the boost
1321 * kthread.
1322 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001323static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp,
1324 cpumask_var_t cm)
1325{
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001326 struct task_struct *t;
1327
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001328 t = rnp->boost_kthread_task;
1329 if (t != NULL)
1330 set_cpus_allowed_ptr(rnp->boost_kthread_task, cm);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001331}
1332
1333#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1334
1335/*
1336 * Do priority-boost accounting for the start of a new grace period.
1337 */
1338static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1339{
1340 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1341}
1342
1343/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001344 * Create an RCU-boost kthread for the specified node if one does not
1345 * already exist. We only create this kthread for preemptible RCU.
1346 * Returns zero if all is well, a negated errno otherwise.
1347 */
1348static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
1349 struct rcu_node *rnp,
1350 int rnp_index)
1351{
1352 unsigned long flags;
1353 struct sched_param sp;
1354 struct task_struct *t;
1355
1356 if (&rcu_preempt_state != rsp)
1357 return 0;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001358 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001359 if (rnp->boost_kthread_task != NULL)
1360 return 0;
1361 t = kthread_create(rcu_boost_kthread, (void *)rnp,
1362 "rcub%d", rnp_index);
1363 if (IS_ERR(t))
1364 return PTR_ERR(t);
1365 raw_spin_lock_irqsave(&rnp->lock, flags);
1366 rnp->boost_kthread_task = t;
1367 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001368 sp.sched_priority = RCU_KTHREAD_PRIO;
1369 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001370 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001371 return 0;
1372}
1373
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001374#ifdef CONFIG_HOTPLUG_CPU
1375
1376/*
1377 * Stop the RCU's per-CPU kthread when its CPU goes offline,.
1378 */
1379static void rcu_stop_cpu_kthread(int cpu)
1380{
1381 struct task_struct *t;
1382
1383 /* Stop the CPU's kthread. */
1384 t = per_cpu(rcu_cpu_kthread_task, cpu);
1385 if (t != NULL) {
1386 per_cpu(rcu_cpu_kthread_task, cpu) = NULL;
1387 kthread_stop(t);
1388 }
1389}
1390
1391#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1392
1393static void rcu_kthread_do_work(void)
1394{
1395 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1396 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1397 rcu_preempt_do_callbacks();
1398}
1399
1400/*
1401 * Wake up the specified per-rcu_node-structure kthread.
1402 * Because the per-rcu_node kthreads are immortal, we don't need
1403 * to do anything to keep them alive.
1404 */
1405static void invoke_rcu_node_kthread(struct rcu_node *rnp)
1406{
1407 struct task_struct *t;
1408
1409 t = rnp->node_kthread_task;
1410 if (t != NULL)
1411 wake_up_process(t);
1412}
1413
1414/*
1415 * Set the specified CPU's kthread to run RT or not, as specified by
1416 * the to_rt argument. The CPU-hotplug locks are held, so the task
1417 * is not going away.
1418 */
1419static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1420{
1421 int policy;
1422 struct sched_param sp;
1423 struct task_struct *t;
1424
1425 t = per_cpu(rcu_cpu_kthread_task, cpu);
1426 if (t == NULL)
1427 return;
1428 if (to_rt) {
1429 policy = SCHED_FIFO;
1430 sp.sched_priority = RCU_KTHREAD_PRIO;
1431 } else {
1432 policy = SCHED_NORMAL;
1433 sp.sched_priority = 0;
1434 }
1435 sched_setscheduler_nocheck(t, policy, &sp);
1436}
1437
1438/*
1439 * Timer handler to initiate the waking up of per-CPU kthreads that
1440 * have yielded the CPU due to excess numbers of RCU callbacks.
1441 * We wake up the per-rcu_node kthread, which in turn will wake up
1442 * the booster kthread.
1443 */
1444static void rcu_cpu_kthread_timer(unsigned long arg)
1445{
1446 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, arg);
1447 struct rcu_node *rnp = rdp->mynode;
1448
1449 atomic_or(rdp->grpmask, &rnp->wakemask);
1450 invoke_rcu_node_kthread(rnp);
1451}
1452
1453/*
1454 * Drop to non-real-time priority and yield, but only after posting a
1455 * timer that will cause us to regain our real-time priority if we
1456 * remain preempted. Either way, we restore our real-time priority
1457 * before returning.
1458 */
1459static void rcu_yield(void (*f)(unsigned long), unsigned long arg)
1460{
1461 struct sched_param sp;
1462 struct timer_list yield_timer;
1463
1464 setup_timer_on_stack(&yield_timer, f, arg);
1465 mod_timer(&yield_timer, jiffies + 2);
1466 sp.sched_priority = 0;
1467 sched_setscheduler_nocheck(current, SCHED_NORMAL, &sp);
1468 set_user_nice(current, 19);
1469 schedule();
1470 sp.sched_priority = RCU_KTHREAD_PRIO;
1471 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
1472 del_timer(&yield_timer);
1473}
1474
1475/*
1476 * Handle cases where the rcu_cpu_kthread() ends up on the wrong CPU.
1477 * This can happen while the corresponding CPU is either coming online
1478 * or going offline. We cannot wait until the CPU is fully online
1479 * before starting the kthread, because the various notifier functions
1480 * can wait for RCU grace periods. So we park rcu_cpu_kthread() until
1481 * the corresponding CPU is online.
1482 *
1483 * Return 1 if the kthread needs to stop, 0 otherwise.
1484 *
1485 * Caller must disable bh. This function can momentarily enable it.
1486 */
1487static int rcu_cpu_kthread_should_stop(int cpu)
1488{
1489 while (cpu_is_offline(cpu) ||
1490 !cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)) ||
1491 smp_processor_id() != cpu) {
1492 if (kthread_should_stop())
1493 return 1;
1494 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1495 per_cpu(rcu_cpu_kthread_cpu, cpu) = raw_smp_processor_id();
1496 local_bh_enable();
1497 schedule_timeout_uninterruptible(1);
1498 if (!cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)))
1499 set_cpus_allowed_ptr(current, cpumask_of(cpu));
1500 local_bh_disable();
1501 }
1502 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1503 return 0;
1504}
1505
1506/*
1507 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07001508 * RCU softirq used in flavors and configurations of RCU that do not
1509 * support RCU priority boosting.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001510 */
1511static int rcu_cpu_kthread(void *arg)
1512{
1513 int cpu = (int)(long)arg;
1514 unsigned long flags;
1515 int spincnt = 0;
1516 unsigned int *statusp = &per_cpu(rcu_cpu_kthread_status, cpu);
1517 char work;
1518 char *workp = &per_cpu(rcu_cpu_has_work, cpu);
1519
Paul E. McKenney385680a2011-06-21 22:43:26 -07001520 trace_rcu_utilization("Start CPU kthread@init");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001521 for (;;) {
1522 *statusp = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001523 trace_rcu_utilization("End CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001524 rcu_wait(*workp != 0 || kthread_should_stop());
Paul E. McKenney385680a2011-06-21 22:43:26 -07001525 trace_rcu_utilization("Start CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001526 local_bh_disable();
1527 if (rcu_cpu_kthread_should_stop(cpu)) {
1528 local_bh_enable();
1529 break;
1530 }
1531 *statusp = RCU_KTHREAD_RUNNING;
1532 per_cpu(rcu_cpu_kthread_loops, cpu)++;
1533 local_irq_save(flags);
1534 work = *workp;
1535 *workp = 0;
1536 local_irq_restore(flags);
1537 if (work)
1538 rcu_kthread_do_work();
1539 local_bh_enable();
1540 if (*workp != 0)
1541 spincnt++;
1542 else
1543 spincnt = 0;
1544 if (spincnt > 10) {
1545 *statusp = RCU_KTHREAD_YIELDING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001546 trace_rcu_utilization("End CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001547 rcu_yield(rcu_cpu_kthread_timer, (unsigned long)cpu);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001548 trace_rcu_utilization("Start CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001549 spincnt = 0;
1550 }
1551 }
1552 *statusp = RCU_KTHREAD_STOPPED;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001553 trace_rcu_utilization("End CPU kthread@term");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001554 return 0;
1555}
1556
1557/*
1558 * Spawn a per-CPU kthread, setting up affinity and priority.
1559 * Because the CPU hotplug lock is held, no other CPU will be attempting
1560 * to manipulate rcu_cpu_kthread_task. There might be another CPU
1561 * attempting to access it during boot, but the locking in kthread_bind()
1562 * will enforce sufficient ordering.
1563 *
1564 * Please note that we cannot simply refuse to wake up the per-CPU
1565 * kthread because kthreads are created in TASK_UNINTERRUPTIBLE state,
1566 * which can result in softlockup complaints if the task ends up being
1567 * idle for more than a couple of minutes.
1568 *
1569 * However, please note also that we cannot bind the per-CPU kthread to its
1570 * CPU until that CPU is fully online. We also cannot wait until the
1571 * CPU is fully online before we create its per-CPU kthread, as this would
1572 * deadlock the system when CPU notifiers tried waiting for grace
1573 * periods. So we bind the per-CPU kthread to its CPU only if the CPU
1574 * is online. If its CPU is not yet fully online, then the code in
1575 * rcu_cpu_kthread() will wait until it is fully online, and then do
1576 * the binding.
1577 */
1578static int __cpuinit rcu_spawn_one_cpu_kthread(int cpu)
1579{
1580 struct sched_param sp;
1581 struct task_struct *t;
1582
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001583 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001584 per_cpu(rcu_cpu_kthread_task, cpu) != NULL)
1585 return 0;
Eric Dumazet1f288092011-06-16 15:53:18 -07001586 t = kthread_create_on_node(rcu_cpu_kthread,
1587 (void *)(long)cpu,
1588 cpu_to_node(cpu),
1589 "rcuc%d", cpu);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001590 if (IS_ERR(t))
1591 return PTR_ERR(t);
1592 if (cpu_online(cpu))
1593 kthread_bind(t, cpu);
1594 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1595 WARN_ON_ONCE(per_cpu(rcu_cpu_kthread_task, cpu) != NULL);
1596 sp.sched_priority = RCU_KTHREAD_PRIO;
1597 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1598 per_cpu(rcu_cpu_kthread_task, cpu) = t;
1599 wake_up_process(t); /* Get to TASK_INTERRUPTIBLE quickly. */
1600 return 0;
1601}
1602
1603/*
1604 * Per-rcu_node kthread, which is in charge of waking up the per-CPU
1605 * kthreads when needed. We ignore requests to wake up kthreads
1606 * for offline CPUs, which is OK because force_quiescent_state()
1607 * takes care of this case.
1608 */
1609static int rcu_node_kthread(void *arg)
1610{
1611 int cpu;
1612 unsigned long flags;
1613 unsigned long mask;
1614 struct rcu_node *rnp = (struct rcu_node *)arg;
1615 struct sched_param sp;
1616 struct task_struct *t;
1617
1618 for (;;) {
1619 rnp->node_kthread_status = RCU_KTHREAD_WAITING;
1620 rcu_wait(atomic_read(&rnp->wakemask) != 0);
1621 rnp->node_kthread_status = RCU_KTHREAD_RUNNING;
1622 raw_spin_lock_irqsave(&rnp->lock, flags);
1623 mask = atomic_xchg(&rnp->wakemask, 0);
1624 rcu_initiate_boost(rnp, flags); /* releases rnp->lock. */
1625 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1) {
1626 if ((mask & 0x1) == 0)
1627 continue;
1628 preempt_disable();
1629 t = per_cpu(rcu_cpu_kthread_task, cpu);
1630 if (!cpu_online(cpu) || t == NULL) {
1631 preempt_enable();
1632 continue;
1633 }
1634 per_cpu(rcu_cpu_has_work, cpu) = 1;
1635 sp.sched_priority = RCU_KTHREAD_PRIO;
1636 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1637 preempt_enable();
1638 }
1639 }
1640 /* NOTREACHED */
1641 rnp->node_kthread_status = RCU_KTHREAD_STOPPED;
1642 return 0;
1643}
1644
1645/*
1646 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1647 * served by the rcu_node in question. The CPU hotplug lock is still
1648 * held, so the value of rnp->qsmaskinit will be stable.
1649 *
1650 * We don't include outgoingcpu in the affinity set, use -1 if there is
1651 * no outgoing CPU. If there are no CPUs left in the affinity set,
1652 * this function allows the kthread to execute on any CPU.
1653 */
1654static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1655{
1656 cpumask_var_t cm;
1657 int cpu;
1658 unsigned long mask = rnp->qsmaskinit;
1659
1660 if (rnp->node_kthread_task == NULL)
1661 return;
1662 if (!alloc_cpumask_var(&cm, GFP_KERNEL))
1663 return;
1664 cpumask_clear(cm);
1665 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1666 if ((mask & 0x1) && cpu != outgoingcpu)
1667 cpumask_set_cpu(cpu, cm);
1668 if (cpumask_weight(cm) == 0) {
1669 cpumask_setall(cm);
1670 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1671 cpumask_clear_cpu(cpu, cm);
1672 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1673 }
1674 set_cpus_allowed_ptr(rnp->node_kthread_task, cm);
1675 rcu_boost_kthread_setaffinity(rnp, cm);
1676 free_cpumask_var(cm);
1677}
1678
1679/*
1680 * Spawn a per-rcu_node kthread, setting priority and affinity.
1681 * Called during boot before online/offline can happen, or, if
1682 * during runtime, with the main CPU-hotplug locks held. So only
1683 * one of these can be executing at a time.
1684 */
1685static int __cpuinit rcu_spawn_one_node_kthread(struct rcu_state *rsp,
1686 struct rcu_node *rnp)
1687{
1688 unsigned long flags;
1689 int rnp_index = rnp - &rsp->node[0];
1690 struct sched_param sp;
1691 struct task_struct *t;
1692
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001693 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001694 rnp->qsmaskinit == 0)
1695 return 0;
1696 if (rnp->node_kthread_task == NULL) {
1697 t = kthread_create(rcu_node_kthread, (void *)rnp,
1698 "rcun%d", rnp_index);
1699 if (IS_ERR(t))
1700 return PTR_ERR(t);
1701 raw_spin_lock_irqsave(&rnp->lock, flags);
1702 rnp->node_kthread_task = t;
1703 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1704 sp.sched_priority = 99;
1705 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1706 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
1707 }
1708 return rcu_spawn_one_boost_kthread(rsp, rnp, rnp_index);
1709}
1710
1711/*
1712 * Spawn all kthreads -- called as soon as the scheduler is running.
1713 */
1714static int __init rcu_spawn_kthreads(void)
1715{
1716 int cpu;
1717 struct rcu_node *rnp;
1718
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001719 rcu_scheduler_fully_active = 1;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001720 for_each_possible_cpu(cpu) {
1721 per_cpu(rcu_cpu_has_work, cpu) = 0;
1722 if (cpu_online(cpu))
1723 (void)rcu_spawn_one_cpu_kthread(cpu);
1724 }
1725 rnp = rcu_get_root(rcu_state);
1726 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1727 if (NUM_RCU_NODES > 1) {
1728 rcu_for_each_leaf_node(rcu_state, rnp)
1729 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1730 }
1731 return 0;
1732}
1733early_initcall(rcu_spawn_kthreads);
1734
1735static void __cpuinit rcu_prepare_kthreads(int cpu)
1736{
1737 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1738 struct rcu_node *rnp = rdp->mynode;
1739
1740 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001741 if (rcu_scheduler_fully_active) {
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001742 (void)rcu_spawn_one_cpu_kthread(cpu);
1743 if (rnp->node_kthread_task == NULL)
1744 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1745 }
1746}
1747
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001748#else /* #ifdef CONFIG_RCU_BOOST */
1749
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001750static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001751{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001752 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001753}
1754
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001755static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001756{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001757 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001758}
1759
1760static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1761{
1762}
1763
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001764#ifdef CONFIG_HOTPLUG_CPU
1765
1766static void rcu_stop_cpu_kthread(int cpu)
1767{
1768}
1769
1770#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1771
1772static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1773{
1774}
1775
1776static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1777{
1778}
1779
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001780static int __init rcu_scheduler_really_started(void)
1781{
1782 rcu_scheduler_fully_active = 1;
1783 return 0;
1784}
1785early_initcall(rcu_scheduler_really_started);
1786
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001787static void __cpuinit rcu_prepare_kthreads(int cpu)
1788{
1789}
1790
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001791#endif /* #else #ifdef CONFIG_RCU_BOOST */
1792
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001793#ifndef CONFIG_SMP
1794
1795void synchronize_sched_expedited(void)
1796{
1797 cond_resched();
1798}
1799EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
1800
1801#else /* #ifndef CONFIG_SMP */
1802
Tejun Heoe27fc962010-11-22 21:36:11 -08001803static atomic_t sync_sched_expedited_started = ATOMIC_INIT(0);
1804static atomic_t sync_sched_expedited_done = ATOMIC_INIT(0);
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001805
1806static int synchronize_sched_expedited_cpu_stop(void *data)
1807{
1808 /*
1809 * There must be a full memory barrier on each affected CPU
1810 * between the time that try_stop_cpus() is called and the
1811 * time that it returns.
1812 *
1813 * In the current initial implementation of cpu_stop, the
1814 * above condition is already met when the control reaches
1815 * this point and the following smp_mb() is not strictly
1816 * necessary. Do smp_mb() anyway for documentation and
1817 * robustness against future implementation changes.
1818 */
1819 smp_mb(); /* See above comment block. */
1820 return 0;
1821}
1822
1823/*
1824 * Wait for an rcu-sched grace period to elapse, but use "big hammer"
1825 * approach to force grace period to end quickly. This consumes
1826 * significant time on all CPUs, and is thus not recommended for
1827 * any sort of common-case code.
1828 *
1829 * Note that it is illegal to call this function while holding any
1830 * lock that is acquired by a CPU-hotplug notifier. Failing to
1831 * observe this restriction will result in deadlock.
Paul E. McKenneydb3a8922010-10-25 07:39:22 -07001832 *
Tejun Heoe27fc962010-11-22 21:36:11 -08001833 * This implementation can be thought of as an application of ticket
1834 * locking to RCU, with sync_sched_expedited_started and
1835 * sync_sched_expedited_done taking on the roles of the halves
1836 * of the ticket-lock word. Each task atomically increments
1837 * sync_sched_expedited_started upon entry, snapshotting the old value,
1838 * then attempts to stop all the CPUs. If this succeeds, then each
1839 * CPU will have executed a context switch, resulting in an RCU-sched
1840 * grace period. We are then done, so we use atomic_cmpxchg() to
1841 * update sync_sched_expedited_done to match our snapshot -- but
1842 * only if someone else has not already advanced past our snapshot.
1843 *
1844 * On the other hand, if try_stop_cpus() fails, we check the value
1845 * of sync_sched_expedited_done. If it has advanced past our
1846 * initial snapshot, then someone else must have forced a grace period
1847 * some time after we took our snapshot. In this case, our work is
1848 * done for us, and we can simply return. Otherwise, we try again,
1849 * but keep our initial snapshot for purposes of checking for someone
1850 * doing our work for us.
1851 *
1852 * If we fail too many times in a row, we fall back to synchronize_sched().
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001853 */
1854void synchronize_sched_expedited(void)
1855{
Tejun Heoe27fc962010-11-22 21:36:11 -08001856 int firstsnap, s, snap, trycount = 0;
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001857
Tejun Heoe27fc962010-11-22 21:36:11 -08001858 /* Note that atomic_inc_return() implies full memory barrier. */
1859 firstsnap = snap = atomic_inc_return(&sync_sched_expedited_started);
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001860 get_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001861
1862 /*
1863 * Each pass through the following loop attempts to force a
1864 * context switch on each CPU.
1865 */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001866 while (try_stop_cpus(cpu_online_mask,
1867 synchronize_sched_expedited_cpu_stop,
1868 NULL) == -EAGAIN) {
1869 put_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001870
1871 /* No joy, try again later. Or just synchronize_sched(). */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001872 if (trycount++ < 10)
1873 udelay(trycount * num_online_cpus());
1874 else {
1875 synchronize_sched();
1876 return;
1877 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001878
1879 /* Check to see if someone else did our work for us. */
1880 s = atomic_read(&sync_sched_expedited_done);
1881 if (UINT_CMP_GE((unsigned)s, (unsigned)firstsnap)) {
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001882 smp_mb(); /* ensure test happens before caller kfree */
1883 return;
1884 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001885
1886 /*
1887 * Refetching sync_sched_expedited_started allows later
1888 * callers to piggyback on our grace period. We subtract
1889 * 1 to get the same token that the last incrementer got.
1890 * We retry after they started, so our grace period works
1891 * for them, and they started after our first try, so their
1892 * grace period works for us.
1893 */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001894 get_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001895 snap = atomic_read(&sync_sched_expedited_started) - 1;
1896 smp_mb(); /* ensure read is before try_stop_cpus(). */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001897 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001898
1899 /*
1900 * Everyone up to our most recent fetch is covered by our grace
1901 * period. Update the counter, but only if our work is still
1902 * relevant -- which it won't be if someone who started later
1903 * than we did beat us to the punch.
1904 */
1905 do {
1906 s = atomic_read(&sync_sched_expedited_done);
1907 if (UINT_CMP_GE((unsigned)s, (unsigned)snap)) {
1908 smp_mb(); /* ensure test happens before caller kfree */
1909 break;
1910 }
1911 } while (atomic_cmpxchg(&sync_sched_expedited_done, s, snap) != s);
1912
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001913 put_online_cpus();
1914}
1915EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
1916
1917#endif /* #else #ifndef CONFIG_SMP */
1918
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001919#if !defined(CONFIG_RCU_FAST_NO_HZ)
1920
1921/*
1922 * Check to see if any future RCU-related work will need to be done
1923 * by the current CPU, even if none need be done immediately, returning
1924 * 1 if so. This function is part of the RCU implementation; it is -not-
1925 * an exported member of the RCU API.
1926 *
1927 * Because we have preemptible RCU, just check whether this CPU needs
1928 * any flavor of RCU. Do not chew up lots of CPU cycles with preemption
1929 * disabled in a most-likely vain attempt to cause RCU not to need this CPU.
1930 */
1931int rcu_needs_cpu(int cpu)
1932{
1933 return rcu_needs_cpu_quick_check(cpu);
1934}
1935
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001936/*
1937 * Check to see if we need to continue a callback-flush operations to
1938 * allow the last CPU to enter dyntick-idle mode. But fast dyntick-idle
1939 * entry is not configured, so we never do need to.
1940 */
1941static void rcu_needs_cpu_flush(void)
1942{
1943}
1944
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001945#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1946
1947#define RCU_NEEDS_CPU_FLUSHES 5
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001948static DEFINE_PER_CPU(int, rcu_dyntick_drain);
Paul E. McKenney71da8132010-02-26 16:38:58 -08001949static DEFINE_PER_CPU(unsigned long, rcu_dyntick_holdoff);
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001950
1951/*
1952 * Check to see if any future RCU-related work will need to be done
1953 * by the current CPU, even if none need be done immediately, returning
1954 * 1 if so. This function is part of the RCU implementation; it is -not-
1955 * an exported member of the RCU API.
1956 *
1957 * Because we are not supporting preemptible RCU, attempt to accelerate
1958 * any current grace periods so that RCU no longer needs this CPU, but
1959 * only if all other CPUs are already in dynticks-idle mode. This will
1960 * allow the CPU cores to be powered down immediately, as opposed to after
1961 * waiting many milliseconds for grace periods to elapse.
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001962 *
1963 * Because it is not legal to invoke rcu_process_callbacks() with irqs
1964 * disabled, we do one pass of force_quiescent_state(), then do a
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001965 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001966 * later. The per-cpu rcu_dyntick_drain variable controls the sequencing.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001967 */
1968int rcu_needs_cpu(int cpu)
1969{
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001970 int c = 0;
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001971 int snap;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001972 int thatcpu;
1973
Paul E. McKenney622ea682010-02-27 14:53:07 -08001974 /* Check for being in the holdoff period. */
1975 if (per_cpu(rcu_dyntick_holdoff, cpu) == jiffies)
1976 return rcu_needs_cpu_quick_check(cpu);
1977
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001978 /* Don't bother unless we are the last non-dyntick-idle CPU. */
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001979 for_each_online_cpu(thatcpu) {
1980 if (thatcpu == cpu)
1981 continue;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001982 snap = atomic_add_return(0, &per_cpu(rcu_dynticks,
1983 thatcpu).dynticks);
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001984 smp_mb(); /* Order sampling of snap with end of grace period. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001985 if ((snap & 0x1) != 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001986 per_cpu(rcu_dyntick_drain, cpu) = 0;
Paul E. McKenney71da8132010-02-26 16:38:58 -08001987 per_cpu(rcu_dyntick_holdoff, cpu) = jiffies - 1;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001988 return rcu_needs_cpu_quick_check(cpu);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001989 }
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001990 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001991
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001992 /* Check and update the rcu_dyntick_drain sequencing. */
1993 if (per_cpu(rcu_dyntick_drain, cpu) <= 0) {
1994 /* First time through, initialize the counter. */
1995 per_cpu(rcu_dyntick_drain, cpu) = RCU_NEEDS_CPU_FLUSHES;
1996 } else if (--per_cpu(rcu_dyntick_drain, cpu) <= 0) {
1997 /* We have hit the limit, so time to give up. */
Paul E. McKenney71da8132010-02-26 16:38:58 -08001998 per_cpu(rcu_dyntick_holdoff, cpu) = jiffies;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001999 return rcu_needs_cpu_quick_check(cpu);
2000 }
2001
2002 /* Do one step pushing remaining RCU callbacks through. */
2003 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
2004 rcu_sched_qs(cpu);
2005 force_quiescent_state(&rcu_sched_state, 0);
2006 c = c || per_cpu(rcu_sched_data, cpu).nxtlist;
2007 }
2008 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
2009 rcu_bh_qs(cpu);
2010 force_quiescent_state(&rcu_bh_state, 0);
2011 c = c || per_cpu(rcu_bh_data, cpu).nxtlist;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002012 }
2013
2014 /* If RCU callbacks are still pending, RCU still needs this CPU. */
Paul E. McKenney622ea682010-02-27 14:53:07 -08002015 if (c)
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002016 invoke_rcu_core();
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002017 return c;
2018}
2019
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002020/*
2021 * Check to see if we need to continue a callback-flush operations to
2022 * allow the last CPU to enter dyntick-idle mode.
2023 */
2024static void rcu_needs_cpu_flush(void)
2025{
2026 int cpu = smp_processor_id();
Paul E. McKenney71da8132010-02-26 16:38:58 -08002027 unsigned long flags;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002028
2029 if (per_cpu(rcu_dyntick_drain, cpu) <= 0)
2030 return;
Paul E. McKenney71da8132010-02-26 16:38:58 -08002031 local_irq_save(flags);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002032 (void)rcu_needs_cpu(cpu);
Paul E. McKenney71da8132010-02-26 16:38:58 -08002033 local_irq_restore(flags);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002034}
2035
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002036#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */