blob: 9cb3a68819fae81aab2a69ad34fc0b0c325fe204 [file] [log] [blame]
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001/*
2 * Read-Copy Update mechanism for mutual exclusion (tree-based version)
3 * Internal non-public definitions that provide either classic
Paul E. McKenney6cc68792011-03-02 13:15:15 -08004 * or preemptible semantics.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 * Copyright Red Hat, 2009
21 * Copyright IBM Corporation, 2009
22 *
23 * Author: Ingo Molnar <mingo@elte.hu>
24 * Paul E. McKenney <paulmck@linux.vnet.ibm.com>
25 */
26
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080027#include <linux/delay.h>
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070028
Mike Galbraith5b61b0b2011-08-19 11:39:11 -070029#define RCU_KTHREAD_PRIO 1
30
31#ifdef CONFIG_RCU_BOOST
32#define RCU_BOOST_PRIO CONFIG_RCU_BOOST_PRIO
33#else
34#define RCU_BOOST_PRIO RCU_KTHREAD_PRIO
35#endif
36
Paul E. McKenney26845c22010-04-13 14:19:23 -070037/*
38 * Check the RCU kernel configuration parameters and print informative
39 * messages about anything out of the ordinary. If you like #ifdef, you
40 * will love this function.
41 */
42static void __init rcu_bootup_announce_oddness(void)
43{
44#ifdef CONFIG_RCU_TRACE
45 printk(KERN_INFO "\tRCU debugfs-based tracing is enabled.\n");
46#endif
47#if (defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 64) || (!defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 32)
48 printk(KERN_INFO "\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
49 CONFIG_RCU_FANOUT);
50#endif
51#ifdef CONFIG_RCU_FANOUT_EXACT
52 printk(KERN_INFO "\tHierarchical RCU autobalancing is disabled.\n");
53#endif
54#ifdef CONFIG_RCU_FAST_NO_HZ
55 printk(KERN_INFO
56 "\tRCU dyntick-idle grace-period acceleration is enabled.\n");
57#endif
58#ifdef CONFIG_PROVE_RCU
59 printk(KERN_INFO "\tRCU lockdep checking is enabled.\n");
60#endif
61#ifdef CONFIG_RCU_TORTURE_TEST_RUNNABLE
62 printk(KERN_INFO "\tRCU torture testing starts during boot.\n");
63#endif
Paul E. McKenney81a294c2010-08-30 09:52:50 -070064#if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE)
Paul E. McKenneya858af22012-01-16 13:29:10 -080065 printk(KERN_INFO "\tDump stacks of tasks blocking RCU-preempt GP.\n");
66#endif
67#if defined(CONFIG_RCU_CPU_STALL_INFO)
68 printk(KERN_INFO "\tAdditional per-CPU info printed with stalls.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070069#endif
70#if NUM_RCU_LVL_4 != 0
Paul E. McKenneycc5df652012-06-15 18:16:00 -070071 printk(KERN_INFO "\tFour-level hierarchy is enabled.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070072#endif
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -070073 if (rcu_fanout_leaf != CONFIG_RCU_FANOUT_LEAF)
74 printk(KERN_INFO "\tExperimental boot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf);
Paul E. McKenneycca6f392012-05-08 21:00:28 -070075 if (nr_cpu_ids != NR_CPUS)
76 printk(KERN_INFO "\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%d.\n", NR_CPUS, nr_cpu_ids);
Paul E. McKenney26845c22010-04-13 14:19:23 -070077}
78
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070079#ifdef CONFIG_TREE_PREEMPT_RCU
80
Paul E. McKenney037b64e2012-05-28 23:26:01 -070081struct rcu_state rcu_preempt_state =
82 RCU_STATE_INITIALIZER(rcu_preempt, call_rcu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070083DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
Paul E. McKenney27f4d282011-02-07 12:47:15 -080084static struct rcu_state *rcu_state = &rcu_preempt_state;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070085
Paul E. McKenney10f39bb2011-07-17 21:14:35 -070086static void rcu_read_unlock_special(struct task_struct *t);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -080087static int rcu_preempted_readers_exp(struct rcu_node *rnp);
88
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070089/*
90 * Tell them what RCU they are running.
91 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -080092static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070093{
Paul E. McKenney6cc68792011-03-02 13:15:15 -080094 printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -070095 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070096}
97
98/*
99 * Return the number of RCU-preempt batches processed thus far
100 * for debug and statistics.
101 */
102long rcu_batches_completed_preempt(void)
103{
104 return rcu_preempt_state.completed;
105}
106EXPORT_SYMBOL_GPL(rcu_batches_completed_preempt);
107
108/*
109 * Return the number of RCU batches processed thus far for debug & stats.
110 */
111long rcu_batches_completed(void)
112{
113 return rcu_batches_completed_preempt();
114}
115EXPORT_SYMBOL_GPL(rcu_batches_completed);
116
117/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800118 * Force a quiescent state for preemptible RCU.
119 */
120void rcu_force_quiescent_state(void)
121{
122 force_quiescent_state(&rcu_preempt_state, 0);
123}
124EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
125
126/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800127 * Record a preemptible-RCU quiescent state for the specified CPU. Note
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700128 * that this just means that the task currently running on the CPU is
129 * not in a quiescent state. There might be any number of tasks blocked
130 * while in an RCU read-side critical section.
Paul E. McKenney25502a62010-04-01 17:37:01 -0700131 *
132 * Unlike the other rcu_*_qs() functions, callers to this function
133 * must disable irqs in order to protect the assignment to
134 * ->rcu_read_unlock_special.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700135 */
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700136static void rcu_preempt_qs(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700137{
138 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -0700139
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700140 rdp->passed_quiesce_gpnum = rdp->gpnum;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700141 barrier();
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700142 if (rdp->passed_quiesce == 0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700143 trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs");
Paul E. McKenneye4cc1f22011-06-27 00:17:43 -0700144 rdp->passed_quiesce = 1;
Paul E. McKenney25502a62010-04-01 17:37:01 -0700145 current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700146}
147
148/*
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700149 * We have entered the scheduler, and the current task might soon be
150 * context-switched away from. If this task is in an RCU read-side
151 * critical section, we will no longer be able to rely on the CPU to
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800152 * record that fact, so we enqueue the task on the blkd_tasks list.
153 * The task will dequeue itself when it exits the outermost enclosing
154 * RCU read-side critical section. Therefore, the current grace period
155 * cannot be permitted to complete until the blkd_tasks list entries
156 * predating the current grace period drain, in other words, until
157 * rnp->gp_tasks becomes NULL.
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700158 *
159 * Caller must disable preemption.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700160 */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700161static void rcu_preempt_note_context_switch(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700162{
163 struct task_struct *t = current;
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700164 unsigned long flags;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700165 struct rcu_data *rdp;
166 struct rcu_node *rnp;
167
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700168 if (t->rcu_read_lock_nesting > 0 &&
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700169 (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) {
170
171 /* Possibly blocking in an RCU read-side critical section. */
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700172 rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700173 rnp = rdp->mynode;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800174 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700175 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED;
Paul E. McKenney86848962009-08-27 15:00:12 -0700176 t->rcu_blocked_node = rnp;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700177
178 /*
179 * If this CPU has already checked in, then this task
180 * will hold up the next grace period rather than the
181 * current grace period. Queue the task accordingly.
182 * If the task is queued for the current grace period
183 * (i.e., this CPU has not yet passed through a quiescent
184 * state for the current grace period), then as long
185 * as that task remains queued, the current grace period
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800186 * cannot end. Note that there is some uncertainty as
187 * to exactly when the current grace period started.
188 * We take a conservative approach, which can result
189 * in unnecessarily waiting on tasks that started very
190 * slightly after the current grace period began. C'est
191 * la vie!!!
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700192 *
193 * But first, note that the current CPU must still be
194 * on line!
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700195 */
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700196 WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700197 WARN_ON_ONCE(!list_empty(&t->rcu_node_entry));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800198 if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) {
199 list_add(&t->rcu_node_entry, rnp->gp_tasks->prev);
200 rnp->gp_tasks = &t->rcu_node_entry;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800201#ifdef CONFIG_RCU_BOOST
202 if (rnp->boost_tasks != NULL)
203 rnp->boost_tasks = rnp->gp_tasks;
204#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800205 } else {
206 list_add(&t->rcu_node_entry, &rnp->blkd_tasks);
207 if (rnp->qsmask & rdp->grpmask)
208 rnp->gp_tasks = &t->rcu_node_entry;
209 }
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700210 trace_rcu_preempt_task(rdp->rsp->name,
211 t->pid,
212 (rnp->qsmask & rdp->grpmask)
213 ? rnp->gpnum
214 : rnp->gpnum + 1);
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800215 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700216 } else if (t->rcu_read_lock_nesting < 0 &&
217 t->rcu_read_unlock_special) {
218
219 /*
220 * Complete exit from RCU read-side critical section on
221 * behalf of preempted instance of __rcu_read_unlock().
222 */
223 rcu_read_unlock_special(t);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700224 }
225
226 /*
227 * Either we were not in an RCU read-side critical section to
228 * begin with, or we have now recorded that critical section
229 * globally. Either way, we can now note a quiescent state
230 * for this CPU. Again, if we were in an RCU read-side critical
231 * section, and if that critical section was blocking the current
232 * grace period, then the fact that the task has been enqueued
233 * means that we continue to block the current grace period.
234 */
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700235 local_irq_save(flags);
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -0700236 rcu_preempt_qs(cpu);
Paul E. McKenneye7d88422009-09-18 09:50:18 -0700237 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700238}
239
240/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800241 * Tree-preemptible RCU implementation for rcu_read_lock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700242 * Just increment ->rcu_read_lock_nesting, shared state will be updated
243 * if we block.
244 */
245void __rcu_read_lock(void)
246{
Paul E. McKenney80dcf602010-08-19 16:57:45 -0700247 current->rcu_read_lock_nesting++;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700248 barrier(); /* needed if we ever invoke rcu_read_lock in rcutree.c */
249}
250EXPORT_SYMBOL_GPL(__rcu_read_lock);
251
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700252/*
253 * Check for preempted RCU readers blocking the current grace period
254 * for the specified rcu_node structure. If the caller needs a reliable
255 * answer, it must hold the rcu_node's ->lock.
256 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800257static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700258{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800259 return rnp->gp_tasks != NULL;
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -0700260}
261
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800262/*
263 * Record a quiescent state for all tasks that were previously queued
264 * on the specified rcu_node structure and that were blocking the current
265 * RCU grace period. The caller must hold the specified rnp->lock with
266 * irqs disabled, and this lock is released upon return, but irqs remain
267 * disabled.
268 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800269static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800270 __releases(rnp->lock)
271{
272 unsigned long mask;
273 struct rcu_node *rnp_p;
274
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800275 if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800276 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800277 return; /* Still need more quiescent states! */
278 }
279
280 rnp_p = rnp->parent;
281 if (rnp_p == NULL) {
282 /*
283 * Either there is only one rcu_node in the tree,
284 * or tasks were kicked up to root rcu_node due to
285 * CPUs going offline.
286 */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800287 rcu_report_qs_rsp(&rcu_preempt_state, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800288 return;
289 }
290
291 /* Report up the rest of the hierarchy. */
292 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800293 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
294 raw_spin_lock(&rnp_p->lock); /* irqs already disabled. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800295 rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800296}
297
298/*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800299 * Advance a ->blkd_tasks-list pointer to the next entry, instead
300 * returning NULL if at the end of the list.
301 */
302static struct list_head *rcu_next_node_entry(struct task_struct *t,
303 struct rcu_node *rnp)
304{
305 struct list_head *np;
306
307 np = t->rcu_node_entry.next;
308 if (np == &rnp->blkd_tasks)
309 np = NULL;
310 return np;
311}
312
313/*
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800314 * Handle special cases during rcu_read_unlock(), such as needing to
315 * notify RCU core processing or task having blocked during the RCU
316 * read-side critical section.
317 */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700318static noinline void rcu_read_unlock_special(struct task_struct *t)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700319{
320 int empty;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800321 int empty_exp;
Paul E. McKenney389abd42011-09-21 14:41:37 -0700322 int empty_exp_now;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700323 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800324 struct list_head *np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700325#ifdef CONFIG_RCU_BOOST
326 struct rt_mutex *rbmp = NULL;
327#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700328 struct rcu_node *rnp;
329 int special;
330
331 /* NMI handlers cannot block and cannot safely manipulate state. */
332 if (in_nmi())
333 return;
334
335 local_irq_save(flags);
336
337 /*
338 * If RCU core is waiting for this CPU to exit critical section,
339 * let it know that we have done so.
340 */
341 special = t->rcu_read_unlock_special;
342 if (special & RCU_READ_UNLOCK_NEED_QS) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700343 rcu_preempt_qs(smp_processor_id());
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700344 }
345
346 /* Hardware IRQ handlers cannot block. */
Peter Zijlstraec433f02011-07-19 15:32:00 -0700347 if (in_irq() || in_serving_softirq()) {
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700348 local_irq_restore(flags);
349 return;
350 }
351
352 /* Clean up if blocked during RCU read-side critical section. */
353 if (special & RCU_READ_UNLOCK_BLOCKED) {
354 t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED;
355
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700356 /*
357 * Remove this task from the list it blocked on. The
358 * task can migrate while we acquire the lock, but at
359 * most one time. So at most two passes through loop.
360 */
361 for (;;) {
Paul E. McKenney86848962009-08-27 15:00:12 -0700362 rnp = t->rcu_blocked_node;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800363 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700364 if (rnp == t->rcu_blocked_node)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700365 break;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800366 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700367 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800368 empty = !rcu_preempt_blocked_readers_cgp(rnp);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800369 empty_exp = !rcu_preempted_readers_exp(rnp);
370 smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800371 np = rcu_next_node_entry(t, rnp);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700372 list_del_init(&t->rcu_node_entry);
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700373 t->rcu_blocked_node = NULL;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700374 trace_rcu_unlock_preempted_task("rcu_preempt",
375 rnp->gpnum, t->pid);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800376 if (&t->rcu_node_entry == rnp->gp_tasks)
377 rnp->gp_tasks = np;
378 if (&t->rcu_node_entry == rnp->exp_tasks)
379 rnp->exp_tasks = np;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800380#ifdef CONFIG_RCU_BOOST
381 if (&t->rcu_node_entry == rnp->boost_tasks)
382 rnp->boost_tasks = np;
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700383 /* Snapshot/clear ->rcu_boost_mutex with rcu_node lock held. */
384 if (t->rcu_boost_mutex) {
385 rbmp = t->rcu_boost_mutex;
386 t->rcu_boost_mutex = NULL;
Paul E. McKenney7765be22011-07-14 12:24:11 -0700387 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800388#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700389
390 /*
391 * If this was the last task on the current list, and if
392 * we aren't waiting on any CPUs, report the quiescent state.
Paul E. McKenney389abd42011-09-21 14:41:37 -0700393 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
394 * so we must take a snapshot of the expedited state.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700395 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700396 empty_exp_now = !rcu_preempted_readers_exp(rnp);
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700397 if (!empty && !rcu_preempt_blocked_readers_cgp(rnp)) {
398 trace_rcu_quiescent_state_report("preempt_rcu",
399 rnp->gpnum,
400 0, rnp->qsmask,
401 rnp->level,
402 rnp->grplo,
403 rnp->grphi,
404 !!rnp->gp_tasks);
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -0800405 rcu_report_unblock_qs_rnp(rnp, flags);
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700406 } else
407 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800408
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800409#ifdef CONFIG_RCU_BOOST
410 /* Unboost if we were boosted. */
Paul E. McKenney82e78d82011-08-04 07:55:34 -0700411 if (rbmp)
412 rt_mutex_unlock(rbmp);
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800413#endif /* #ifdef CONFIG_RCU_BOOST */
414
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800415 /*
416 * If this was the last task on the expedited lists,
417 * then we need to report up the rcu_node hierarchy.
418 */
Paul E. McKenney389abd42011-09-21 14:41:37 -0700419 if (!empty_exp && empty_exp_now)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700420 rcu_report_exp_rnp(&rcu_preempt_state, rnp, true);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800421 } else {
422 local_irq_restore(flags);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700423 }
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700424}
425
426/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800427 * Tree-preemptible RCU implementation for rcu_read_unlock().
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700428 * Decrement ->rcu_read_lock_nesting. If the result is zero (outermost
429 * rcu_read_unlock()) and ->rcu_read_unlock_special is non-zero, then
430 * invoke rcu_read_unlock_special() to clean up after a context switch
431 * in an RCU read-side critical section and other special cases.
432 */
433void __rcu_read_unlock(void)
434{
435 struct task_struct *t = current;
436
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700437 if (t->rcu_read_lock_nesting != 1)
438 --t->rcu_read_lock_nesting;
439 else {
Paul E. McKenney6206ab92011-08-01 06:22:11 -0700440 barrier(); /* critical section before exit code. */
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700441 t->rcu_read_lock_nesting = INT_MIN;
442 barrier(); /* assign before ->rcu_read_unlock_special load */
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700443 if (unlikely(ACCESS_ONCE(t->rcu_read_unlock_special)))
444 rcu_read_unlock_special(t);
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700445 barrier(); /* ->rcu_read_unlock_special load before assign */
446 t->rcu_read_lock_nesting = 0;
Paul E. McKenneybe0e1e22011-05-21 05:57:18 -0700447 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800448#ifdef CONFIG_PROVE_LOCKING
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700449 {
450 int rrln = ACCESS_ONCE(t->rcu_read_lock_nesting);
451
452 WARN_ON_ONCE(rrln < 0 && rrln > INT_MIN / 2);
453 }
Paul E. McKenneycba82442010-01-04 16:04:01 -0800454#endif /* #ifdef CONFIG_PROVE_LOCKING */
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700455}
456EXPORT_SYMBOL_GPL(__rcu_read_unlock);
457
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800458#ifdef CONFIG_RCU_CPU_STALL_VERBOSE
459
460/*
461 * Dump detailed information for all tasks blocking the current RCU
462 * grace period on the specified rcu_node structure.
463 */
464static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
465{
466 unsigned long flags;
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800467 struct task_struct *t;
468
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800469 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800470 return;
471 raw_spin_lock_irqsave(&rnp->lock, flags);
472 t = list_entry(rnp->gp_tasks,
473 struct task_struct, rcu_node_entry);
474 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry)
475 sched_show_task(t);
476 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney1ed509a2010-02-22 17:05:05 -0800477}
478
479/*
480 * Dump detailed information for all tasks blocking the current RCU
481 * grace period.
482 */
483static void rcu_print_detail_task_stall(struct rcu_state *rsp)
484{
485 struct rcu_node *rnp = rcu_get_root(rsp);
486
487 rcu_print_detail_task_stall_rnp(rnp);
488 rcu_for_each_leaf_node(rsp, rnp)
489 rcu_print_detail_task_stall_rnp(rnp);
490}
491
492#else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
493
494static void rcu_print_detail_task_stall(struct rcu_state *rsp)
495{
496}
497
498#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */
499
Paul E. McKenneya858af22012-01-16 13:29:10 -0800500#ifdef CONFIG_RCU_CPU_STALL_INFO
501
502static void rcu_print_task_stall_begin(struct rcu_node *rnp)
503{
504 printk(KERN_ERR "\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
505 rnp->level, rnp->grplo, rnp->grphi);
506}
507
508static void rcu_print_task_stall_end(void)
509{
510 printk(KERN_CONT "\n");
511}
512
513#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
514
515static void rcu_print_task_stall_begin(struct rcu_node *rnp)
516{
517}
518
519static void rcu_print_task_stall_end(void)
520{
521}
522
523#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */
524
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700525/*
526 * Scan the current list of tasks blocked within RCU read-side critical
527 * sections, printing out the tid of each.
528 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700529static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700530{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700531 struct task_struct *t;
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700532 int ndetected = 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700533
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800534 if (!rcu_preempt_blocked_readers_cgp(rnp))
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700535 return 0;
Paul E. McKenneya858af22012-01-16 13:29:10 -0800536 rcu_print_task_stall_begin(rnp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800537 t = list_entry(rnp->gp_tasks,
538 struct task_struct, rcu_node_entry);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700539 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenneya858af22012-01-16 13:29:10 -0800540 printk(KERN_CONT " P%d", t->pid);
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700541 ndetected++;
542 }
Paul E. McKenneya858af22012-01-16 13:29:10 -0800543 rcu_print_task_stall_end();
Paul E. McKenney9bc8b552011-08-13 13:31:47 -0700544 return ndetected;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700545}
546
Paul E. McKenney53d84e02010-08-10 14:28:53 -0700547/*
548 * Suppress preemptible RCU's CPU stall warnings by pushing the
549 * time of the next stall-warning message comfortably far into the
550 * future.
551 */
552static void rcu_preempt_stall_reset(void)
553{
554 rcu_preempt_state.jiffies_stall = jiffies + ULONG_MAX / 2;
555}
556
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700557/*
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700558 * Check that the list of blocked tasks for the newly completed grace
559 * period is in fact empty. It is a serious bug to complete a grace
560 * period that still has RCU readers blocked! This function must be
561 * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock
562 * must be held by the caller.
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800563 *
564 * Also, if there are blocked tasks on the list, they automatically
565 * block the newly created grace period, so set up ->gp_tasks accordingly.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700566 */
567static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
568{
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800569 WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp));
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800570 if (!list_empty(&rnp->blkd_tasks))
571 rnp->gp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney28ecd582009-09-18 09:50:17 -0700572 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -0700573}
574
Paul E. McKenney33f76142009-08-24 09:42:01 -0700575#ifdef CONFIG_HOTPLUG_CPU
576
577/*
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700578 * Handle tasklist migration for case in which all CPUs covered by the
579 * specified rcu_node have gone offline. Move them up to the root
580 * rcu_node. The reason for not just moving them to the immediate
581 * parent is to remove the need for rcu_read_unlock_special() to
582 * make more than two attempts to acquire the target rcu_node's lock.
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -0800583 * Returns true if there were tasks blocking the current RCU grace
584 * period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700585 *
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700586 * Returns 1 if there was previously a task blocking the current grace
587 * period on the specified rcu_node structure.
588 *
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700589 * The caller must hold rnp->lock with irqs disabled.
590 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700591static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
592 struct rcu_node *rnp,
593 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700594{
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700595 struct list_head *lp;
596 struct list_head *lp_root;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800597 int retval = 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700598 struct rcu_node *rnp_root = rcu_get_root(rsp);
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800599 struct task_struct *t;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700600
Paul E. McKenney86848962009-08-27 15:00:12 -0700601 if (rnp == rnp_root) {
602 WARN_ONCE(1, "Last CPU thought to be offlined?");
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700603 return 0; /* Shouldn't happen: at least one CPU online. */
Paul E. McKenney86848962009-08-27 15:00:12 -0700604 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800605
606 /* If we are on an internal node, complain bitterly. */
607 WARN_ON_ONCE(rnp != rdp->mynode);
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700608
609 /*
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800610 * Move tasks up to root rcu_node. Don't try to get fancy for
611 * this corner-case operation -- just put this node's tasks
612 * at the head of the root node's list, and update the root node's
613 * ->gp_tasks and ->exp_tasks pointers to those of this node's,
614 * if non-NULL. This might result in waiting for more tasks than
615 * absolutely necessary, but this is a good performance/complexity
616 * tradeoff.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700617 */
Paul E. McKenney2036d942012-01-30 17:02:47 -0800618 if (rcu_preempt_blocked_readers_cgp(rnp) && rnp->qsmask == 0)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800619 retval |= RCU_OFL_TASKS_NORM_GP;
620 if (rcu_preempted_readers_exp(rnp))
621 retval |= RCU_OFL_TASKS_EXP_GP;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800622 lp = &rnp->blkd_tasks;
623 lp_root = &rnp_root->blkd_tasks;
624 while (!list_empty(lp)) {
625 t = list_entry(lp->next, typeof(*t), rcu_node_entry);
626 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
627 list_del(&t->rcu_node_entry);
628 t->rcu_blocked_node = rnp_root;
629 list_add(&t->rcu_node_entry, lp_root);
630 if (&t->rcu_node_entry == rnp->gp_tasks)
631 rnp_root->gp_tasks = rnp->gp_tasks;
632 if (&t->rcu_node_entry == rnp->exp_tasks)
633 rnp_root->exp_tasks = rnp->exp_tasks;
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800634#ifdef CONFIG_RCU_BOOST
635 if (&t->rcu_node_entry == rnp->boost_tasks)
636 rnp_root->boost_tasks = rnp->boost_tasks;
637#endif /* #ifdef CONFIG_RCU_BOOST */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800638 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700639 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800640
641#ifdef CONFIG_RCU_BOOST
642 /* In case root is being boosted and leaf is not. */
643 raw_spin_lock(&rnp_root->lock); /* irqs already disabled */
644 if (rnp_root->boost_tasks != NULL &&
645 rnp_root->boost_tasks != rnp_root->gp_tasks)
646 rnp_root->boost_tasks = rnp_root->gp_tasks;
647 raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */
648#endif /* #ifdef CONFIG_RCU_BOOST */
649
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800650 rnp->gp_tasks = NULL;
651 rnp->exp_tasks = NULL;
Paul E. McKenney237c80c2009-10-15 09:26:14 -0700652 return retval;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700653}
654
Paul E. McKenneye5601402012-01-07 11:03:57 -0800655#endif /* #ifdef CONFIG_HOTPLUG_CPU */
656
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -0700657/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800658 * Do CPU-offline processing for preemptible RCU.
Paul E. McKenney33f76142009-08-24 09:42:01 -0700659 */
Paul E. McKenneye5601402012-01-07 11:03:57 -0800660static void rcu_preempt_cleanup_dead_cpu(int cpu)
Paul E. McKenney33f76142009-08-24 09:42:01 -0700661{
Paul E. McKenneye5601402012-01-07 11:03:57 -0800662 rcu_cleanup_dead_cpu(cpu, &rcu_preempt_state);
Paul E. McKenney33f76142009-08-24 09:42:01 -0700663}
664
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700665/*
666 * Check for a quiescent state from the current CPU. When a task blocks,
667 * the task is recorded in the corresponding CPU's rcu_node structure,
668 * which is checked elsewhere.
669 *
670 * Caller must disable hard irqs.
671 */
672static void rcu_preempt_check_callbacks(int cpu)
673{
674 struct task_struct *t = current;
675
676 if (t->rcu_read_lock_nesting == 0) {
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700677 rcu_preempt_qs(cpu);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700678 return;
679 }
Paul E. McKenney10f39bb2011-07-17 21:14:35 -0700680 if (t->rcu_read_lock_nesting > 0 &&
681 per_cpu(rcu_preempt_data, cpu).qs_pending)
Paul E. McKenneyc3422be2009-09-13 09:15:10 -0700682 t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700683}
684
685/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800686 * Process callbacks for preemptible RCU.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700687 */
688static void rcu_preempt_process_callbacks(void)
689{
690 __rcu_process_callbacks(&rcu_preempt_state,
691 &__get_cpu_var(rcu_preempt_data));
692}
693
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700694#ifdef CONFIG_RCU_BOOST
695
Shaohua Li09223372011-06-14 13:26:25 +0800696static void rcu_preempt_do_callbacks(void)
697{
698 rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data));
699}
700
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700701#endif /* #ifdef CONFIG_RCU_BOOST */
702
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700703/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800704 * Queue a preemptible-RCU callback for invocation after a grace period.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700705 */
706void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
707{
Paul E. McKenney486e2592012-01-06 14:11:30 -0800708 __call_rcu(head, func, &rcu_preempt_state, 0);
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700709}
710EXPORT_SYMBOL_GPL(call_rcu);
711
Paul E. McKenney486e2592012-01-06 14:11:30 -0800712/*
713 * Queue an RCU callback for lazy invocation after a grace period.
714 * This will likely be later named something like "call_rcu_lazy()",
715 * but this change will require some way of tagging the lazy RCU
716 * callbacks in the list of pending callbacks. Until then, this
717 * function may only be called from __kfree_rcu().
718 */
719void kfree_call_rcu(struct rcu_head *head,
720 void (*func)(struct rcu_head *rcu))
721{
722 __call_rcu(head, func, &rcu_preempt_state, 1);
723}
724EXPORT_SYMBOL_GPL(kfree_call_rcu);
725
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800726/**
727 * synchronize_rcu - wait until a grace period has elapsed.
728 *
729 * Control will return to the caller some time after a full grace
730 * period has elapsed, in other words after all currently executing RCU
Paul E. McKenney77d84852010-07-08 17:38:59 -0700731 * read-side critical sections have completed. Note, however, that
732 * upon return from synchronize_rcu(), the caller might well be executing
733 * concurrently with new RCU read-side critical sections that began while
734 * synchronize_rcu() was waiting. RCU read-side critical sections are
735 * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested.
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800736 */
737void synchronize_rcu(void)
738{
Paul E. McKenneyfe15d702012-01-04 13:30:33 -0800739 rcu_lockdep_assert(!lock_is_held(&rcu_bh_lock_map) &&
740 !lock_is_held(&rcu_lock_map) &&
741 !lock_is_held(&rcu_sched_lock_map),
742 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800743 if (!rcu_scheduler_active)
744 return;
Paul E. McKenney2c428182011-05-26 22:14:36 -0700745 wait_rcu_gp(call_rcu);
Paul E. McKenney6ebb2372009-11-22 08:53:50 -0800746}
747EXPORT_SYMBOL_GPL(synchronize_rcu);
748
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800749static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq);
750static long sync_rcu_preempt_exp_count;
751static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex);
752
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700753/*
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800754 * Return non-zero if there are any tasks in RCU read-side critical
755 * sections blocking the current preemptible-RCU expedited grace period.
756 * If there is no preemptible-RCU expedited grace period currently in
757 * progress, returns zero unconditionally.
758 */
759static int rcu_preempted_readers_exp(struct rcu_node *rnp)
760{
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800761 return rnp->exp_tasks != NULL;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800762}
763
764/*
765 * return non-zero if there is no RCU expedited grace period in progress
766 * for the specified rcu_node structure, in other words, if all CPUs and
767 * tasks covered by the specified rcu_node structure have done their bit
768 * for the current expedited grace period. Works only for preemptible
769 * RCU -- other RCU implementation use other means.
770 *
771 * Caller must hold sync_rcu_preempt_exp_mutex.
772 */
773static int sync_rcu_preempt_exp_done(struct rcu_node *rnp)
774{
775 return !rcu_preempted_readers_exp(rnp) &&
776 ACCESS_ONCE(rnp->expmask) == 0;
777}
778
779/*
780 * Report the exit from RCU read-side critical section for the last task
781 * that queued itself during or before the current expedited preemptible-RCU
782 * grace period. This event is reported either to the rcu_node structure on
783 * which the task was queued or to one of that rcu_node structure's ancestors,
784 * recursively up the tree. (Calm down, calm down, we do the recursion
785 * iteratively!)
786 *
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700787 * Most callers will set the "wake" flag, but the task initiating the
788 * expedited grace period need not wake itself.
789 *
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800790 * Caller must hold sync_rcu_preempt_exp_mutex.
791 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700792static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
793 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800794{
795 unsigned long flags;
796 unsigned long mask;
797
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800798 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800799 for (;;) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700800 if (!sync_rcu_preempt_exp_done(rnp)) {
801 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800802 break;
Paul E. McKenney131906b2011-07-17 02:05:49 -0700803 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800804 if (rnp->parent == NULL) {
Paul E. McKenney131906b2011-07-17 02:05:49 -0700805 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700806 if (wake)
807 wake_up(&sync_rcu_preempt_exp_wq);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800808 break;
809 }
810 mask = rnp->grpmask;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800811 raw_spin_unlock(&rnp->lock); /* irqs remain disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800812 rnp = rnp->parent;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800813 raw_spin_lock(&rnp->lock); /* irqs already disabled */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800814 rnp->expmask &= ~mask;
815 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800816}
817
818/*
819 * Snapshot the tasks blocking the newly started preemptible-RCU expedited
820 * grace period for the specified rcu_node structure. If there are no such
821 * tasks, report it up the rcu_node hierarchy.
822 *
823 * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock.
824 */
825static void
826sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp)
827{
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700828 unsigned long flags;
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800829 int must_wait = 0;
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800830
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700831 raw_spin_lock_irqsave(&rnp->lock, flags);
832 if (list_empty(&rnp->blkd_tasks))
833 raw_spin_unlock_irqrestore(&rnp->lock, flags);
834 else {
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800835 rnp->exp_tasks = rnp->blkd_tasks.next;
Paul E. McKenney1217ed12011-05-04 21:43:49 -0700836 rcu_initiate_boost(rnp, flags); /* releases rnp->lock */
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800837 must_wait = 1;
838 }
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800839 if (!must_wait)
Thomas Gleixnerb40d2932011-10-22 07:12:34 -0700840 rcu_report_exp_rnp(rsp, rnp, false); /* Don't wake self. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800841}
842
Paul E. McKenney236fefa2012-01-31 14:00:41 -0800843/**
844 * synchronize_rcu_expedited - Brute-force RCU grace period
845 *
846 * Wait for an RCU-preempt grace period, but expedite it. The basic
847 * idea is to invoke synchronize_sched_expedited() to push all the tasks to
848 * the ->blkd_tasks lists and wait for this list to drain. This consumes
849 * significant time on all CPUs and is unfriendly to real-time workloads,
850 * so is thus not recommended for any sort of common-case code.
851 * In fact, if you are using synchronize_rcu_expedited() in a loop,
852 * please restructure your code to batch your updates, and then Use a
853 * single synchronize_rcu() instead.
854 *
855 * Note that it is illegal to call this function while holding any lock
856 * that is acquired by a CPU-hotplug notifier. And yes, it is also illegal
857 * to call this function from a CPU-hotplug notifier. Failing to observe
858 * these restriction will result in deadlock.
Paul E. McKenney019129d52009-10-14 10:15:56 -0700859 */
860void synchronize_rcu_expedited(void)
861{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800862 unsigned long flags;
863 struct rcu_node *rnp;
864 struct rcu_state *rsp = &rcu_preempt_state;
865 long snap;
866 int trycount = 0;
867
868 smp_mb(); /* Caller's modifications seen first by other CPUs. */
869 snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1;
870 smp_mb(); /* Above access cannot bleed into critical section. */
871
872 /*
873 * Acquire lock, falling back to synchronize_rcu() if too many
874 * lock-acquisition failures. Of course, if someone does the
875 * expedited grace period for us, just leave.
876 */
877 while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) {
878 if (trycount++ < 10)
879 udelay(trycount * num_online_cpus());
880 else {
881 synchronize_rcu();
882 return;
883 }
884 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
885 goto mb_ret; /* Others did our work for us. */
886 }
887 if ((ACCESS_ONCE(sync_rcu_preempt_exp_count) - snap) > 0)
888 goto unlock_mb_ret; /* Others did our work for us. */
889
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800890 /* force all RCU readers onto ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800891 synchronize_sched_expedited();
892
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800893 raw_spin_lock_irqsave(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800894
895 /* Initialize ->expmask for all non-leaf rcu_node structures. */
896 rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) {
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800897 raw_spin_lock(&rnp->lock); /* irqs already disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800898 rnp->expmask = rnp->qsmaskinit;
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800899 raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800900 }
901
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800902 /* Snapshot current state of ->blkd_tasks lists. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800903 rcu_for_each_leaf_node(rsp, rnp)
904 sync_rcu_preempt_exp_init(rsp, rnp);
905 if (NUM_RCU_NODES > 1)
906 sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp));
907
Paul E. McKenney1304afb2010-02-22 17:05:02 -0800908 raw_spin_unlock_irqrestore(&rsp->onofflock, flags);
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800909
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800910 /* Wait for snapshotted ->blkd_tasks lists to drain. */
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800911 rnp = rcu_get_root(rsp);
912 wait_event(sync_rcu_preempt_exp_wq,
913 sync_rcu_preempt_exp_done(rnp));
914
915 /* Clean up and exit. */
916 smp_mb(); /* ensure expedited GP seen before counter increment. */
917 ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
918unlock_mb_ret:
919 mutex_unlock(&sync_rcu_preempt_exp_mutex);
920mb_ret:
921 smp_mb(); /* ensure subsequent action seen after grace period. */
Paul E. McKenney019129d52009-10-14 10:15:56 -0700922}
923EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
924
925/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800926 * Check to see if there is any immediate preemptible-RCU-related work
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700927 * to be done.
928 */
929static int rcu_preempt_pending(int cpu)
930{
931 return __rcu_pending(&rcu_preempt_state,
932 &per_cpu(rcu_preempt_data, cpu));
933}
934
935/*
Paul E. McKenney30fbcc92012-01-12 11:01:14 -0800936 * Does preemptible RCU have callbacks on this CPU?
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700937 */
Paul E. McKenney30fbcc92012-01-12 11:01:14 -0800938static int rcu_preempt_cpu_has_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700939{
940 return !!per_cpu(rcu_preempt_data, cpu).nxtlist;
941}
942
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700943/**
944 * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete.
945 */
946void rcu_barrier(void)
947{
Paul E. McKenney037b64e2012-05-28 23:26:01 -0700948 _rcu_barrier(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700949}
950EXPORT_SYMBOL_GPL(rcu_barrier);
951
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700952/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800953 * Initialize preemptible RCU's per-CPU data.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700954 */
955static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
956{
957 rcu_init_percpu_data(cpu, &rcu_preempt_state, 1);
958}
959
960/*
Paul E. McKenneye5601402012-01-07 11:03:57 -0800961 * Move preemptible RCU's callbacks from dying CPU to other online CPU
962 * and record a quiescent state.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700963 */
Paul E. McKenneye5601402012-01-07 11:03:57 -0800964static void rcu_preempt_cleanup_dying_cpu(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700965{
Paul E. McKenneye5601402012-01-07 11:03:57 -0800966 rcu_cleanup_dying_cpu(&rcu_preempt_state);
Paul E. McKenneye74f4c42009-10-06 21:48:17 -0700967}
968
969/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -0800970 * Initialize preemptible RCU's state structures.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700971 */
972static void __init __rcu_init_preempt(void)
973{
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800974 rcu_init_one(&rcu_preempt_state, &rcu_preempt_data);
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700975}
976
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700977#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
978
Paul E. McKenney27f4d282011-02-07 12:47:15 -0800979static struct rcu_state *rcu_state = &rcu_sched_state;
980
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700981/*
982 * Tell them what RCU they are running.
983 */
Paul E. McKenney0e0fc1c2009-11-11 11:28:06 -0800984static void __init rcu_bootup_announce(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700985{
986 printk(KERN_INFO "Hierarchical RCU implementation.\n");
Paul E. McKenney26845c22010-04-13 14:19:23 -0700987 rcu_bootup_announce_oddness();
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700988}
989
990/*
991 * Return the number of RCU batches processed thus far for debug & stats.
992 */
993long rcu_batches_completed(void)
994{
995 return rcu_batches_completed_sched();
996}
997EXPORT_SYMBOL_GPL(rcu_batches_completed);
998
999/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001000 * Force a quiescent state for RCU, which, because there is no preemptible
1001 * RCU, becomes the same as rcu-sched.
1002 */
1003void rcu_force_quiescent_state(void)
1004{
1005 rcu_sched_force_quiescent_state();
1006}
1007EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
1008
1009/*
Paul E. McKenneycba6d0d2012-07-02 07:08:42 -07001010 * Because preemptible RCU does not exist, we never have to check for
1011 * CPUs being in quiescent states.
1012 */
1013static void rcu_preempt_note_context_switch(int cpu)
1014{
1015}
1016
1017/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001018 * Because preemptible RCU does not exist, there are never any preempted
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -07001019 * RCU readers.
1020 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001021static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp)
Paul E. McKenneyfc2219d2009-09-23 09:50:41 -07001022{
1023 return 0;
1024}
1025
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -08001026#ifdef CONFIG_HOTPLUG_CPU
1027
1028/* Because preemptible RCU does not exist, no quieting of tasks. */
Paul E. McKenneyd3f6bad2009-12-02 12:10:13 -08001029static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -08001030{
Paul E. McKenney1304afb2010-02-22 17:05:02 -08001031 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenneyb668c9c2009-11-22 08:53:48 -08001032}
1033
1034#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1035
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001036/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001037 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001038 * tasks blocked within RCU read-side critical sections.
1039 */
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001040static void rcu_print_detail_task_stall(struct rcu_state *rsp)
1041{
1042}
1043
1044/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001045 * Because preemptible RCU does not exist, we never have to check for
Paul E. McKenney1ed509a2010-02-22 17:05:05 -08001046 * tasks blocked within RCU read-side critical sections.
1047 */
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001048static int rcu_print_task_stall(struct rcu_node *rnp)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001049{
Paul E. McKenney9bc8b552011-08-13 13:31:47 -07001050 return 0;
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001051}
1052
Paul E. McKenney53d84e02010-08-10 14:28:53 -07001053/*
1054 * Because preemptible RCU does not exist, there is no need to suppress
1055 * its CPU stall warnings.
1056 */
1057static void rcu_preempt_stall_reset(void)
1058{
1059}
1060
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001061/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001062 * Because there is no preemptible RCU, there can be no readers blocked,
Paul E. McKenney49e29122009-09-18 09:50:19 -07001063 * so there is no need to check for blocked tasks. So check only for
1064 * bogus qsmask values.
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -07001065 */
1066static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp)
1067{
Paul E. McKenney49e29122009-09-18 09:50:19 -07001068 WARN_ON_ONCE(rnp->qsmask);
Paul E. McKenneyb0e165c2009-09-13 09:15:09 -07001069}
1070
Paul E. McKenney33f76142009-08-24 09:42:01 -07001071#ifdef CONFIG_HOTPLUG_CPU
1072
1073/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001074 * Because preemptible RCU does not exist, it never needs to migrate
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001075 * tasks that were blocked within RCU read-side critical sections, and
1076 * such non-existent tasks cannot possibly have been blocking the current
1077 * grace period.
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001078 */
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001079static int rcu_preempt_offline_tasks(struct rcu_state *rsp,
1080 struct rcu_node *rnp,
1081 struct rcu_data *rdp)
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001082{
Paul E. McKenney237c80c2009-10-15 09:26:14 -07001083 return 0;
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001084}
1085
Paul E. McKenneye5601402012-01-07 11:03:57 -08001086#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1087
Paul E. McKenneydd5d19b2009-08-27 14:58:16 -07001088/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001089 * Because preemptible RCU does not exist, it never needs CPU-offline
Paul E. McKenney33f76142009-08-24 09:42:01 -07001090 * processing.
1091 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08001092static void rcu_preempt_cleanup_dead_cpu(int cpu)
Paul E. McKenney33f76142009-08-24 09:42:01 -07001093{
1094}
1095
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001096/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001097 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001098 * to check.
1099 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001100static void rcu_preempt_check_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001101{
1102}
1103
1104/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001105 * Because preemptible RCU does not exist, it never has any callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001106 * to process.
1107 */
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001108static void rcu_preempt_process_callbacks(void)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001109{
1110}
1111
1112/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08001113 * Queue an RCU callback for lazy invocation after a grace period.
1114 * This will likely be later named something like "call_rcu_lazy()",
1115 * but this change will require some way of tagging the lazy RCU
1116 * callbacks in the list of pending callbacks. Until then, this
1117 * function may only be called from __kfree_rcu().
1118 *
1119 * Because there is no preemptible RCU, we use RCU-sched instead.
1120 */
1121void kfree_call_rcu(struct rcu_head *head,
1122 void (*func)(struct rcu_head *rcu))
1123{
1124 __call_rcu(head, func, &rcu_sched_state, 1);
1125}
1126EXPORT_SYMBOL_GPL(kfree_call_rcu);
1127
1128/*
Paul E. McKenney019129d52009-10-14 10:15:56 -07001129 * Wait for an rcu-preempt grace period, but make it happen quickly.
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001130 * But because preemptible RCU does not exist, map to rcu-sched.
Paul E. McKenney019129d52009-10-14 10:15:56 -07001131 */
1132void synchronize_rcu_expedited(void)
1133{
1134 synchronize_sched_expedited();
1135}
1136EXPORT_SYMBOL_GPL(synchronize_rcu_expedited);
1137
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001138#ifdef CONFIG_HOTPLUG_CPU
1139
1140/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001141 * Because preemptible RCU does not exist, there is never any need to
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001142 * report on tasks preempted in RCU read-side critical sections during
1143 * expedited RCU grace periods.
1144 */
Thomas Gleixnerb40d2932011-10-22 07:12:34 -07001145static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp,
1146 bool wake)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001147{
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001148}
1149
1150#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1151
Paul E. McKenney019129d52009-10-14 10:15:56 -07001152/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001153 * Because preemptible RCU does not exist, it never has any work to do.
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001154 */
1155static int rcu_preempt_pending(int cpu)
1156{
1157 return 0;
1158}
1159
1160/*
Paul E. McKenney30fbcc92012-01-12 11:01:14 -08001161 * Because preemptible RCU does not exist, it never has callbacks
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001162 */
Paul E. McKenney30fbcc92012-01-12 11:01:14 -08001163static int rcu_preempt_cpu_has_callbacks(int cpu)
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001164{
1165 return 0;
1166}
1167
1168/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001169 * Because preemptible RCU does not exist, rcu_barrier() is just
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001170 * another name for rcu_barrier_sched().
1171 */
1172void rcu_barrier(void)
1173{
1174 rcu_barrier_sched();
1175}
1176EXPORT_SYMBOL_GPL(rcu_barrier);
1177
1178/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001179 * Because preemptible RCU does not exist, there is no per-CPU
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001180 * data to initialize.
1181 */
1182static void __cpuinit rcu_preempt_init_percpu_data(int cpu)
1183{
1184}
1185
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001186/*
Paul E. McKenneye5601402012-01-07 11:03:57 -08001187 * Because there is no preemptible RCU, there is no cleanup to do.
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001188 */
Paul E. McKenneye5601402012-01-07 11:03:57 -08001189static void rcu_preempt_cleanup_dying_cpu(void)
Paul E. McKenneye74f4c42009-10-06 21:48:17 -07001190{
1191}
1192
1193/*
Paul E. McKenney6cc68792011-03-02 13:15:15 -08001194 * Because preemptible RCU does not exist, it need not be initialized.
Paul E. McKenney1eba8f82009-09-23 09:50:42 -07001195 */
1196static void __init __rcu_init_preempt(void)
1197{
1198}
1199
Paul E. McKenneyf41d9112009-08-22 13:56:52 -07001200#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001201
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001202#ifdef CONFIG_RCU_BOOST
1203
1204#include "rtmutex_common.h"
1205
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001206#ifdef CONFIG_RCU_TRACE
1207
1208static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1209{
1210 if (list_empty(&rnp->blkd_tasks))
1211 rnp->n_balk_blkd_tasks++;
1212 else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL)
1213 rnp->n_balk_exp_gp_tasks++;
1214 else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL)
1215 rnp->n_balk_boost_tasks++;
1216 else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
1217 rnp->n_balk_notblocked++;
1218 else if (rnp->gp_tasks != NULL &&
Paul E. McKenneya9f47932011-05-02 03:46:10 -07001219 ULONG_CMP_LT(jiffies, rnp->boost_time))
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001220 rnp->n_balk_notyet++;
1221 else
1222 rnp->n_balk_nos++;
1223}
1224
1225#else /* #ifdef CONFIG_RCU_TRACE */
1226
1227static void rcu_initiate_boost_trace(struct rcu_node *rnp)
1228{
1229}
1230
1231#endif /* #else #ifdef CONFIG_RCU_TRACE */
1232
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001233/*
1234 * Carry out RCU priority boosting on the task indicated by ->exp_tasks
1235 * or ->boost_tasks, advancing the pointer to the next task in the
1236 * ->blkd_tasks list.
1237 *
1238 * Note that irqs must be enabled: boosting the task can block.
1239 * Returns 1 if there are more tasks needing to be boosted.
1240 */
1241static int rcu_boost(struct rcu_node *rnp)
1242{
1243 unsigned long flags;
1244 struct rt_mutex mtx;
1245 struct task_struct *t;
1246 struct list_head *tb;
1247
1248 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL)
1249 return 0; /* Nothing left to boost. */
1250
1251 raw_spin_lock_irqsave(&rnp->lock, flags);
1252
1253 /*
1254 * Recheck under the lock: all tasks in need of boosting
1255 * might exit their RCU read-side critical sections on their own.
1256 */
1257 if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) {
1258 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1259 return 0;
1260 }
1261
1262 /*
1263 * Preferentially boost tasks blocking expedited grace periods.
1264 * This cannot starve the normal grace periods because a second
1265 * expedited grace period must boost all blocked tasks, including
1266 * those blocking the pre-existing normal grace period.
1267 */
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001268 if (rnp->exp_tasks != NULL) {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001269 tb = rnp->exp_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001270 rnp->n_exp_boosts++;
1271 } else {
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001272 tb = rnp->boost_tasks;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001273 rnp->n_normal_boosts++;
1274 }
1275 rnp->n_tasks_boosted++;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001276
1277 /*
1278 * We boost task t by manufacturing an rt_mutex that appears to
1279 * be held by task t. We leave a pointer to that rt_mutex where
1280 * task t can find it, and task t will release the mutex when it
1281 * exits its outermost RCU read-side critical section. Then
1282 * simply acquiring this artificial rt_mutex will boost task
1283 * t's priority. (Thanks to tglx for suggesting this approach!)
1284 *
1285 * Note that task t must acquire rnp->lock to remove itself from
1286 * the ->blkd_tasks list, which it will do from exit() if from
1287 * nowhere else. We therefore are guaranteed that task t will
1288 * stay around at least until we drop rnp->lock. Note that
1289 * rnp->lock also resolves races between our priority boosting
1290 * and task t's exiting its outermost RCU read-side critical
1291 * section.
1292 */
1293 t = container_of(tb, struct task_struct, rcu_node_entry);
1294 rt_mutex_init_proxy_locked(&mtx, t);
1295 t->rcu_boost_mutex = &mtx;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001296 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1297 rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */
1298 rt_mutex_unlock(&mtx); /* Keep lockdep happy. */
1299
Paul E. McKenney4f89b332011-12-09 14:43:47 -08001300 return ACCESS_ONCE(rnp->exp_tasks) != NULL ||
1301 ACCESS_ONCE(rnp->boost_tasks) != NULL;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001302}
1303
1304/*
1305 * Timer handler to initiate waking up of boost kthreads that
1306 * have yielded the CPU due to excessive numbers of tasks to
1307 * boost. We wake up the per-rcu_node kthread, which in turn
1308 * will wake up the booster kthread.
1309 */
1310static void rcu_boost_kthread_timer(unsigned long arg)
1311{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001312 invoke_rcu_node_kthread((struct rcu_node *)arg);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001313}
1314
1315/*
1316 * Priority-boosting kthread. One per leaf rcu_node and one for the
1317 * root rcu_node.
1318 */
1319static int rcu_boost_kthread(void *arg)
1320{
1321 struct rcu_node *rnp = (struct rcu_node *)arg;
1322 int spincnt = 0;
1323 int more2boost;
1324
Paul E. McKenney385680a2011-06-21 22:43:26 -07001325 trace_rcu_utilization("Start boost kthread@init");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001326 for (;;) {
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001327 rnp->boost_kthread_status = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001328 trace_rcu_utilization("End boost kthread@rcu_wait");
Peter Zijlstra08bca602011-05-20 16:06:29 -07001329 rcu_wait(rnp->boost_tasks || rnp->exp_tasks);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001330 trace_rcu_utilization("Start boost kthread@rcu_wait");
Paul E. McKenneyd71df902011-03-29 17:48:28 -07001331 rnp->boost_kthread_status = RCU_KTHREAD_RUNNING;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001332 more2boost = rcu_boost(rnp);
1333 if (more2boost)
1334 spincnt++;
1335 else
1336 spincnt = 0;
1337 if (spincnt > 10) {
Paul E. McKenney385680a2011-06-21 22:43:26 -07001338 trace_rcu_utilization("End boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001339 rcu_yield(rcu_boost_kthread_timer, (unsigned long)rnp);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001340 trace_rcu_utilization("Start boost kthread@rcu_yield");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001341 spincnt = 0;
1342 }
1343 }
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001344 /* NOTREACHED */
Paul E. McKenney385680a2011-06-21 22:43:26 -07001345 trace_rcu_utilization("End boost kthread@notreached");
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001346 return 0;
1347}
1348
1349/*
1350 * Check to see if it is time to start boosting RCU readers that are
1351 * blocking the current grace period, and, if so, tell the per-rcu_node
1352 * kthread to start boosting them. If there is an expedited grace
1353 * period in progress, it is always time to boost.
1354 *
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001355 * The caller must hold rnp->lock, which this function releases,
1356 * but irqs remain disabled. The ->boost_kthread_task is immortal,
1357 * so we don't need to worry about it going away.
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001358 */
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001359static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001360{
1361 struct task_struct *t;
1362
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001363 if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) {
1364 rnp->n_balk_exp_gp_tasks++;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001365 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001366 return;
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001367 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001368 if (rnp->exp_tasks != NULL ||
1369 (rnp->gp_tasks != NULL &&
1370 rnp->boost_tasks == NULL &&
1371 rnp->qsmask == 0 &&
1372 ULONG_CMP_GE(jiffies, rnp->boost_time))) {
1373 if (rnp->exp_tasks == NULL)
1374 rnp->boost_tasks = rnp->gp_tasks;
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001375 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001376 t = rnp->boost_kthread_task;
1377 if (t != NULL)
1378 wake_up_process(t);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001379 } else {
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -08001380 rcu_initiate_boost_trace(rnp);
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001381 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1382 }
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001383}
1384
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001385/*
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001386 * Wake up the per-CPU kthread to invoke RCU callbacks.
1387 */
1388static void invoke_rcu_callbacks_kthread(void)
1389{
1390 unsigned long flags;
1391
1392 local_irq_save(flags);
1393 __this_cpu_write(rcu_cpu_has_work, 1);
Shaohua Li1eb52122011-06-16 16:02:54 -07001394 if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
1395 current != __this_cpu_read(rcu_cpu_kthread_task))
1396 wake_up_process(__this_cpu_read(rcu_cpu_kthread_task));
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001397 local_irq_restore(flags);
1398}
1399
1400/*
Paul E. McKenneydff16722011-11-29 15:57:13 -08001401 * Is the current CPU running the RCU-callbacks kthread?
1402 * Caller must have preemption disabled.
1403 */
1404static bool rcu_is_callbacks_kthread(void)
1405{
1406 return __get_cpu_var(rcu_cpu_kthread_task) == current;
1407}
1408
1409/*
Paul E. McKenney0f962a52011-04-14 12:13:53 -07001410 * Set the affinity of the boost kthread. The CPU-hotplug locks are
1411 * held, so no one should be messing with the existence of the boost
1412 * kthread.
1413 */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001414static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp,
1415 cpumask_var_t cm)
1416{
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001417 struct task_struct *t;
1418
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001419 t = rnp->boost_kthread_task;
1420 if (t != NULL)
1421 set_cpus_allowed_ptr(rnp->boost_kthread_task, cm);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001422}
1423
1424#define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
1425
1426/*
1427 * Do priority-boost accounting for the start of a new grace period.
1428 */
1429static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1430{
1431 rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES;
1432}
1433
1434/*
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001435 * Create an RCU-boost kthread for the specified node if one does not
1436 * already exist. We only create this kthread for preemptible RCU.
1437 * Returns zero if all is well, a negated errno otherwise.
1438 */
1439static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp,
1440 struct rcu_node *rnp,
1441 int rnp_index)
1442{
1443 unsigned long flags;
1444 struct sched_param sp;
1445 struct task_struct *t;
1446
1447 if (&rcu_preempt_state != rsp)
1448 return 0;
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001449 rsp->boost = 1;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001450 if (rnp->boost_kthread_task != NULL)
1451 return 0;
1452 t = kthread_create(rcu_boost_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001453 "rcub/%d", rnp_index);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001454 if (IS_ERR(t))
1455 return PTR_ERR(t);
1456 raw_spin_lock_irqsave(&rnp->lock, flags);
1457 rnp->boost_kthread_task = t;
1458 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001459 sp.sched_priority = RCU_BOOST_PRIO;
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001460 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
Paul E. McKenney9a432732011-05-30 20:38:55 -07001461 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001462 return 0;
1463}
1464
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001465#ifdef CONFIG_HOTPLUG_CPU
1466
1467/*
1468 * Stop the RCU's per-CPU kthread when its CPU goes offline,.
1469 */
1470static void rcu_stop_cpu_kthread(int cpu)
1471{
1472 struct task_struct *t;
1473
1474 /* Stop the CPU's kthread. */
1475 t = per_cpu(rcu_cpu_kthread_task, cpu);
1476 if (t != NULL) {
1477 per_cpu(rcu_cpu_kthread_task, cpu) = NULL;
1478 kthread_stop(t);
1479 }
1480}
1481
1482#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1483
1484static void rcu_kthread_do_work(void)
1485{
1486 rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data));
1487 rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
1488 rcu_preempt_do_callbacks();
1489}
1490
1491/*
1492 * Wake up the specified per-rcu_node-structure kthread.
1493 * Because the per-rcu_node kthreads are immortal, we don't need
1494 * to do anything to keep them alive.
1495 */
1496static void invoke_rcu_node_kthread(struct rcu_node *rnp)
1497{
1498 struct task_struct *t;
1499
1500 t = rnp->node_kthread_task;
1501 if (t != NULL)
1502 wake_up_process(t);
1503}
1504
1505/*
1506 * Set the specified CPU's kthread to run RT or not, as specified by
1507 * the to_rt argument. The CPU-hotplug locks are held, so the task
1508 * is not going away.
1509 */
1510static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1511{
1512 int policy;
1513 struct sched_param sp;
1514 struct task_struct *t;
1515
1516 t = per_cpu(rcu_cpu_kthread_task, cpu);
1517 if (t == NULL)
1518 return;
1519 if (to_rt) {
1520 policy = SCHED_FIFO;
1521 sp.sched_priority = RCU_KTHREAD_PRIO;
1522 } else {
1523 policy = SCHED_NORMAL;
1524 sp.sched_priority = 0;
1525 }
1526 sched_setscheduler_nocheck(t, policy, &sp);
1527}
1528
1529/*
1530 * Timer handler to initiate the waking up of per-CPU kthreads that
1531 * have yielded the CPU due to excess numbers of RCU callbacks.
1532 * We wake up the per-rcu_node kthread, which in turn will wake up
1533 * the booster kthread.
1534 */
1535static void rcu_cpu_kthread_timer(unsigned long arg)
1536{
1537 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, arg);
1538 struct rcu_node *rnp = rdp->mynode;
1539
1540 atomic_or(rdp->grpmask, &rnp->wakemask);
1541 invoke_rcu_node_kthread(rnp);
1542}
1543
1544/*
1545 * Drop to non-real-time priority and yield, but only after posting a
1546 * timer that will cause us to regain our real-time priority if we
1547 * remain preempted. Either way, we restore our real-time priority
1548 * before returning.
1549 */
1550static void rcu_yield(void (*f)(unsigned long), unsigned long arg)
1551{
1552 struct sched_param sp;
1553 struct timer_list yield_timer;
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001554 int prio = current->rt_priority;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001555
1556 setup_timer_on_stack(&yield_timer, f, arg);
1557 mod_timer(&yield_timer, jiffies + 2);
1558 sp.sched_priority = 0;
1559 sched_setscheduler_nocheck(current, SCHED_NORMAL, &sp);
1560 set_user_nice(current, 19);
1561 schedule();
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001562 set_user_nice(current, 0);
1563 sp.sched_priority = prio;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001564 sched_setscheduler_nocheck(current, SCHED_FIFO, &sp);
1565 del_timer(&yield_timer);
1566}
1567
1568/*
1569 * Handle cases where the rcu_cpu_kthread() ends up on the wrong CPU.
1570 * This can happen while the corresponding CPU is either coming online
1571 * or going offline. We cannot wait until the CPU is fully online
1572 * before starting the kthread, because the various notifier functions
1573 * can wait for RCU grace periods. So we park rcu_cpu_kthread() until
1574 * the corresponding CPU is online.
1575 *
1576 * Return 1 if the kthread needs to stop, 0 otherwise.
1577 *
1578 * Caller must disable bh. This function can momentarily enable it.
1579 */
1580static int rcu_cpu_kthread_should_stop(int cpu)
1581{
1582 while (cpu_is_offline(cpu) ||
1583 !cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)) ||
1584 smp_processor_id() != cpu) {
1585 if (kthread_should_stop())
1586 return 1;
1587 per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU;
1588 per_cpu(rcu_cpu_kthread_cpu, cpu) = raw_smp_processor_id();
1589 local_bh_enable();
1590 schedule_timeout_uninterruptible(1);
1591 if (!cpumask_equal(&current->cpus_allowed, cpumask_of(cpu)))
1592 set_cpus_allowed_ptr(current, cpumask_of(cpu));
1593 local_bh_disable();
1594 }
1595 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1596 return 0;
1597}
1598
1599/*
1600 * Per-CPU kernel thread that invokes RCU callbacks. This replaces the
Paul E. McKenneye0f23062011-06-21 01:29:39 -07001601 * RCU softirq used in flavors and configurations of RCU that do not
1602 * support RCU priority boosting.
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001603 */
1604static int rcu_cpu_kthread(void *arg)
1605{
1606 int cpu = (int)(long)arg;
1607 unsigned long flags;
1608 int spincnt = 0;
1609 unsigned int *statusp = &per_cpu(rcu_cpu_kthread_status, cpu);
1610 char work;
1611 char *workp = &per_cpu(rcu_cpu_has_work, cpu);
1612
Paul E. McKenney385680a2011-06-21 22:43:26 -07001613 trace_rcu_utilization("Start CPU kthread@init");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001614 for (;;) {
1615 *statusp = RCU_KTHREAD_WAITING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001616 trace_rcu_utilization("End CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001617 rcu_wait(*workp != 0 || kthread_should_stop());
Paul E. McKenney385680a2011-06-21 22:43:26 -07001618 trace_rcu_utilization("Start CPU kthread@rcu_wait");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001619 local_bh_disable();
1620 if (rcu_cpu_kthread_should_stop(cpu)) {
1621 local_bh_enable();
1622 break;
1623 }
1624 *statusp = RCU_KTHREAD_RUNNING;
1625 per_cpu(rcu_cpu_kthread_loops, cpu)++;
1626 local_irq_save(flags);
1627 work = *workp;
1628 *workp = 0;
1629 local_irq_restore(flags);
1630 if (work)
1631 rcu_kthread_do_work();
1632 local_bh_enable();
1633 if (*workp != 0)
1634 spincnt++;
1635 else
1636 spincnt = 0;
1637 if (spincnt > 10) {
1638 *statusp = RCU_KTHREAD_YIELDING;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001639 trace_rcu_utilization("End CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001640 rcu_yield(rcu_cpu_kthread_timer, (unsigned long)cpu);
Paul E. McKenney385680a2011-06-21 22:43:26 -07001641 trace_rcu_utilization("Start CPU kthread@rcu_yield");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001642 spincnt = 0;
1643 }
1644 }
1645 *statusp = RCU_KTHREAD_STOPPED;
Paul E. McKenney385680a2011-06-21 22:43:26 -07001646 trace_rcu_utilization("End CPU kthread@term");
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001647 return 0;
1648}
1649
1650/*
1651 * Spawn a per-CPU kthread, setting up affinity and priority.
1652 * Because the CPU hotplug lock is held, no other CPU will be attempting
1653 * to manipulate rcu_cpu_kthread_task. There might be another CPU
1654 * attempting to access it during boot, but the locking in kthread_bind()
1655 * will enforce sufficient ordering.
1656 *
1657 * Please note that we cannot simply refuse to wake up the per-CPU
1658 * kthread because kthreads are created in TASK_UNINTERRUPTIBLE state,
1659 * which can result in softlockup complaints if the task ends up being
1660 * idle for more than a couple of minutes.
1661 *
1662 * However, please note also that we cannot bind the per-CPU kthread to its
1663 * CPU until that CPU is fully online. We also cannot wait until the
1664 * CPU is fully online before we create its per-CPU kthread, as this would
1665 * deadlock the system when CPU notifiers tried waiting for grace
1666 * periods. So we bind the per-CPU kthread to its CPU only if the CPU
1667 * is online. If its CPU is not yet fully online, then the code in
1668 * rcu_cpu_kthread() will wait until it is fully online, and then do
1669 * the binding.
1670 */
1671static int __cpuinit rcu_spawn_one_cpu_kthread(int cpu)
1672{
1673 struct sched_param sp;
1674 struct task_struct *t;
1675
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001676 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001677 per_cpu(rcu_cpu_kthread_task, cpu) != NULL)
1678 return 0;
Eric Dumazet1f288092011-06-16 15:53:18 -07001679 t = kthread_create_on_node(rcu_cpu_kthread,
1680 (void *)(long)cpu,
1681 cpu_to_node(cpu),
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001682 "rcuc/%d", cpu);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001683 if (IS_ERR(t))
1684 return PTR_ERR(t);
1685 if (cpu_online(cpu))
1686 kthread_bind(t, cpu);
1687 per_cpu(rcu_cpu_kthread_cpu, cpu) = cpu;
1688 WARN_ON_ONCE(per_cpu(rcu_cpu_kthread_task, cpu) != NULL);
1689 sp.sched_priority = RCU_KTHREAD_PRIO;
1690 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1691 per_cpu(rcu_cpu_kthread_task, cpu) = t;
1692 wake_up_process(t); /* Get to TASK_INTERRUPTIBLE quickly. */
1693 return 0;
1694}
1695
1696/*
1697 * Per-rcu_node kthread, which is in charge of waking up the per-CPU
1698 * kthreads when needed. We ignore requests to wake up kthreads
1699 * for offline CPUs, which is OK because force_quiescent_state()
1700 * takes care of this case.
1701 */
1702static int rcu_node_kthread(void *arg)
1703{
1704 int cpu;
1705 unsigned long flags;
1706 unsigned long mask;
1707 struct rcu_node *rnp = (struct rcu_node *)arg;
1708 struct sched_param sp;
1709 struct task_struct *t;
1710
1711 for (;;) {
1712 rnp->node_kthread_status = RCU_KTHREAD_WAITING;
1713 rcu_wait(atomic_read(&rnp->wakemask) != 0);
1714 rnp->node_kthread_status = RCU_KTHREAD_RUNNING;
1715 raw_spin_lock_irqsave(&rnp->lock, flags);
1716 mask = atomic_xchg(&rnp->wakemask, 0);
1717 rcu_initiate_boost(rnp, flags); /* releases rnp->lock. */
1718 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1) {
1719 if ((mask & 0x1) == 0)
1720 continue;
1721 preempt_disable();
1722 t = per_cpu(rcu_cpu_kthread_task, cpu);
1723 if (!cpu_online(cpu) || t == NULL) {
1724 preempt_enable();
1725 continue;
1726 }
1727 per_cpu(rcu_cpu_has_work, cpu) = 1;
1728 sp.sched_priority = RCU_KTHREAD_PRIO;
1729 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1730 preempt_enable();
1731 }
1732 }
1733 /* NOTREACHED */
1734 rnp->node_kthread_status = RCU_KTHREAD_STOPPED;
1735 return 0;
1736}
1737
1738/*
1739 * Set the per-rcu_node kthread's affinity to cover all CPUs that are
1740 * served by the rcu_node in question. The CPU hotplug lock is still
1741 * held, so the value of rnp->qsmaskinit will be stable.
1742 *
1743 * We don't include outgoingcpu in the affinity set, use -1 if there is
1744 * no outgoing CPU. If there are no CPUs left in the affinity set,
1745 * this function allows the kthread to execute on any CPU.
1746 */
1747static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1748{
1749 cpumask_var_t cm;
1750 int cpu;
1751 unsigned long mask = rnp->qsmaskinit;
1752
1753 if (rnp->node_kthread_task == NULL)
1754 return;
1755 if (!alloc_cpumask_var(&cm, GFP_KERNEL))
1756 return;
1757 cpumask_clear(cm);
1758 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1)
1759 if ((mask & 0x1) && cpu != outgoingcpu)
1760 cpumask_set_cpu(cpu, cm);
1761 if (cpumask_weight(cm) == 0) {
1762 cpumask_setall(cm);
1763 for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++)
1764 cpumask_clear_cpu(cpu, cm);
1765 WARN_ON_ONCE(cpumask_weight(cm) == 0);
1766 }
1767 set_cpus_allowed_ptr(rnp->node_kthread_task, cm);
1768 rcu_boost_kthread_setaffinity(rnp, cm);
1769 free_cpumask_var(cm);
1770}
1771
1772/*
1773 * Spawn a per-rcu_node kthread, setting priority and affinity.
1774 * Called during boot before online/offline can happen, or, if
1775 * during runtime, with the main CPU-hotplug locks held. So only
1776 * one of these can be executing at a time.
1777 */
1778static int __cpuinit rcu_spawn_one_node_kthread(struct rcu_state *rsp,
1779 struct rcu_node *rnp)
1780{
1781 unsigned long flags;
1782 int rnp_index = rnp - &rsp->node[0];
1783 struct sched_param sp;
1784 struct task_struct *t;
1785
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001786 if (!rcu_scheduler_fully_active ||
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001787 rnp->qsmaskinit == 0)
1788 return 0;
1789 if (rnp->node_kthread_task == NULL) {
1790 t = kthread_create(rcu_node_kthread, (void *)rnp,
Mike Galbraith5b61b0b2011-08-19 11:39:11 -07001791 "rcun/%d", rnp_index);
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001792 if (IS_ERR(t))
1793 return PTR_ERR(t);
1794 raw_spin_lock_irqsave(&rnp->lock, flags);
1795 rnp->node_kthread_task = t;
1796 raw_spin_unlock_irqrestore(&rnp->lock, flags);
1797 sp.sched_priority = 99;
1798 sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1799 wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */
1800 }
1801 return rcu_spawn_one_boost_kthread(rsp, rnp, rnp_index);
1802}
1803
1804/*
1805 * Spawn all kthreads -- called as soon as the scheduler is running.
1806 */
1807static int __init rcu_spawn_kthreads(void)
1808{
1809 int cpu;
1810 struct rcu_node *rnp;
1811
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001812 rcu_scheduler_fully_active = 1;
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001813 for_each_possible_cpu(cpu) {
1814 per_cpu(rcu_cpu_has_work, cpu) = 0;
1815 if (cpu_online(cpu))
1816 (void)rcu_spawn_one_cpu_kthread(cpu);
1817 }
1818 rnp = rcu_get_root(rcu_state);
1819 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1820 if (NUM_RCU_NODES > 1) {
1821 rcu_for_each_leaf_node(rcu_state, rnp)
1822 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1823 }
1824 return 0;
1825}
1826early_initcall(rcu_spawn_kthreads);
1827
1828static void __cpuinit rcu_prepare_kthreads(int cpu)
1829{
1830 struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu);
1831 struct rcu_node *rnp = rdp->mynode;
1832
1833 /* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001834 if (rcu_scheduler_fully_active) {
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001835 (void)rcu_spawn_one_cpu_kthread(cpu);
1836 if (rnp->node_kthread_task == NULL)
1837 (void)rcu_spawn_one_node_kthread(rcu_state, rnp);
1838 }
1839}
1840
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001841#else /* #ifdef CONFIG_RCU_BOOST */
1842
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001843static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001844{
Paul E. McKenney1217ed12011-05-04 21:43:49 -07001845 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001846}
1847
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001848static void invoke_rcu_callbacks_kthread(void)
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001849{
Paul E. McKenneya46e0892011-06-15 15:47:09 -07001850 WARN_ON_ONCE(1);
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001851}
1852
Paul E. McKenneydff16722011-11-29 15:57:13 -08001853static bool rcu_is_callbacks_kthread(void)
1854{
1855 return false;
1856}
1857
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001858static void rcu_preempt_boost_start_gp(struct rcu_node *rnp)
1859{
1860}
1861
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001862#ifdef CONFIG_HOTPLUG_CPU
1863
1864static void rcu_stop_cpu_kthread(int cpu)
1865{
1866}
1867
1868#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1869
1870static void rcu_node_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu)
1871{
1872}
1873
1874static void rcu_cpu_kthread_setrt(int cpu, int to_rt)
1875{
1876}
1877
Paul E. McKenneyb0d30412011-07-10 15:57:35 -07001878static int __init rcu_scheduler_really_started(void)
1879{
1880 rcu_scheduler_fully_active = 1;
1881 return 0;
1882}
1883early_initcall(rcu_scheduler_really_started);
1884
Paul E. McKenneyf8b7fc62011-06-16 08:26:32 -07001885static void __cpuinit rcu_prepare_kthreads(int cpu)
1886{
1887}
1888
Paul E. McKenney27f4d282011-02-07 12:47:15 -08001889#endif /* #else #ifdef CONFIG_RCU_BOOST */
1890
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001891#if !defined(CONFIG_RCU_FAST_NO_HZ)
1892
1893/*
1894 * Check to see if any future RCU-related work will need to be done
1895 * by the current CPU, even if none need be done immediately, returning
1896 * 1 if so. This function is part of the RCU implementation; it is -not-
1897 * an exported member of the RCU API.
1898 *
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001899 * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
1900 * any flavor of RCU.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001901 */
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001902int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001903{
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07001904 *delta_jiffies = ULONG_MAX;
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001905 return rcu_cpu_has_callbacks(cpu);
1906}
1907
1908/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001909 * Because we do not have RCU_FAST_NO_HZ, don't bother initializing for it.
1910 */
1911static void rcu_prepare_for_idle_init(int cpu)
1912{
1913}
1914
1915/*
1916 * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
1917 * after it.
1918 */
1919static void rcu_cleanup_after_idle(int cpu)
1920{
1921}
1922
1923/*
Paul E. McKenneya858af22012-01-16 13:29:10 -08001924 * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n,
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07001925 * is nothing.
1926 */
1927static void rcu_prepare_for_idle(int cpu)
1928{
1929}
1930
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08001931/*
1932 * Don't bother keeping a running count of the number of RCU callbacks
1933 * posted because CONFIG_RCU_FAST_NO_HZ=n.
1934 */
1935static void rcu_idle_count_callbacks_posted(void)
1936{
1937}
1938
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001939#else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */
1940
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001941/*
1942 * This code is invoked when a CPU goes idle, at which point we want
1943 * to have the CPU do everything required for RCU so that it can enter
1944 * the energy-efficient dyntick-idle mode. This is handled by a
1945 * state machine implemented by rcu_prepare_for_idle() below.
1946 *
1947 * The following three proprocessor symbols control this state machine:
1948 *
1949 * RCU_IDLE_FLUSHES gives the maximum number of times that we will attempt
1950 * to satisfy RCU. Beyond this point, it is better to incur a periodic
1951 * scheduling-clock interrupt than to loop through the state machine
1952 * at full power.
1953 * RCU_IDLE_OPT_FLUSHES gives the number of RCU_IDLE_FLUSHES that are
1954 * optional if RCU does not need anything immediately from this
1955 * CPU, even if this CPU still has RCU callbacks queued. The first
1956 * times through the state machine are mandatory: we need to give
1957 * the state machine a chance to communicate a quiescent state
1958 * to the RCU core.
1959 * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted
1960 * to sleep in dyntick-idle mode with RCU callbacks pending. This
1961 * is sized to be roughly one RCU grace period. Those energy-efficiency
1962 * benchmarkers who might otherwise be tempted to set this to a large
1963 * number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your
1964 * system. And if you are -that- concerned about energy efficiency,
1965 * just power the system down and be done with it!
Paul E. McKenney778d2502012-01-10 14:13:24 -08001966 * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is
1967 * permitted to sleep in dyntick-idle mode with only lazy RCU
1968 * callbacks pending. Setting this too high can OOM your system.
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001969 *
1970 * The values below work well in practice. If future workloads require
1971 * adjustment, they can be converted into kernel config parameters, though
1972 * making the state machine smarter might be a better option.
1973 */
1974#define RCU_IDLE_FLUSHES 5 /* Number of dyntick-idle tries. */
1975#define RCU_IDLE_OPT_FLUSHES 3 /* Optional dyntick-idle tries. */
Paul E. McKenney7cb92492011-11-28 12:28:34 -08001976#define RCU_IDLE_GP_DELAY 6 /* Roughly one grace period. */
Paul E. McKenney778d2502012-01-10 14:13:24 -08001977#define RCU_IDLE_LAZY_GP_DELAY (6 * HZ) /* Roughly six seconds. */
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08001978
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08001979/*
Paul E. McKenney486e2592012-01-06 14:11:30 -08001980 * Does the specified flavor of RCU have non-lazy callbacks pending on
1981 * the specified CPU? Both RCU flavor and CPU are specified by the
1982 * rcu_data structure.
1983 */
1984static bool __rcu_cpu_has_nonlazy_callbacks(struct rcu_data *rdp)
1985{
1986 return rdp->qlen != rdp->qlen_lazy;
1987}
1988
1989#ifdef CONFIG_TREE_PREEMPT_RCU
1990
1991/*
1992 * Are there non-lazy RCU-preempt callbacks? (There cannot be if there
1993 * is no RCU-preempt in the kernel.)
1994 */
1995static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
1996{
1997 struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu);
1998
1999 return __rcu_cpu_has_nonlazy_callbacks(rdp);
2000}
2001
2002#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
2003
2004static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu)
2005{
2006 return 0;
2007}
2008
2009#endif /* else #ifdef CONFIG_TREE_PREEMPT_RCU */
2010
2011/*
2012 * Does any flavor of RCU have non-lazy callbacks on the specified CPU?
2013 */
2014static bool rcu_cpu_has_nonlazy_callbacks(int cpu)
2015{
2016 return __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_sched_data, cpu)) ||
2017 __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_bh_data, cpu)) ||
2018 rcu_preempt_cpu_has_nonlazy_callbacks(cpu);
2019}
2020
2021/*
Paul E. McKenneyaa9b16302012-05-10 16:41:44 -07002022 * Allow the CPU to enter dyntick-idle mode if either: (1) There are no
2023 * callbacks on this CPU, (2) this CPU has not yet attempted to enter
2024 * dyntick-idle mode, or (3) this CPU is in the process of attempting to
2025 * enter dyntick-idle mode. Otherwise, if we have recently tried and failed
2026 * to enter dyntick-idle mode, we refuse to try to enter it. After all,
2027 * it is better to incur scheduling-clock interrupts than to spin
2028 * continuously for the same time duration!
2029 *
2030 * The delta_jiffies argument is used to store the time when RCU is
2031 * going to need the CPU again if it still has callbacks. The reason
2032 * for this is that rcu_prepare_for_idle() might need to post a timer,
2033 * but if so, it will do so after tick_nohz_stop_sched_tick() has set
2034 * the wakeup time for this CPU. This means that RCU's timer can be
2035 * delayed until the wakeup time, which defeats the purpose of posting
2036 * a timer.
2037 */
2038int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
2039{
2040 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
2041
2042 /* Flag a new idle sojourn to the idle-entry state machine. */
2043 rdtp->idle_first_pass = 1;
2044 /* If no callbacks, RCU doesn't need the CPU. */
2045 if (!rcu_cpu_has_callbacks(cpu)) {
2046 *delta_jiffies = ULONG_MAX;
2047 return 0;
2048 }
2049 if (rdtp->dyntick_holdoff == jiffies) {
2050 /* RCU recently tried and failed, so don't try again. */
2051 *delta_jiffies = 1;
2052 return 1;
2053 }
2054 /* Set up for the possibility that RCU will post a timer. */
2055 if (rcu_cpu_has_nonlazy_callbacks(cpu))
2056 *delta_jiffies = RCU_IDLE_GP_DELAY;
2057 else
2058 *delta_jiffies = RCU_IDLE_LAZY_GP_DELAY;
2059 return 0;
2060}
2061
2062/*
Paul E. McKenney21e52e12012-04-30 14:16:19 -07002063 * Handler for smp_call_function_single(). The only point of this
2064 * handler is to wake the CPU up, so the handler does only tracing.
2065 */
2066void rcu_idle_demigrate(void *unused)
2067{
2068 trace_rcu_prep_idle("Demigrate");
2069}
2070
2071/*
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002072 * Timer handler used to force CPU to start pushing its remaining RCU
2073 * callbacks in the case where it entered dyntick-idle mode with callbacks
2074 * pending. The hander doesn't really need to do anything because the
2075 * real work is done upon re-entry to idle, or by the next scheduling-clock
2076 * interrupt should idle not be re-entered.
Paul E. McKenney21e52e12012-04-30 14:16:19 -07002077 *
2078 * One special case: the timer gets migrated without awakening the CPU
2079 * on which the timer was scheduled on. In this case, we must wake up
2080 * that CPU. We do so with smp_call_function_single().
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002081 */
Paul E. McKenney21e52e12012-04-30 14:16:19 -07002082static void rcu_idle_gp_timer_func(unsigned long cpu_in)
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002083{
Paul E. McKenney21e52e12012-04-30 14:16:19 -07002084 int cpu = (int)cpu_in;
2085
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002086 trace_rcu_prep_idle("Timer");
Paul E. McKenney21e52e12012-04-30 14:16:19 -07002087 if (cpu != smp_processor_id())
2088 smp_call_function_single(cpu, rcu_idle_demigrate, NULL, 0);
2089 else
2090 WARN_ON_ONCE(1); /* Getting here can hang the system... */
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002091}
2092
2093/*
2094 * Initialize the timer used to pull CPUs out of dyntick-idle mode.
2095 */
2096static void rcu_prepare_for_idle_init(int cpu)
2097{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002098 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
2099
2100 rdtp->dyntick_holdoff = jiffies - 1;
2101 setup_timer(&rdtp->idle_gp_timer, rcu_idle_gp_timer_func, cpu);
2102 rdtp->idle_gp_timer_expires = jiffies - 1;
2103 rdtp->idle_first_pass = 1;
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002104}
2105
2106/*
2107 * Clean up for exit from idle. Because we are exiting from idle, there
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002108 * is no longer any point to ->idle_gp_timer, so cancel it. This will
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002109 * do nothing if this timer is not active, so just cancel it unconditionally.
2110 */
2111static void rcu_cleanup_after_idle(int cpu)
2112{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002113 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
2114
2115 del_timer(&rdtp->idle_gp_timer);
Paul E. McKenney2fdbb312012-02-23 15:58:29 -08002116 trace_rcu_prep_idle("Cleanup after idle");
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002117}
2118
2119/*
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002120 * Check to see if any RCU-related work can be done by the current CPU,
2121 * and if so, schedule a softirq to get it done. This function is part
2122 * of the RCU implementation; it is -not- an exported member of the RCU API.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002123 *
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002124 * The idea is for the current CPU to clear out all work required by the
2125 * RCU core for the current grace period, so that this CPU can be permitted
2126 * to enter dyntick-idle mode. In some cases, it will need to be awakened
2127 * at the end of the grace period by whatever CPU ends the grace period.
2128 * This allows CPUs to go dyntick-idle more quickly, and to reduce the
2129 * number of wakeups by a modest integer factor.
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002130 *
2131 * Because it is not legal to invoke rcu_process_callbacks() with irqs
2132 * disabled, we do one pass of force_quiescent_state(), then do a
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002133 * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002134 * later. The ->dyntick_drain field controls the sequencing.
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002135 *
2136 * The caller must have disabled interrupts.
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002137 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002138static void rcu_prepare_for_idle(int cpu)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002139{
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002140 struct timer_list *tp;
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002141 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002142
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002143 /*
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002144 * If this is an idle re-entry, for example, due to use of
2145 * RCU_NONIDLE() or the new idle-loop tracing API within the idle
2146 * loop, then don't take any state-machine actions, unless the
2147 * momentary exit from idle queued additional non-lazy callbacks.
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002148 * Instead, repost the ->idle_gp_timer if this CPU has callbacks
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002149 * pending.
2150 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002151 if (!rdtp->idle_first_pass &&
2152 (rdtp->nonlazy_posted == rdtp->nonlazy_posted_snap)) {
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002153 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002154 tp = &rdtp->idle_gp_timer;
2155 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
Paul E. McKenneyf511fc62012-03-15 12:16:26 -07002156 }
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002157 return;
2158 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002159 rdtp->idle_first_pass = 0;
2160 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted - 1;
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002161
2162 /*
Paul E. McKenneyf535a602011-11-22 20:43:02 -08002163 * If there are no callbacks on this CPU, enter dyntick-idle mode.
2164 * Also reset state to avoid prejudicing later attempts.
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002165 */
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002166 if (!rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002167 rdtp->dyntick_holdoff = jiffies - 1;
2168 rdtp->dyntick_drain = 0;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002169 trace_rcu_prep_idle("No callbacks");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002170 return;
Paul E. McKenney77e38ed2010-04-25 21:04:29 -07002171 }
Paul E. McKenney3084f2f2011-11-22 17:07:11 -08002172
2173 /*
2174 * If in holdoff mode, just return. We will presumably have
2175 * refrained from disabling the scheduling-clock tick.
2176 */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002177 if (rdtp->dyntick_holdoff == jiffies) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002178 trace_rcu_prep_idle("In holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002179 return;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002180 }
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002181
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002182 /* Check and update the ->dyntick_drain sequencing. */
2183 if (rdtp->dyntick_drain <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002184 /* First time through, initialize the counter. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002185 rdtp->dyntick_drain = RCU_IDLE_FLUSHES;
2186 } else if (rdtp->dyntick_drain <= RCU_IDLE_OPT_FLUSHES &&
Paul E. McKenneyc3ce9102012-02-14 10:12:54 -08002187 !rcu_pending(cpu) &&
2188 !local_softirq_pending()) {
Paul E. McKenney7cb92492011-11-28 12:28:34 -08002189 /* Can we go dyntick-idle despite still having callbacks? */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002190 rdtp->dyntick_drain = 0;
2191 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002192 if (rcu_cpu_has_nonlazy_callbacks(cpu)) {
2193 trace_rcu_prep_idle("Dyntick with callbacks");
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002194 rdtp->idle_gp_timer_expires =
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002195 jiffies + RCU_IDLE_GP_DELAY;
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002196 } else {
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002197 rdtp->idle_gp_timer_expires =
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002198 jiffies + RCU_IDLE_LAZY_GP_DELAY;
Paul E. McKenneyfd4b3522012-05-05 19:10:35 -07002199 trace_rcu_prep_idle("Dyntick with lazy callbacks");
2200 }
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002201 tp = &rdtp->idle_gp_timer;
2202 mod_timer_pinned(tp, rdtp->idle_gp_timer_expires);
2203 rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted;
Paul E. McKenneyf23f7fa2011-11-30 15:41:14 -08002204 return; /* Nothing more to do immediately. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002205 } else if (--(rdtp->dyntick_drain) <= 0) {
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002206 /* We have hit the limit, so time to give up. */
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002207 rdtp->dyntick_holdoff = jiffies;
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002208 trace_rcu_prep_idle("Begin holdoff");
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002209 invoke_rcu_core(); /* Force the CPU out of dyntick-idle. */
2210 return;
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002211 }
2212
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002213 /*
2214 * Do one step of pushing the remaining RCU callbacks through
2215 * the RCU core state machine.
2216 */
2217#ifdef CONFIG_TREE_PREEMPT_RCU
2218 if (per_cpu(rcu_preempt_data, cpu).nxtlist) {
2219 rcu_preempt_qs(cpu);
2220 force_quiescent_state(&rcu_preempt_state, 0);
Paul E. McKenneyaea1b352011-11-02 06:54:54 -07002221 }
2222#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002223 if (per_cpu(rcu_sched_data, cpu).nxtlist) {
2224 rcu_sched_qs(cpu);
2225 force_quiescent_state(&rcu_sched_state, 0);
Paul E. McKenneya47cd882010-02-26 16:38:56 -08002226 }
2227 if (per_cpu(rcu_bh_data, cpu).nxtlist) {
2228 rcu_bh_qs(cpu);
2229 force_quiescent_state(&rcu_bh_state, 0);
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002230 }
2231
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002232 /*
2233 * If RCU callbacks are still pending, RCU still needs this CPU.
2234 * So try forcing the callbacks through the grace period.
2235 */
Paul E. McKenney3ad0dec2011-11-22 21:08:13 -08002236 if (rcu_cpu_has_callbacks(cpu)) {
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002237 trace_rcu_prep_idle("More callbacks");
Paul E. McKenneya46e0892011-06-15 15:47:09 -07002238 invoke_rcu_core();
Paul E. McKenneyc0cfbbb2012-01-23 17:23:35 -08002239 } else
Paul E. McKenney433cddd2011-11-22 14:58:03 -08002240 trace_rcu_prep_idle("Callbacks drained");
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002241}
2242
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002243/*
Paul E. McKenney98248a02012-05-03 15:38:10 -07002244 * Keep a running count of the number of non-lazy callbacks posted
2245 * on this CPU. This running counter (which is never decremented) allows
2246 * rcu_prepare_for_idle() to detect when something out of the idle loop
2247 * posts a callback, even if an equal number of callbacks are invoked.
2248 * Of course, callbacks should only be posted from within a trace event
2249 * designed to be called from idle or from within RCU_NONIDLE().
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002250 */
2251static void rcu_idle_count_callbacks_posted(void)
2252{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002253 __this_cpu_add(rcu_dynticks.nonlazy_posted, 1);
Paul E. McKenneyc57afe82012-02-28 11:02:21 -08002254}
2255
Paul E. McKenney8bd93a22010-02-22 17:04:59 -08002256#endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */
Paul E. McKenneya858af22012-01-16 13:29:10 -08002257
2258#ifdef CONFIG_RCU_CPU_STALL_INFO
2259
2260#ifdef CONFIG_RCU_FAST_NO_HZ
2261
2262static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2263{
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002264 struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
2265 struct timer_list *tltp = &rdtp->idle_gp_timer;
Paul E. McKenneya858af22012-01-16 13:29:10 -08002266
Paul E. McKenney2ee3dc82012-02-23 17:13:19 -08002267 sprintf(cp, "drain=%d %c timer=%lu",
Paul E. McKenney5955f7e2012-05-09 12:07:05 -07002268 rdtp->dyntick_drain,
2269 rdtp->dyntick_holdoff == jiffies ? 'H' : '.',
Paul E. McKenney2ee3dc82012-02-23 17:13:19 -08002270 timer_pending(tltp) ? tltp->expires - jiffies : -1);
Paul E. McKenneya858af22012-01-16 13:29:10 -08002271}
2272
2273#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
2274
2275static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
2276{
2277}
2278
2279#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
2280
2281/* Initiate the stall-info list. */
2282static void print_cpu_stall_info_begin(void)
2283{
2284 printk(KERN_CONT "\n");
2285}
2286
2287/*
2288 * Print out diagnostic information for the specified stalled CPU.
2289 *
2290 * If the specified CPU is aware of the current RCU grace period
2291 * (flavor specified by rsp), then print the number of scheduling
2292 * clock interrupts the CPU has taken during the time that it has
2293 * been aware. Otherwise, print the number of RCU grace periods
2294 * that this CPU is ignorant of, for example, "1" if the CPU was
2295 * aware of the previous grace period.
2296 *
2297 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
2298 */
2299static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2300{
2301 char fast_no_hz[72];
2302 struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu);
2303 struct rcu_dynticks *rdtp = rdp->dynticks;
2304 char *ticks_title;
2305 unsigned long ticks_value;
2306
2307 if (rsp->gpnum == rdp->gpnum) {
2308 ticks_title = "ticks this GP";
2309 ticks_value = rdp->ticks_this_gp;
2310 } else {
2311 ticks_title = "GPs behind";
2312 ticks_value = rsp->gpnum - rdp->gpnum;
2313 }
2314 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
2315 printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n",
2316 cpu, ticks_value, ticks_title,
2317 atomic_read(&rdtp->dynticks) & 0xfff,
2318 rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
2319 fast_no_hz);
2320}
2321
2322/* Terminate the stall-info list. */
2323static void print_cpu_stall_info_end(void)
2324{
2325 printk(KERN_ERR "\t");
2326}
2327
2328/* Zero ->ticks_this_gp for all flavors of RCU. */
2329static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2330{
2331 rdp->ticks_this_gp = 0;
2332}
2333
2334/* Increment ->ticks_this_gp for all flavors of RCU. */
2335static void increment_cpu_stall_ticks(void)
2336{
2337 __get_cpu_var(rcu_sched_data).ticks_this_gp++;
2338 __get_cpu_var(rcu_bh_data).ticks_this_gp++;
2339#ifdef CONFIG_TREE_PREEMPT_RCU
2340 __get_cpu_var(rcu_preempt_data).ticks_this_gp++;
2341#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
2342}
2343
2344#else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */
2345
2346static void print_cpu_stall_info_begin(void)
2347{
2348 printk(KERN_CONT " {");
2349}
2350
2351static void print_cpu_stall_info(struct rcu_state *rsp, int cpu)
2352{
2353 printk(KERN_CONT " %d", cpu);
2354}
2355
2356static void print_cpu_stall_info_end(void)
2357{
2358 printk(KERN_CONT "} ");
2359}
2360
2361static void zero_cpu_stall_ticks(struct rcu_data *rdp)
2362{
2363}
2364
2365static void increment_cpu_stall_ticks(void)
2366{
2367}
2368
2369#endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */