blob: 970329853dc51bf9a30367309305c67c1f5f0c0d [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
67struct rcu_state rcu_preempt_state = RCU_STATE_INITIALIZER(rcu_preempt_state);
68DEFINE_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. McKenneyc64ac3c2009-11-10 13:37:22 -0800125 rdp->passed_quiesc_completed = rdp->gpnum - 1;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700126 barrier();
127 rdp->passed_quiesc = 1;
Paul E. McKenney25502a62010-04-01 17:37:01 -0700128 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700129}
130
131/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700132 * We have entered the scheduler, and the current task might soon be
133 * context-switched away from. If this task is in an RCU read-side
134 * critical section, we will no longer be able to rely on the CPU to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800135 * record that fact, so we enqueue the task on the blkd_tasks list.
136 * The task will dequeue itself when it exits the outermost enclosing
137 * RCU read-side critical section. Therefore, the current grace period
138 * cannot be permitted to complete until the blkd_tasks list entries
139 * predating the current grace period drain, in other words, until
140 * rnp->gp_tasks becomes NULL.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700141 *
142 * Caller must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700143 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700144static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700145{
146 struct task_struct *t = current;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700147 unsigned long flags;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700148 struct rcu_data *rdp;
149 struct rcu_node *rnp;
150
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700151 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700152 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
153
154 /* Possibly blocking in an RCU read-side critical section. */
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800155 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700156 rnp = rdp->mynode;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800157 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700158 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
Paul E. McKenney86848962009-08-27 15:00:12 -0700159 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700160
161 /*
162 * If this CPU has already checked in, then this task
163 * will hold up the next grace period rather than the
164 * current grace period. Queue the task accordingly.
165 * If the task is queued for the current grace period
166 * (i.e., this CPU has not yet passed through a quiescent
167 * state for the current grace period), then as long
168 * as that task remains queued, the current grace period
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800169 * cannot end. Note that there is some uncertainty as
170 * to exactly when the current grace period started.
171 * We take a conservative approach, which can result
172 * in unnecessarily waiting on tasks that started very
173 * slightly after the current grace period began. C'est
174 * la vie!!!
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700175 *
176 * But first, note that the current CPU must still be
177 * on line!
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700178 */
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700179 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700180 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800181 if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) {
182 list_add(&t->rcu_node_entry, rnp->gp_tasks->prev);
183 rnp->gp_tasks = &t->rcu_node_entry;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800184#ifdef CONFIG_RCU_BOOST
185 if (rnp->boost_tasks != NULL)
186 rnp->boost_tasks = rnp->gp_tasks;
187#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800188 } else {
189 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
190 if (rnp->qsmask & rdp->grpmask)
191 rnp->gp_tasks = &t->rcu_node_entry;
192 }
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800193 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700194 } else if (t->rcu_read_lock_nesting < 0 &&
195 t->rcu_read_unlock_special) {
196
197 /*
198 * Complete exit from RCU read-side critical section on
199 * behalf of preempted instance of __rcu_read_unlock().
200 */
201 rcu_read_unlock_special(t);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700202 }
203
204 /*
205 * Either we were not in an RCU read-side critical section to
206 * begin with, or we have now recorded that critical section
207 * globally. Either way, we can now note a quiescent state
208 * for this CPU. Again, if we were in an RCU read-side critical
209 * section, and if that critical section was blocking the current
210 * grace period, then the fact that the task has been enqueued
211 * means that we continue to block the current grace period.
212 */
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700213 local_irq_save(flags);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700214 rcu_preempt_qs(cpu);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700215 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700216}
217
218/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800219 * Tree-preemptible RCU implementation for rcu_read_lock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700220 * Just increment ->rcu_read_lock_nesting, shared state will be updated
221 * if we block.
222 */
223void __rcu_read_lock(void)
224{
Paul E. McKenney80dcf602010-08-19 16:57:45 -0700225 current->rcu_read_lock_nesting++;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700226 barrier(); /* needed if we ever invoke rcu_read_lock in rcutree.c */
227}
228EXPORT_SYMBOL_GPL(__rcu_read_lock);
229
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700230/*
231 * Check for preempted RCU readers blocking the current grace period
232 * for the specified rcu_node structure. If the caller needs a reliable
233 * answer, it must hold the rcu_node's ->lock.
234 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800235static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700236{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800237 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700238}
239
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800240/*
241 * Record a quiescent state for all tasks that were previously queued
242 * on the specified rcu_node structure and that were blocking the current
243 * RCU grace period. The caller must hold the specified rnp->lock with
244 * irqs disabled, and this lock is released upon return, but irqs remain
245 * disabled.
246 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800247static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800248 __releases(rnp->lock)
249{
250 unsigned long mask;
251 struct rcu_node *rnp_p;
252
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800253 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800254 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800255 return; /* Still need more quiescent states! */
256 }
257
258 rnp_p = rnp->parent;
259 if (rnp_p == NULL) {
260 /*
261 * Either there is only one rcu_node in the tree,
262 * or tasks were kicked up to root rcu_node due to
263 * CPUs going offline.
264 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800265 rcu_report_qs_rsp(&rcu_preempt_state, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800266 return;
267 }
268
269 /* Report up the rest of the hierarchy. */
270 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800271 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
272 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800273 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800274}
275
276/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800277 * Advance a ->blkd_tasks-list pointer to the next entry, instead
278 * returning NULL if at the end of the list.
279 */
280static struct list_head *rcu_next_node_entry(struct task_struct *t,
281 struct rcu_node *rnp)
282{
283 struct list_head *np;
284
285 np = t->rcu_node_entry.next;
286 if (np == &rnp->blkd_tasks)
287 np = NULL;
288 return np;
289}
290
291/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800292 * Handle special cases during rcu_read_unlock(), such as needing to
293 * notify RCU core processing or task having blocked during the RCU
294 * read-side critical section.
295 */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700296static noinline void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700297{
298 int empty;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800299 int empty_exp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700300 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800301 struct list_head *np;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700302 struct rcu_node *rnp;
303 int special;
304
305 /* NMI handlers cannot block and cannot safely manipulate state. */
306 if (in_nmi())
307 return;
308
309 local_irq_save(flags);
310
311 /*
312 * If RCU core is waiting for this CPU to exit critical section,
313 * let it know that we have done so.
314 */
315 special = t->rcu_read_unlock_special;
316 if (special & RCU_READ_UNLOCK_NEED_QS) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700317 rcu_preempt_qs(smp_processor_id());
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700318 }
319
320 /* Hardware IRQ handlers cannot block. */
Peter Zijlstraec433f02011-07-19 15:32:00 -0700321 if (in_irq() || in_serving_softirq()) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700322 local_irq_restore(flags);
323 return;
324 }
325
326 /* Clean up if blocked during RCU read-side critical section. */
327 if (special & RCU_READ_UNLOCK_BLOCKED) {
328 t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED;
329
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700330 /*
331 * Remove this task from the list it blocked on. The
332 * task can migrate while we acquire the lock, but at
333 * most one time. So at most two passes through loop.
334 */
335 for (;;) {
Paul E. McKenney86848962009-08-27 15:00:12 -0700336 rnp = t->rcu_blocked_node;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800337 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700338 if (rnp == t->rcu_blocked_node)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700339 break;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800340 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700341 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800342 empty = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800343 empty_exp = !rcu_preempted_readers_exp(rnp);
344 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800345 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700346 list_del_init(&t->rcu_node_entry);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800347 if (&t->rcu_node_entry == rnp->gp_tasks)
348 rnp->gp_tasks = np;
349 if (&t->rcu_node_entry == rnp->exp_tasks)
350 rnp->exp_tasks = np;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800351#ifdef CONFIG_RCU_BOOST
352 if (&t->rcu_node_entry == rnp->boost_tasks)
353 rnp->boost_tasks = np;
Paul E. McKenney7765be22011-07-14 12:24:11 -0700354 /* Snapshot and clear ->rcu_boosted with rcu_node lock held. */
355 if (t->rcu_boosted) {
356 special |= RCU_READ_UNLOCK_BOOSTED;
357 t->rcu_boosted = 0;
358 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800359#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700360 t->rcu_blocked_node = NULL;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700361
362 /*
363 * If this was the last task on the current list, and if
364 * we aren't waiting on any CPUs, report the quiescent state.
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800365 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700366 */
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800367 if (empty)
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800368 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800369 else
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800370 rcu_report_unblock_qs_rnp(rnp, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800371
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800372#ifdef CONFIG_RCU_BOOST
373 /* Unboost if we were boosted. */
374 if (special & RCU_READ_UNLOCK_BOOSTED) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800375 rt_mutex_unlock(t->rcu_boost_mutex);
376 t->rcu_boost_mutex = NULL;
377 }
378#endif /* #ifdef CONFIG_RCU_BOOST */
379
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800380 /*
381 * If this was the last task on the expedited lists,
382 * then we need to report up the rcu_node hierarchy.
383 */
384 if (!empty_exp && !rcu_preempted_readers_exp(rnp))
385 rcu_report_exp_rnp(&rcu_preempt_state, rnp);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800386 } else {
387 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700388 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700389}
390
391/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800392 * Tree-preemptible RCU implementation for rcu_read_unlock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700393 * Decrement ->rcu_read_lock_nesting. If the result is zero (outermost
394 * rcu_read_unlock()) and ->rcu_read_unlock_special is non-zero, then
395 * invoke rcu_read_unlock_special() to clean up after a context switch
396 * in an RCU read-side critical section and other special cases.
397 */
398void __rcu_read_unlock(void)
399{
400 struct task_struct *t = current;
401
402 barrier(); /* needed if we ever invoke rcu_read_unlock in rcutree.c */
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700403 if (t->rcu_read_lock_nesting != 1)
404 --t->rcu_read_lock_nesting;
405 else {
406 t->rcu_read_lock_nesting = INT_MIN;
407 barrier(); /* assign before ->rcu_read_unlock_special load */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700408 if (unlikely(ACCESS_ONCE(t->rcu_read_unlock_special)))
409 rcu_read_unlock_special(t);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700410 barrier(); /* ->rcu_read_unlock_special load before assign */
411 t->rcu_read_lock_nesting = 0;
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700412 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800413#ifdef CONFIG_PROVE_LOCKING
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700414 {
415 int rrln = ACCESS_ONCE(t->rcu_read_lock_nesting);
416
417 WARN_ON_ONCE(rrln < 0 && rrln > INT_MIN / 2);
418 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800419#endif /* #ifdef CONFIG_PROVE_LOCKING */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700420}
421EXPORT_SYMBOL_GPL(__rcu_read_unlock);
422
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800423#ifdef CONFIG_RCU_CPU_STALL_VERBOSE
424
425/*
426 * Dump detailed information for all tasks blocking the current RCU
427 * grace period on the specified rcu_node structure.
428 */
429static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
430{
431 unsigned long flags;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800432 struct task_struct *t;
433
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800434 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800435 return;
436 raw_spin_lock_irqsave(&rnp->lock, flags);
437 t = list_entry(rnp->gp_tasks,
438 struct task_struct, rcu_node_entry);
439 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
440 sched_show_task(t);
441 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800442}
443
444/*
445 * Dump detailed information for all tasks blocking the current RCU
446 * grace period.
447 */
448static void rcu_print_detail_task_stall(struct rcu_state *rsp)
449{
450 struct rcu_node *rnp = rcu_get_root(rsp);
451
452 rcu_print_detail_task_stall_rnp(rnp);
453 rcu_for_each_leaf_node(rsp, rnp)
454 rcu_print_detail_task_stall_rnp(rnp);
455}
456
457#else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
458
459static void rcu_print_detail_task_stall(struct rcu_state *rsp)
460{
461}
462
463#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
464
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700465/*
466 * Scan the current list of tasks blocked within RCU read-side critical
467 * sections, printing out the tid of each.
468 */
469static void rcu_print_task_stall(struct rcu_node *rnp)
470{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700471 struct task_struct *t;
472
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800473 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800474 return;
475 t = list_entry(rnp->gp_tasks,
476 struct task_struct, rcu_node_entry);
477 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
478 printk(" P%d", t->pid);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700479}
480
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700481/*
482 * Suppress preemptible RCU's CPU stall warnings by pushing the
483 * time of the next stall-warning message comfortably far into the
484 * future.
485 */
486static void rcu_preempt_stall_reset(void)
487{
488 rcu_preempt_state.jiffies_stall = jiffies + ULONG_MAX / 2;
489}
490
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700491/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700492 * Check that the list of blocked tasks for the newly completed grace
493 * period is in fact empty. It is a serious bug to complete a grace
494 * period that still has RCU readers blocked! This function must be
495 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
496 * must be held by the caller.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800497 *
498 * Also, if there are blocked tasks on the list, they automatically
499 * block the newly created grace period, so set up ->gp_tasks accordingly.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700500 */
501static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
502{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800503 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800504 if (!list_empty(&rnp->blkd_tasks))
505 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700506 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700507}
508
Paul E. McKenney33f76142009-08-24 09:42:01 -0700509#ifdef CONFIG_HOTPLUG_CPU
510
511/*
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700512 * Handle tasklist migration for case in which all CPUs covered by the
513 * specified rcu_node have gone offline. Move them up to the root
514 * rcu_node. The reason for not just moving them to the immediate
515 * parent is to remove the need for rcu_read_unlock_special() to
516 * make more than two attempts to acquire the target rcu_node's lock.
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800517 * Returns true if there were tasks blocking the current RCU grace
518 * period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700519 *
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700520 * Returns 1 if there was previously a task blocking the current grace
521 * period on the specified rcu_node structure.
522 *
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700523 * The caller must hold rnp->lock with irqs disabled.
524 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700525static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
526 struct rcu_node *rnp,
527 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700528{
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700529 struct list_head *lp;
530 struct list_head *lp_root;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800531 int retval = 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700532 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800533 struct task_struct *t;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700534
Paul E. McKenney86848962009-08-27 15:00:12 -0700535 if (rnp == rnp_root) {
536 WARN_ONCE(1, "Last CPU thought to be offlined?");
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700537 return 0; /* Shouldn't happen: at least one CPU online. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700538 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800539
540 /* If we are on an internal node, complain bitterly. */
541 WARN_ON_ONCE(rnp != rdp->mynode);
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700542
543 /*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800544 * Move tasks up to root rcu_node. Don't try to get fancy for
545 * this corner-case operation -- just put this node's tasks
546 * at the head of the root node's list, and update the root node's
547 * ->gp_tasks and ->exp_tasks pointers to those of this node's,
548 * if non-NULL. This might result in waiting for more tasks than
549 * absolutely necessary, but this is a good performance/complexity
550 * tradeoff.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700551 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800552 if (rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800553 retval |= RCU_OFL_TASKS_NORM_GP;
554 if (rcu_preempted_readers_exp(rnp))
555 retval |= RCU_OFL_TASKS_EXP_GP;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800556 lp = &rnp->blkd_tasks;
557 lp_root = &rnp_root->blkd_tasks;
558 while (!list_empty(lp)) {
559 t = list_entry(lp->next, typeof(*t), rcu_node_entry);
560 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
561 list_del(&t->rcu_node_entry);
562 t->rcu_blocked_node = rnp_root;
563 list_add(&t->rcu_node_entry, lp_root);
564 if (&t->rcu_node_entry == rnp->gp_tasks)
565 rnp_root->gp_tasks = rnp->gp_tasks;
566 if (&t->rcu_node_entry == rnp->exp_tasks)
567 rnp_root->exp_tasks = rnp->exp_tasks;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800568#ifdef CONFIG_RCU_BOOST
569 if (&t->rcu_node_entry == rnp->boost_tasks)
570 rnp_root->boost_tasks = rnp->boost_tasks;
571#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800572 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700573 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800574
575#ifdef CONFIG_RCU_BOOST
576 /* In case root is being boosted and leaf is not. */
577 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
578 if (rnp_root->boost_tasks != NULL &&
579 rnp_root->boost_tasks != rnp_root->gp_tasks)
580 rnp_root->boost_tasks = rnp_root->gp_tasks;
581 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
582#endif /* #ifdef CONFIG_RCU_BOOST */
583
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800584 rnp->gp_tasks = NULL;
585 rnp->exp_tasks = NULL;
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700586 return retval;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700587}
588
589/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800590 * Do CPU-offline processing for preemptible RCU.
Paul E. McKenney33f76142009-08-24 09:42:01 -0700591 */
592static void rcu_preempt_offline_cpu(int cpu)
593{
594 __rcu_offline_cpu(cpu, &rcu_preempt_state);
595}
596
597#endif /* #ifdef CONFIG_HOTPLUG_CPU */
598
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700599/*
600 * Check for a quiescent state from the current CPU. When a task blocks,
601 * the task is recorded in the corresponding CPU's rcu_node structure,
602 * which is checked elsewhere.
603 *
604 * Caller must disable hard irqs.
605 */
606static void rcu_preempt_check_callbacks(int cpu)
607{
608 struct task_struct *t = current;
609
610 if (t->rcu_read_lock_nesting == 0) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700611 rcu_preempt_qs(cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700612 return;
613 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700614 if (t->rcu_read_lock_nesting > 0 &&
615 per_cpu(rcu_preempt_data, cpu).qs_pending)
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700616 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700617}
618
619/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800620 * Process callbacks for preemptible RCU.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700621 */
622static void rcu_preempt_process_callbacks(void)
623{
624 __rcu_process_callbacks(&rcu_preempt_state,
625 &__get_cpu_var(rcu_preempt_data));
626}
627
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700628#ifdef CONFIG_RCU_BOOST
629
Shaohua Li09223372011-06-14 13:26:25 +0800630static void rcu_preempt_do_callbacks(void)
631{
632 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
633}
634
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700635#endif /* #ifdef CONFIG_RCU_BOOST */
636
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700637/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800638 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700639 */
640void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
641{
642 __call_rcu(head, func, &rcu_preempt_state);
643}
644EXPORT_SYMBOL_GPL(call_rcu);
645
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800646/**
647 * synchronize_rcu - wait until a grace period has elapsed.
648 *
649 * Control will return to the caller some time after a full grace
650 * period has elapsed, in other words after all currently executing RCU
Paul E. McKenney77d84852010-07-08 17:38:59 -0700651 * read-side critical sections have completed. Note, however, that
652 * upon return from synchronize_rcu(), the caller might well be executing
653 * concurrently with new RCU read-side critical sections that began while
654 * synchronize_rcu() was waiting. RCU read-side critical sections are
655 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800656 */
657void synchronize_rcu(void)
658{
659 struct rcu_synchronize rcu;
660
661 if (!rcu_scheduler_active)
662 return;
663
Paul E. McKenney72d5a9f2010-05-10 17:12:17 -0700664 init_rcu_head_on_stack(&rcu.head);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800665 init_completion(&rcu.completion);
666 /* Will wake me after RCU finished. */
667 call_rcu(&rcu.head, wakeme_after_rcu);
668 /* Wait for it. */
669 wait_for_completion(&rcu.completion);
Paul E. McKenney72d5a9f2010-05-10 17:12:17 -0700670 destroy_rcu_head_on_stack(&rcu.head);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800671}
672EXPORT_SYMBOL_GPL(synchronize_rcu);
673
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800674static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
675static long sync_rcu_preempt_exp_count;
676static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
677
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700678/*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800679 * Return non-zero if there are any tasks in RCU read-side critical
680 * sections blocking the current preemptible-RCU expedited grace period.
681 * If there is no preemptible-RCU expedited grace period currently in
682 * progress, returns zero unconditionally.
683 */
684static int rcu_preempted_readers_exp(struct rcu_node *rnp)
685{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800686 return rnp->exp_tasks != NULL;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800687}
688
689/*
690 * return non-zero if there is no RCU expedited grace period in progress
691 * for the specified rcu_node structure, in other words, if all CPUs and
692 * tasks covered by the specified rcu_node structure have done their bit
693 * for the current expedited grace period. Works only for preemptible
694 * RCU -- other RCU implementation use other means.
695 *
696 * Caller must hold sync_rcu_preempt_exp_mutex.
697 */
698static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
699{
700 return !rcu_preempted_readers_exp(rnp) &&
701 ACCESS_ONCE(rnp->expmask) == 0;
702}
703
704/*
705 * Report the exit from RCU read-side critical section for the last task
706 * that queued itself during or before the current expedited preemptible-RCU
707 * grace period. This event is reported either to the rcu_node structure on
708 * which the task was queued or to one of that rcu_node structure's ancestors,
709 * recursively up the tree. (Calm down, calm down, we do the recursion
710 * iteratively!)
711 *
712 * Caller must hold sync_rcu_preempt_exp_mutex.
713 */
714static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp)
715{
716 unsigned long flags;
717 unsigned long mask;
718
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800719 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800720 for (;;) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700721 if (!sync_rcu_preempt_exp_done(rnp)) {
722 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800723 break;
Paul E. McKenney131906b2011-07-17 02:05:49 -0700724 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800725 if (rnp->parent == NULL) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700726 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800727 wake_up(&sync_rcu_preempt_exp_wq);
728 break;
729 }
730 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800731 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800732 rnp = rnp->parent;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800733 raw_spin_lock(&rnp->lock); /* irqs already disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800734 rnp->expmask &= ~mask;
735 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800736}
737
738/*
739 * Snapshot the tasks blocking the newly started preemptible-RCU expedited
740 * grace period for the specified rcu_node structure. If there are no such
741 * tasks, report it up the rcu_node hierarchy.
742 *
743 * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock.
744 */
745static void
746sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp)
747{
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700748 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800749 int must_wait = 0;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800750
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700751 raw_spin_lock_irqsave(&rnp->lock, flags);
752 if (list_empty(&rnp->blkd_tasks))
753 raw_spin_unlock_irqrestore(&rnp->lock, flags);
754 else {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800755 rnp->exp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700756 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800757 must_wait = 1;
758 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800759 if (!must_wait)
760 rcu_report_exp_rnp(rsp, rnp);
761}
762
763/*
764 * Wait for an rcu-preempt grace period, but expedite it. The basic idea
765 * is to invoke synchronize_sched_expedited() to push all the tasks to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800766 * the ->blkd_tasks lists and wait for this list to drain.
Paul E. McKenney019129d2009-10-14 10:15:56 -0700767 */
768void synchronize_rcu_expedited(void)
769{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800770 unsigned long flags;
771 struct rcu_node *rnp;
772 struct rcu_state *rsp = &rcu_preempt_state;
773 long snap;
774 int trycount = 0;
775
776 smp_mb(); /* Caller's modifications seen first by other CPUs. */
777 snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1;
778 smp_mb(); /* Above access cannot bleed into critical section. */
779
780 /*
781 * Acquire lock, falling back to synchronize_rcu() if too many
782 * lock-acquisition failures. Of course, if someone does the
783 * expedited grace period for us, just leave.
784 */
785 while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) {
786 if (trycount++ < 10)
787 udelay(trycount * num_online_cpus());
788 else {
789 synchronize_rcu();
790 return;
791 }
792 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
793 goto mb_ret; /* Others did our work for us. */
794 }
795 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
796 goto unlock_mb_ret; /* Others did our work for us. */
797
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800798 /* force all RCU readers onto ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800799 synchronize_sched_expedited();
800
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800801 raw_spin_lock_irqsave(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800802
803 /* Initialize ->expmask for all non-leaf rcu_node structures. */
804 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800805 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800806 rnp->expmask = rnp->qsmaskinit;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800807 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800808 }
809
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800810 /* Snapshot current state of ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800811 rcu_for_each_leaf_node(rsp, rnp)
812 sync_rcu_preempt_exp_init(rsp, rnp);
813 if (NUM_RCU_NODES > 1)
814 sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp));
815
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800816 raw_spin_unlock_irqrestore(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800817
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800818 /* Wait for snapshotted ->blkd_tasks lists to drain. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800819 rnp = rcu_get_root(rsp);
820 wait_event(sync_rcu_preempt_exp_wq,
821 sync_rcu_preempt_exp_done(rnp));
822
823 /* Clean up and exit. */
824 smp_mb(); /* ensure expedited GP seen before counter increment. */
825 ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
826unlock_mb_ret:
827 mutex_unlock(&sync_rcu_preempt_exp_mutex);
828mb_ret:
829 smp_mb(); /* ensure subsequent action seen after grace period. */
Paul E. McKenney019129d2009-10-14 10:15:56 -0700830}
831EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
832
833/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800834 * Check to see if there is any immediate preemptible-RCU-related work
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700835 * to be done.
836 */
837static int rcu_preempt_pending(int cpu)
838{
839 return __rcu_pending(&rcu_preempt_state,
840 &per_cpu(rcu_preempt_data, cpu));
841}
842
843/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800844 * Does preemptible RCU need the CPU to stay out of dynticks mode?
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700845 */
846static int rcu_preempt_needs_cpu(int cpu)
847{
848 return !!per_cpu(rcu_preempt_data, cpu).nxtlist;
849}
850
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700851/**
852 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
853 */
854void rcu_barrier(void)
855{
856 _rcu_barrier(&rcu_preempt_state, call_rcu);
857}
858EXPORT_SYMBOL_GPL(rcu_barrier);
859
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700860/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800861 * Initialize preemptible RCU's per-CPU data.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700862 */
863static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
864{
865 rcu_init_percpu_data(cpu, &rcu_preempt_state, 1);
866}
867
868/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800869 * Move preemptible RCU's callbacks from dying CPU to other online CPU.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700870 */
Lai Jiangshan29494be2010-10-20 14:13:06 +0800871static void rcu_preempt_send_cbs_to_online(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700872{
Lai Jiangshan29494be2010-10-20 14:13:06 +0800873 rcu_send_cbs_to_online(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700874}
875
876/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800877 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700878 */
879static void __init __rcu_init_preempt(void)
880{
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800881 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700882}
883
884/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800885 * Check for a task exiting while in a preemptible-RCU read-side
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700886 * critical section, clean up if so. No need to issue warnings,
887 * as debug_check_no_locks_held() already does this if lockdep
888 * is enabled.
889 */
890void exit_rcu(void)
891{
892 struct task_struct *t = current;
893
894 if (t->rcu_read_lock_nesting == 0)
895 return;
896 t->rcu_read_lock_nesting = 1;
Lai Jiangshan13491a02011-02-25 11:37:59 -0800897 __rcu_read_unlock();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700898}
899
900#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
901
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800902static struct rcu_state *rcu_state = &rcu_sched_state;
903
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700904/*
905 * Tell them what RCU they are running.
906 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800907static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700908{
909 printk(KERN_INFO "Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700910 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700911}
912
913/*
914 * Return the number of RCU batches processed thus far for debug & stats.
915 */
916long rcu_batches_completed(void)
917{
918 return rcu_batches_completed_sched();
919}
920EXPORT_SYMBOL_GPL(rcu_batches_completed);
921
922/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800923 * Force a quiescent state for RCU, which, because there is no preemptible
924 * RCU, becomes the same as rcu-sched.
925 */
926void rcu_force_quiescent_state(void)
927{
928 rcu_sched_force_quiescent_state();
929}
930EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
931
932/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800933 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700934 * CPUs being in quiescent states.
935 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700936static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700937{
938}
939
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700940/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800941 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700942 * RCU readers.
943 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800944static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700945{
946 return 0;
947}
948
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800949#ifdef CONFIG_HOTPLUG_CPU
950
951/* Because preemptible RCU does not exist, no quieting of tasks. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800952static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800953{
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800954 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800955}
956
957#endif /* #ifdef CONFIG_HOTPLUG_CPU */
958
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700959/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800960 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700961 * tasks blocked within RCU read-side critical sections.
962 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800963static void rcu_print_detail_task_stall(struct rcu_state *rsp)
964{
965}
966
967/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800968 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800969 * tasks blocked within RCU read-side critical sections.
970 */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700971static void rcu_print_task_stall(struct rcu_node *rnp)
972{
973}
974
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700975/*
976 * Because preemptible RCU does not exist, there is no need to suppress
977 * its CPU stall warnings.
978 */
979static void rcu_preempt_stall_reset(void)
980{
981}
982
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700983/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800984 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -0700985 * so there is no need to check for blocked tasks. So check only for
986 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700987 */
988static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
989{
Paul E. McKenney49e29122009-09-18 09:50:19 -0700990 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700991}
992
Paul E. McKenney33f76142009-08-24 09:42:01 -0700993#ifdef CONFIG_HOTPLUG_CPU
994
995/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800996 * Because preemptible RCU does not exist, it never needs to migrate
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700997 * tasks that were blocked within RCU read-side critical sections, and
998 * such non-existent tasks cannot possibly have been blocking the current
999 * grace period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001000 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001001static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
1002 struct rcu_node *rnp,
1003 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001004{
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001005 return 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001006}
1007
1008/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001009 * Because preemptible RCU does not exist, it never needs CPU-offline
Paul E. McKenney33f76142009-08-24 09:42:01 -07001010 * processing.
1011 */
1012static void rcu_preempt_offline_cpu(int cpu)
1013{
1014}
1015
1016#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1017
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001018/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001019 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001020 * to check.
1021 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001022static void rcu_preempt_check_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001023{
1024}
1025
1026/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001027 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001028 * to process.
1029 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001030static void rcu_preempt_process_callbacks(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001031{
1032}
1033
1034/*
Paul E. McKenney019129d2009-10-14 10:15:56 -07001035 * Wait for an rcu-preempt grace period, but make it happen quickly.
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001036 * But because preemptible RCU does not exist, map to rcu-sched.
Paul E. McKenney019129d2009-10-14 10:15:56 -07001037 */
1038void synchronize_rcu_expedited(void)
1039{
1040 synchronize_sched_expedited();
1041}
1042EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1043
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001044#ifdef CONFIG_HOTPLUG_CPU
1045
1046/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001047 * Because preemptible RCU does not exist, there is never any need to
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001048 * report on tasks preempted in RCU read-side critical sections during
1049 * expedited RCU grace periods.
1050 */
1051static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp)
1052{
1053 return;
1054}
1055
1056#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1057
Paul E. McKenney019129d2009-10-14 10:15:56 -07001058/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001059 * Because preemptible RCU does not exist, it never has any work to do.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001060 */
1061static int rcu_preempt_pending(int cpu)
1062{
1063 return 0;
1064}
1065
1066/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001067 * Because preemptible RCU does not exist, it never needs any CPU.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001068 */
1069static int rcu_preempt_needs_cpu(int cpu)
1070{
1071 return 0;
1072}
1073
1074/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001075 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001076 * another name for rcu_barrier_sched().
1077 */
1078void rcu_barrier(void)
1079{
1080 rcu_barrier_sched();
1081}
1082EXPORT_SYMBOL_GPL(rcu_barrier);
1083
1084/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001085 * Because preemptible RCU does not exist, there is no per-CPU
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001086 * data to initialize.
1087 */
1088static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
1089{
1090}
1091
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001092/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001093 * Because there is no preemptible RCU, there are no callbacks to move.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001094 */
Lai Jiangshan29494be2010-10-20 14:13:06 +08001095static void rcu_preempt_send_cbs_to_online(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001096{
1097}
1098
1099/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001100 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001101 */
1102static void __init __rcu_init_preempt(void)
1103{
1104}
1105
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001106#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001107
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001108#ifdef CONFIG_RCU_BOOST
1109
1110#include "rtmutex_common.h"
1111
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001112#ifdef CONFIG_RCU_TRACE
1113
1114static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1115{
1116 if (list_empty(&rnp->blkd_tasks))
1117 rnp->n_balk_blkd_tasks++;
1118 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1119 rnp->n_balk_exp_gp_tasks++;
1120 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1121 rnp->n_balk_boost_tasks++;
1122 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1123 rnp->n_balk_notblocked++;
1124 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -07001125 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001126 rnp->n_balk_notyet++;
1127 else
1128 rnp->n_balk_nos++;
1129}
1130
1131#else /* #ifdef CONFIG_RCU_TRACE */
1132
1133static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1134{
1135}
1136
1137#endif /* #else #ifdef CONFIG_RCU_TRACE */
1138
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001139/*
1140 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1141 * or ->boost_tasks, advancing the pointer to the next task in the
1142 * ->blkd_tasks list.
1143 *
1144 * Note that irqs must be enabled: boosting the task can block.
1145 * Returns 1 if there are more tasks needing to be boosted.
1146 */
1147static int rcu_boost(struct rcu_node *rnp)
1148{
1149 unsigned long flags;
1150 struct rt_mutex mtx;
1151 struct task_struct *t;
1152 struct list_head *tb;
1153
1154 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1155 return 0; /* Nothing left to boost. */
1156
1157 raw_spin_lock_irqsave(&rnp->lock, flags);
1158
1159 /*
1160 * Recheck under the lock: all tasks in need of boosting
1161 * might exit their RCU read-side critical sections on their own.
1162 */
1163 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1164 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1165 return 0;
1166 }
1167
1168 /*
1169 * Preferentially boost tasks blocking expedited grace periods.
1170 * This cannot starve the normal grace periods because a second
1171 * expedited grace period must boost all blocked tasks, including
1172 * those blocking the pre-existing normal grace period.
1173 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001174 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001175 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001176 rnp->n_exp_boosts++;
1177 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001178 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001179 rnp->n_normal_boosts++;
1180 }
1181 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001182
1183 /*
1184 * We boost task t by manufacturing an rt_mutex that appears to
1185 * be held by task t. We leave a pointer to that rt_mutex where
1186 * task t can find it, and task t will release the mutex when it
1187 * exits its outermost RCU read-side critical section. Then
1188 * simply acquiring this artificial rt_mutex will boost task
1189 * t's priority. (Thanks to tglx for suggesting this approach!)
1190 *
1191 * Note that task t must acquire rnp->lock to remove itself from
1192 * the ->blkd_tasks list, which it will do from exit() if from
1193 * nowhere else. We therefore are guaranteed that task t will
1194 * stay around at least until we drop rnp->lock. Note that
1195 * rnp->lock also resolves races between our priority boosting
1196 * and task t's exiting its outermost RCU read-side critical
1197 * section.
1198 */
1199 t = container_of(tb, struct task_struct, rcu_node_entry);
1200 rt_mutex_init_proxy_locked(&mtx, t);
1201 t->rcu_boost_mutex = &mtx;
Paul E. McKenney7765be22011-07-14 12:24:11 -07001202 t->rcu_boosted = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001203 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1204 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1205 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1206
1207 return rnp->exp_tasks != NULL || rnp->boost_tasks != NULL;
1208}
1209
1210/*
1211 * Timer handler to initiate waking up of boost kthreads that
1212 * have yielded the CPU due to excessive numbers of tasks to
1213 * boost. We wake up the per-rcu_node kthread, which in turn
1214 * will wake up the booster kthread.
1215 */
1216static void rcu_boost_kthread_timer(unsigned long arg)
1217{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001218 invoke_rcu_node_kthread((struct rcu_node *)arg);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001219}
1220
1221/*
1222 * Priority-boosting kthread. One per leaf rcu_node and one for the
1223 * root rcu_node.
1224 */
1225static int rcu_boost_kthread(void *arg)
1226{
1227 struct rcu_node *rnp = (struct rcu_node *)arg;
1228 int spincnt = 0;
1229 int more2boost;
1230
1231 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001232 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Peter Zijlstra08bca602011-05-20 16:06:29 -07001233 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001234 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001235 more2boost = rcu_boost(rnp);
1236 if (more2boost)
1237 spincnt++;
1238 else
1239 spincnt = 0;
1240 if (spincnt > 10) {
1241 rcu_yield(rcu_boost_kthread_timer, (unsigned long)rnp);
1242 spincnt = 0;
1243 }
1244 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001245 /* NOTREACHED */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001246 return 0;
1247}
1248
1249/*
1250 * Check to see if it is time to start boosting RCU readers that are
1251 * blocking the current grace period, and, if so, tell the per-rcu_node
1252 * kthread to start boosting them. If there is an expedited grace
1253 * period in progress, it is always time to boost.
1254 *
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001255 * The caller must hold rnp->lock, which this function releases,
1256 * but irqs remain disabled. The ->boost_kthread_task is immortal,
1257 * so we don't need to worry about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001258 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001259static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001260{
1261 struct task_struct *t;
1262
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001263 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1264 rnp->n_balk_exp_gp_tasks++;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001265 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001266 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001267 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001268 if (rnp->exp_tasks != NULL ||
1269 (rnp->gp_tasks != NULL &&
1270 rnp->boost_tasks == NULL &&
1271 rnp->qsmask == 0 &&
1272 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1273 if (rnp->exp_tasks == NULL)
1274 rnp->boost_tasks = rnp->gp_tasks;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001275 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001276 t = rnp->boost_kthread_task;
1277 if (t != NULL)
1278 wake_up_process(t);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001279 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001280 rcu_initiate_boost_trace(rnp);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001281 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1282 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001283}
1284
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001285/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001286 * Wake up the per-CPU kthread to invoke RCU callbacks.
1287 */
1288static void invoke_rcu_callbacks_kthread(void)
1289{
1290 unsigned long flags;
1291
1292 local_irq_save(flags);
1293 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001294 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
1295 current != __this_cpu_read(rcu_cpu_kthread_task))
1296 wake_up_process(__this_cpu_read(rcu_cpu_kthread_task));
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001297 local_irq_restore(flags);
1298}
1299
1300/*
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001301 * Set the affinity of the boost kthread. The CPU-hotplug locks are
1302 * held, so no one should be messing with the existence of the boost
1303 * kthread.
1304 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001305static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp,
1306 cpumask_var_t cm)
1307{
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001308 struct task_struct *t;
1309
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001310 t = rnp->boost_kthread_task;
1311 if (t != NULL)
1312 set_cpus_allowed_ptr(rnp->boost_kthread_task, cm);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001313}
1314
1315#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1316
1317/*
1318 * Do priority-boost accounting for the start of a new grace period.
1319 */
1320static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1321{
1322 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1323}
1324
1325/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001326 * Create an RCU-boost kthread for the specified node if one does not
1327 * already exist. We only create this kthread for preemptible RCU.
1328 * Returns zero if all is well, a negated errno otherwise.
1329 */
1330static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
1331 struct rcu_node *rnp,
1332 int rnp_index)
1333{
1334 unsigned long flags;
1335 struct sched_param sp;
1336 struct task_struct *t;
1337
1338 if (&rcu_preempt_state != rsp)
1339 return 0;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001340 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001341 if (rnp->boost_kthread_task != NULL)
1342 return 0;
1343 t = kthread_create(rcu_boost_kthread, (void *)rnp,
1344 "rcub%d", rnp_index);
1345 if (IS_ERR(t))
1346 return PTR_ERR(t);
1347 raw_spin_lock_irqsave(&rnp->lock, flags);
1348 rnp->boost_kthread_task = t;
1349 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001350 sp.sched_priority = RCU_KTHREAD_PRIO;
1351 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001352 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001353 return 0;
1354}
1355
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001356#ifdef CONFIG_HOTPLUG_CPU
1357
1358/*
1359 * Stop the RCU's per-CPU kthread when its CPU goes offline,.
1360 */
1361static void rcu_stop_cpu_kthread(int cpu)
1362{
1363 struct task_struct *t;
1364
1365 /* Stop the CPU's kthread. */
1366 t = per_cpu(rcu_cpu_kthread_task, cpu);
1367 if (t != NULL) {
1368 per_cpu(rcu_cpu_kthread_task, cpu) = NULL;
1369 kthread_stop(t);
1370 }
1371}
1372
1373#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1374
1375static void rcu_kthread_do_work(void)
1376{
1377 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1378 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1379 rcu_preempt_do_callbacks();
1380}
1381
1382/*
1383 * Wake up the specified per-rcu_node-structure kthread.
1384 * Because the per-rcu_node kthreads are immortal, we don't need
1385 * to do anything to keep them alive.
1386 */
1387static void invoke_rcu_node_kthread(struct rcu_node *rnp)
1388{
1389 struct task_struct *t;
1390
1391 t = rnp->node_kthread_task;
1392 if (t != NULL)
1393 wake_up_process(t);
1394}
1395
1396/*
1397 * Set the specified CPU's kthread to run RT or not, as specified by
1398 * the to_rt argument. The CPU-hotplug locks are held, so the task
1399 * is not going away.
1400 */
1401static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1402{
1403 int policy;
1404 struct sched_param sp;
1405 struct task_struct *t;
1406
1407 t = per_cpu(rcu_cpu_kthread_task, cpu);
1408 if (t == NULL)
1409 return;
1410 if (to_rt) {
1411 policy = SCHED_FIFO;
1412 sp.sched_priority = RCU_KTHREAD_PRIO;
1413 } else {
1414 policy = SCHED_NORMAL;
1415 sp.sched_priority = 0;
1416 }
1417 sched_setscheduler_nocheck(t, policy, &sp);
1418}
1419
1420/*
1421 * Timer handler to initiate the waking up of per-CPU kthreads that
1422 * have yielded the CPU due to excess numbers of RCU callbacks.
1423 * We wake up the per-rcu_node kthread, which in turn will wake up
1424 * the booster kthread.
1425 */
1426static void rcu_cpu_kthread_timer(unsigned long arg)
1427{
1428 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, arg);
1429 struct rcu_node *rnp = rdp->mynode;
1430
1431 atomic_or(rdp->grpmask, &rnp->wakemask);
1432 invoke_rcu_node_kthread(rnp);
1433}
1434
1435/*
1436 * Drop to non-real-time priority and yield, but only after posting a
1437 * timer that will cause us to regain our real-time priority if we
1438 * remain preempted. Either way, we restore our real-time priority
1439 * before returning.
1440 */
1441static void rcu_yield(void (*f)(unsigned long), unsigned long arg)
1442{
1443 struct sched_param sp;
1444 struct timer_list yield_timer;
1445
1446 setup_timer_on_stack(&yield_timer, f, arg);
1447 mod_timer(&yield_timer, jiffies + 2);
1448 sp.sched_priority = 0;
1449 sched_setscheduler_nocheck(current, SCHED_NORMAL, &sp);
1450 set_user_nice(current, 19);
1451 schedule();
1452 sp.sched_priority = RCU_KTHREAD_PRIO;
1453 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
1454 del_timer(&yield_timer);
1455}
1456
1457/*
1458 * Handle cases where the rcu_cpu_kthread() ends up on the wrong CPU.
1459 * This can happen while the corresponding CPU is either coming online
1460 * or going offline. We cannot wait until the CPU is fully online
1461 * before starting the kthread, because the various notifier functions
1462 * can wait for RCU grace periods. So we park rcu_cpu_kthread() until
1463 * the corresponding CPU is online.
1464 *
1465 * Return 1 if the kthread needs to stop, 0 otherwise.
1466 *
1467 * Caller must disable bh. This function can momentarily enable it.
1468 */
1469static int rcu_cpu_kthread_should_stop(int cpu)
1470{
1471 while (cpu_is_offline(cpu) ||
1472 !cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)) ||
1473 smp_processor_id() != cpu) {
1474 if (kthread_should_stop())
1475 return 1;
1476 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1477 per_cpu(rcu_cpu_kthread_cpu, cpu) = raw_smp_processor_id();
1478 local_bh_enable();
1479 schedule_timeout_uninterruptible(1);
1480 if (!cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)))
1481 set_cpus_allowed_ptr(current, cpumask_of(cpu));
1482 local_bh_disable();
1483 }
1484 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1485 return 0;
1486}
1487
1488/*
1489 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
1490 * earlier RCU softirq.
1491 */
1492static int rcu_cpu_kthread(void *arg)
1493{
1494 int cpu = (int)(long)arg;
1495 unsigned long flags;
1496 int spincnt = 0;
1497 unsigned int *statusp = &per_cpu(rcu_cpu_kthread_status, cpu);
1498 char work;
1499 char *workp = &per_cpu(rcu_cpu_has_work, cpu);
1500
1501 for (;;) {
1502 *statusp = RCU_KTHREAD_WAITING;
1503 rcu_wait(*workp != 0 || kthread_should_stop());
1504 local_bh_disable();
1505 if (rcu_cpu_kthread_should_stop(cpu)) {
1506 local_bh_enable();
1507 break;
1508 }
1509 *statusp = RCU_KTHREAD_RUNNING;
1510 per_cpu(rcu_cpu_kthread_loops, cpu)++;
1511 local_irq_save(flags);
1512 work = *workp;
1513 *workp = 0;
1514 local_irq_restore(flags);
1515 if (work)
1516 rcu_kthread_do_work();
1517 local_bh_enable();
1518 if (*workp != 0)
1519 spincnt++;
1520 else
1521 spincnt = 0;
1522 if (spincnt > 10) {
1523 *statusp = RCU_KTHREAD_YIELDING;
1524 rcu_yield(rcu_cpu_kthread_timer, (unsigned long)cpu);
1525 spincnt = 0;
1526 }
1527 }
1528 *statusp = RCU_KTHREAD_STOPPED;
1529 return 0;
1530}
1531
1532/*
1533 * Spawn a per-CPU kthread, setting up affinity and priority.
1534 * Because the CPU hotplug lock is held, no other CPU will be attempting
1535 * to manipulate rcu_cpu_kthread_task. There might be another CPU
1536 * attempting to access it during boot, but the locking in kthread_bind()
1537 * will enforce sufficient ordering.
1538 *
1539 * Please note that we cannot simply refuse to wake up the per-CPU
1540 * kthread because kthreads are created in TASK_UNINTERRUPTIBLE state,
1541 * which can result in softlockup complaints if the task ends up being
1542 * idle for more than a couple of minutes.
1543 *
1544 * However, please note also that we cannot bind the per-CPU kthread to its
1545 * CPU until that CPU is fully online. We also cannot wait until the
1546 * CPU is fully online before we create its per-CPU kthread, as this would
1547 * deadlock the system when CPU notifiers tried waiting for grace
1548 * periods. So we bind the per-CPU kthread to its CPU only if the CPU
1549 * is online. If its CPU is not yet fully online, then the code in
1550 * rcu_cpu_kthread() will wait until it is fully online, and then do
1551 * the binding.
1552 */
1553static int __cpuinit rcu_spawn_one_cpu_kthread(int cpu)
1554{
1555 struct sched_param sp;
1556 struct task_struct *t;
1557
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001558 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001559 per_cpu(rcu_cpu_kthread_task, cpu) != NULL)
1560 return 0;
Eric Dumazet1f288092011-06-16 15:53:18 -07001561 t = kthread_create_on_node(rcu_cpu_kthread,
1562 (void *)(long)cpu,
1563 cpu_to_node(cpu),
1564 "rcuc%d", cpu);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001565 if (IS_ERR(t))
1566 return PTR_ERR(t);
1567 if (cpu_online(cpu))
1568 kthread_bind(t, cpu);
1569 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1570 WARN_ON_ONCE(per_cpu(rcu_cpu_kthread_task, cpu) != NULL);
1571 sp.sched_priority = RCU_KTHREAD_PRIO;
1572 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1573 per_cpu(rcu_cpu_kthread_task, cpu) = t;
1574 wake_up_process(t); /* Get to TASK_INTERRUPTIBLE quickly. */
1575 return 0;
1576}
1577
1578/*
1579 * Per-rcu_node kthread, which is in charge of waking up the per-CPU
1580 * kthreads when needed. We ignore requests to wake up kthreads
1581 * for offline CPUs, which is OK because force_quiescent_state()
1582 * takes care of this case.
1583 */
1584static int rcu_node_kthread(void *arg)
1585{
1586 int cpu;
1587 unsigned long flags;
1588 unsigned long mask;
1589 struct rcu_node *rnp = (struct rcu_node *)arg;
1590 struct sched_param sp;
1591 struct task_struct *t;
1592
1593 for (;;) {
1594 rnp->node_kthread_status = RCU_KTHREAD_WAITING;
1595 rcu_wait(atomic_read(&rnp->wakemask) != 0);
1596 rnp->node_kthread_status = RCU_KTHREAD_RUNNING;
1597 raw_spin_lock_irqsave(&rnp->lock, flags);
1598 mask = atomic_xchg(&rnp->wakemask, 0);
1599 rcu_initiate_boost(rnp, flags); /* releases rnp->lock. */
1600 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1) {
1601 if ((mask & 0x1) == 0)
1602 continue;
1603 preempt_disable();
1604 t = per_cpu(rcu_cpu_kthread_task, cpu);
1605 if (!cpu_online(cpu) || t == NULL) {
1606 preempt_enable();
1607 continue;
1608 }
1609 per_cpu(rcu_cpu_has_work, cpu) = 1;
1610 sp.sched_priority = RCU_KTHREAD_PRIO;
1611 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1612 preempt_enable();
1613 }
1614 }
1615 /* NOTREACHED */
1616 rnp->node_kthread_status = RCU_KTHREAD_STOPPED;
1617 return 0;
1618}
1619
1620/*
1621 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1622 * served by the rcu_node in question. The CPU hotplug lock is still
1623 * held, so the value of rnp->qsmaskinit will be stable.
1624 *
1625 * We don't include outgoingcpu in the affinity set, use -1 if there is
1626 * no outgoing CPU. If there are no CPUs left in the affinity set,
1627 * this function allows the kthread to execute on any CPU.
1628 */
1629static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1630{
1631 cpumask_var_t cm;
1632 int cpu;
1633 unsigned long mask = rnp->qsmaskinit;
1634
1635 if (rnp->node_kthread_task == NULL)
1636 return;
1637 if (!alloc_cpumask_var(&cm, GFP_KERNEL))
1638 return;
1639 cpumask_clear(cm);
1640 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1641 if ((mask & 0x1) && cpu != outgoingcpu)
1642 cpumask_set_cpu(cpu, cm);
1643 if (cpumask_weight(cm) == 0) {
1644 cpumask_setall(cm);
1645 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1646 cpumask_clear_cpu(cpu, cm);
1647 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1648 }
1649 set_cpus_allowed_ptr(rnp->node_kthread_task, cm);
1650 rcu_boost_kthread_setaffinity(rnp, cm);
1651 free_cpumask_var(cm);
1652}
1653
1654/*
1655 * Spawn a per-rcu_node kthread, setting priority and affinity.
1656 * Called during boot before online/offline can happen, or, if
1657 * during runtime, with the main CPU-hotplug locks held. So only
1658 * one of these can be executing at a time.
1659 */
1660static int __cpuinit rcu_spawn_one_node_kthread(struct rcu_state *rsp,
1661 struct rcu_node *rnp)
1662{
1663 unsigned long flags;
1664 int rnp_index = rnp - &rsp->node[0];
1665 struct sched_param sp;
1666 struct task_struct *t;
1667
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001668 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001669 rnp->qsmaskinit == 0)
1670 return 0;
1671 if (rnp->node_kthread_task == NULL) {
1672 t = kthread_create(rcu_node_kthread, (void *)rnp,
1673 "rcun%d", rnp_index);
1674 if (IS_ERR(t))
1675 return PTR_ERR(t);
1676 raw_spin_lock_irqsave(&rnp->lock, flags);
1677 rnp->node_kthread_task = t;
1678 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1679 sp.sched_priority = 99;
1680 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1681 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
1682 }
1683 return rcu_spawn_one_boost_kthread(rsp, rnp, rnp_index);
1684}
1685
1686/*
1687 * Spawn all kthreads -- called as soon as the scheduler is running.
1688 */
1689static int __init rcu_spawn_kthreads(void)
1690{
1691 int cpu;
1692 struct rcu_node *rnp;
1693
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001694 rcu_scheduler_fully_active = 1;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001695 for_each_possible_cpu(cpu) {
1696 per_cpu(rcu_cpu_has_work, cpu) = 0;
1697 if (cpu_online(cpu))
1698 (void)rcu_spawn_one_cpu_kthread(cpu);
1699 }
1700 rnp = rcu_get_root(rcu_state);
1701 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1702 if (NUM_RCU_NODES > 1) {
1703 rcu_for_each_leaf_node(rcu_state, rnp)
1704 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1705 }
1706 return 0;
1707}
1708early_initcall(rcu_spawn_kthreads);
1709
1710static void __cpuinit rcu_prepare_kthreads(int cpu)
1711{
1712 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1713 struct rcu_node *rnp = rdp->mynode;
1714
1715 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001716 if (rcu_scheduler_fully_active) {
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001717 (void)rcu_spawn_one_cpu_kthread(cpu);
1718 if (rnp->node_kthread_task == NULL)
1719 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1720 }
1721}
1722
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001723#else /* #ifdef CONFIG_RCU_BOOST */
1724
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001725static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001726{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001727 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001728}
1729
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001730static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001731{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001732 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001733}
1734
1735static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1736{
1737}
1738
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001739#ifdef CONFIG_HOTPLUG_CPU
1740
1741static void rcu_stop_cpu_kthread(int cpu)
1742{
1743}
1744
1745#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1746
1747static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1748{
1749}
1750
1751static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1752{
1753}
1754
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001755static int __init rcu_scheduler_really_started(void)
1756{
1757 rcu_scheduler_fully_active = 1;
1758 return 0;
1759}
1760early_initcall(rcu_scheduler_really_started);
1761
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001762static void __cpuinit rcu_prepare_kthreads(int cpu)
1763{
1764}
1765
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001766#endif /* #else #ifdef CONFIG_RCU_BOOST */
1767
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001768#ifndef CONFIG_SMP
1769
1770void synchronize_sched_expedited(void)
1771{
1772 cond_resched();
1773}
1774EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
1775
1776#else /* #ifndef CONFIG_SMP */
1777
Tejun Heoe27fc962010-11-22 21:36:11 -08001778static atomic_t sync_sched_expedited_started = ATOMIC_INIT(0);
1779static atomic_t sync_sched_expedited_done = ATOMIC_INIT(0);
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001780
1781static int synchronize_sched_expedited_cpu_stop(void *data)
1782{
1783 /*
1784 * There must be a full memory barrier on each affected CPU
1785 * between the time that try_stop_cpus() is called and the
1786 * time that it returns.
1787 *
1788 * In the current initial implementation of cpu_stop, the
1789 * above condition is already met when the control reaches
1790 * this point and the following smp_mb() is not strictly
1791 * necessary. Do smp_mb() anyway for documentation and
1792 * robustness against future implementation changes.
1793 */
1794 smp_mb(); /* See above comment block. */
1795 return 0;
1796}
1797
1798/*
1799 * Wait for an rcu-sched grace period to elapse, but use "big hammer"
1800 * approach to force grace period to end quickly. This consumes
1801 * significant time on all CPUs, and is thus not recommended for
1802 * any sort of common-case code.
1803 *
1804 * Note that it is illegal to call this function while holding any
1805 * lock that is acquired by a CPU-hotplug notifier. Failing to
1806 * observe this restriction will result in deadlock.
Paul E. McKenneydb3a8922010-10-25 07:39:22 -07001807 *
Tejun Heoe27fc962010-11-22 21:36:11 -08001808 * This implementation can be thought of as an application of ticket
1809 * locking to RCU, with sync_sched_expedited_started and
1810 * sync_sched_expedited_done taking on the roles of the halves
1811 * of the ticket-lock word. Each task atomically increments
1812 * sync_sched_expedited_started upon entry, snapshotting the old value,
1813 * then attempts to stop all the CPUs. If this succeeds, then each
1814 * CPU will have executed a context switch, resulting in an RCU-sched
1815 * grace period. We are then done, so we use atomic_cmpxchg() to
1816 * update sync_sched_expedited_done to match our snapshot -- but
1817 * only if someone else has not already advanced past our snapshot.
1818 *
1819 * On the other hand, if try_stop_cpus() fails, we check the value
1820 * of sync_sched_expedited_done. If it has advanced past our
1821 * initial snapshot, then someone else must have forced a grace period
1822 * some time after we took our snapshot. In this case, our work is
1823 * done for us, and we can simply return. Otherwise, we try again,
1824 * but keep our initial snapshot for purposes of checking for someone
1825 * doing our work for us.
1826 *
1827 * If we fail too many times in a row, we fall back to synchronize_sched().
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001828 */
1829void synchronize_sched_expedited(void)
1830{
Tejun Heoe27fc962010-11-22 21:36:11 -08001831 int firstsnap, s, snap, trycount = 0;
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001832
Tejun Heoe27fc962010-11-22 21:36:11 -08001833 /* Note that atomic_inc_return() implies full memory barrier. */
1834 firstsnap = snap = atomic_inc_return(&sync_sched_expedited_started);
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001835 get_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001836
1837 /*
1838 * Each pass through the following loop attempts to force a
1839 * context switch on each CPU.
1840 */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001841 while (try_stop_cpus(cpu_online_mask,
1842 synchronize_sched_expedited_cpu_stop,
1843 NULL) == -EAGAIN) {
1844 put_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001845
1846 /* No joy, try again later. Or just synchronize_sched(). */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001847 if (trycount++ < 10)
1848 udelay(trycount * num_online_cpus());
1849 else {
1850 synchronize_sched();
1851 return;
1852 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001853
1854 /* Check to see if someone else did our work for us. */
1855 s = atomic_read(&sync_sched_expedited_done);
1856 if (UINT_CMP_GE((unsigned)s, (unsigned)firstsnap)) {
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001857 smp_mb(); /* ensure test happens before caller kfree */
1858 return;
1859 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001860
1861 /*
1862 * Refetching sync_sched_expedited_started allows later
1863 * callers to piggyback on our grace period. We subtract
1864 * 1 to get the same token that the last incrementer got.
1865 * We retry after they started, so our grace period works
1866 * for them, and they started after our first try, so their
1867 * grace period works for us.
1868 */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001869 get_online_cpus();
Tejun Heoe27fc962010-11-22 21:36:11 -08001870 snap = atomic_read(&sync_sched_expedited_started) - 1;
1871 smp_mb(); /* ensure read is before try_stop_cpus(). */
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001872 }
Tejun Heoe27fc962010-11-22 21:36:11 -08001873
1874 /*
1875 * Everyone up to our most recent fetch is covered by our grace
1876 * period. Update the counter, but only if our work is still
1877 * relevant -- which it won't be if someone who started later
1878 * than we did beat us to the punch.
1879 */
1880 do {
1881 s = atomic_read(&sync_sched_expedited_done);
1882 if (UINT_CMP_GE((unsigned)s, (unsigned)snap)) {
1883 smp_mb(); /* ensure test happens before caller kfree */
1884 break;
1885 }
1886 } while (atomic_cmpxchg(&sync_sched_expedited_done, s, snap) != s);
1887
Lai Jiangshan7b27d542010-10-21 11:29:05 +08001888 put_online_cpus();
1889}
1890EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
1891
1892#endif /* #else #ifndef CONFIG_SMP */
1893
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001894#if !defined(CONFIG_RCU_FAST_NO_HZ)
1895
1896/*
1897 * Check to see if any future RCU-related work will need to be done
1898 * by the current CPU, even if none need be done immediately, returning
1899 * 1 if so. This function is part of the RCU implementation; it is -not-
1900 * an exported member of the RCU API.
1901 *
1902 * Because we have preemptible RCU, just check whether this CPU needs
1903 * any flavor of RCU. Do not chew up lots of CPU cycles with preemption
1904 * disabled in a most-likely vain attempt to cause RCU not to need this CPU.
1905 */
1906int rcu_needs_cpu(int cpu)
1907{
1908 return rcu_needs_cpu_quick_check(cpu);
1909}
1910
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001911/*
1912 * Check to see if we need to continue a callback-flush operations to
1913 * allow the last CPU to enter dyntick-idle mode. But fast dyntick-idle
1914 * entry is not configured, so we never do need to.
1915 */
1916static void rcu_needs_cpu_flush(void)
1917{
1918}
1919
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001920#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1921
1922#define RCU_NEEDS_CPU_FLUSHES 5
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001923static DEFINE_PER_CPU(int, rcu_dyntick_drain);
Paul E. McKenney71da8132010-02-26 16:38:58 -08001924static DEFINE_PER_CPU(unsigned long, rcu_dyntick_holdoff);
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001925
1926/*
1927 * Check to see if any future RCU-related work will need to be done
1928 * by the current CPU, even if none need be done immediately, returning
1929 * 1 if so. This function is part of the RCU implementation; it is -not-
1930 * an exported member of the RCU API.
1931 *
1932 * Because we are not supporting preemptible RCU, attempt to accelerate
1933 * any current grace periods so that RCU no longer needs this CPU, but
1934 * only if all other CPUs are already in dynticks-idle mode. This will
1935 * allow the CPU cores to be powered down immediately, as opposed to after
1936 * waiting many milliseconds for grace periods to elapse.
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001937 *
1938 * Because it is not legal to invoke rcu_process_callbacks() with irqs
1939 * disabled, we do one pass of force_quiescent_state(), then do a
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001940 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001941 * later. The per-cpu rcu_dyntick_drain variable controls the sequencing.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001942 */
1943int rcu_needs_cpu(int cpu)
1944{
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001945 int c = 0;
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001946 int snap;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001947 int thatcpu;
1948
Paul E. McKenney622ea682010-02-27 14:53:07 -08001949 /* Check for being in the holdoff period. */
1950 if (per_cpu(rcu_dyntick_holdoff, cpu) == jiffies)
1951 return rcu_needs_cpu_quick_check(cpu);
1952
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001953 /* Don't bother unless we are the last non-dyntick-idle CPU. */
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001954 for_each_online_cpu(thatcpu) {
1955 if (thatcpu == cpu)
1956 continue;
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001957 snap = atomic_add_return(0, &per_cpu(rcu_dynticks,
1958 thatcpu).dynticks);
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001959 smp_mb(); /* Order sampling of snap with end of grace period. */
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -07001960 if ((snap & 0x1) != 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001961 per_cpu(rcu_dyntick_drain, cpu) = 0;
Paul E. McKenney71da8132010-02-26 16:38:58 -08001962 per_cpu(rcu_dyntick_holdoff, cpu) = jiffies - 1;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001963 return rcu_needs_cpu_quick_check(cpu);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001964 }
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07001965 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001966
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001967 /* Check and update the rcu_dyntick_drain sequencing. */
1968 if (per_cpu(rcu_dyntick_drain, cpu) <= 0) {
1969 /* First time through, initialize the counter. */
1970 per_cpu(rcu_dyntick_drain, cpu) = RCU_NEEDS_CPU_FLUSHES;
1971 } else if (--per_cpu(rcu_dyntick_drain, cpu) <= 0) {
1972 /* We have hit the limit, so time to give up. */
Paul E. McKenney71da8132010-02-26 16:38:58 -08001973 per_cpu(rcu_dyntick_holdoff, cpu) = jiffies;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001974 return rcu_needs_cpu_quick_check(cpu);
1975 }
1976
1977 /* Do one step pushing remaining RCU callbacks through. */
1978 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
1979 rcu_sched_qs(cpu);
1980 force_quiescent_state(&rcu_sched_state, 0);
1981 c = c || per_cpu(rcu_sched_data, cpu).nxtlist;
1982 }
1983 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
1984 rcu_bh_qs(cpu);
1985 force_quiescent_state(&rcu_bh_state, 0);
1986 c = c || per_cpu(rcu_bh_data, cpu).nxtlist;
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001987 }
1988
1989 /* If RCU callbacks are still pending, RCU still needs this CPU. */
Paul E. McKenney622ea682010-02-27 14:53:07 -08001990 if (c)
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001991 invoke_rcu_core();
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001992 return c;
1993}
1994
Paul E. McKenneya47cd882010-02-26 16:38:56 -08001995/*
1996 * Check to see if we need to continue a callback-flush operations to
1997 * allow the last CPU to enter dyntick-idle mode.
1998 */
1999static void rcu_needs_cpu_flush(void)
2000{
2001 int cpu = smp_processor_id();
Paul E. McKenney71da8132010-02-26 16:38:58 -08002002 unsigned long flags;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002003
2004 if (per_cpu(rcu_dyntick_drain, cpu) <= 0)
2005 return;
Paul E. McKenney71da8132010-02-26 16:38:58 -08002006 local_irq_save(flags);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002007 (void)rcu_needs_cpu(cpu);
Paul E. McKenney71da8132010-02-26 16:38:58 -08002008 local_irq_restore(flags);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002009}
2010
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002011#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */