rcu: prevent console flood when one CPU sees another AWOL via RCU
[deliverable/linux.git] / kernel / rcuclassic.c
CommitLineData
01c1c660
PM
1/*
2 * Read-Copy Update mechanism for mutual exclusion
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright IBM Corporation, 2001
19 *
20 * Authors: Dipankar Sarma <dipankar@in.ibm.com>
21 * Manfred Spraul <manfred@colorfullife.com>
22 *
23 * Based on the original work by Paul McKenney <paulmck@us.ibm.com>
24 * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen.
25 * Papers:
26 * http://www.rdrop.com/users/paulmck/paper/rclockpdcsproof.pdf
27 * http://lse.sourceforge.net/locking/rclock_OLS.2001.05.01c.sc.pdf (OLS2001)
28 *
29 * For detailed explanation of Read-Copy Update mechanism see -
30 * Documentation/RCU
31 *
32 */
33#include <linux/types.h>
34#include <linux/kernel.h>
35#include <linux/init.h>
36#include <linux/spinlock.h>
37#include <linux/smp.h>
38#include <linux/rcupdate.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
41#include <asm/atomic.h>
42#include <linux/bitops.h>
43#include <linux/module.h>
44#include <linux/completion.h>
45#include <linux/moduleparam.h>
46#include <linux/percpu.h>
47#include <linux/notifier.h>
01c1c660
PM
48#include <linux/cpu.h>
49#include <linux/mutex.h>
67182ae1 50#include <linux/time.h>
01c1c660
PM
51
52#ifdef CONFIG_DEBUG_LOCK_ALLOC
53static struct lock_class_key rcu_lock_key;
54struct lockdep_map rcu_lock_map =
55 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
56EXPORT_SYMBOL_GPL(rcu_lock_map);
57#endif
58
59
60/* Definition for rcupdate control block. */
61static struct rcu_ctrlblk rcu_ctrlblk = {
62 .cur = -300,
63 .completed = -300,
3cac97cb 64 .pending = -300,
01c1c660
PM
65 .lock = __SPIN_LOCK_UNLOCKED(&rcu_ctrlblk.lock),
66 .cpumask = CPU_MASK_NONE,
67};
68static struct rcu_ctrlblk rcu_bh_ctrlblk = {
69 .cur = -300,
70 .completed = -300,
3cac97cb 71 .pending = -300,
01c1c660
PM
72 .lock = __SPIN_LOCK_UNLOCKED(&rcu_bh_ctrlblk.lock),
73 .cpumask = CPU_MASK_NONE,
74};
75
76DEFINE_PER_CPU(struct rcu_data, rcu_data) = { 0L };
77DEFINE_PER_CPU(struct rcu_data, rcu_bh_data) = { 0L };
78
79static int blimit = 10;
80static int qhimark = 10000;
81static int qlowmark = 100;
82
83#ifdef CONFIG_SMP
84static void force_quiescent_state(struct rcu_data *rdp,
85 struct rcu_ctrlblk *rcp)
86{
87 int cpu;
88 cpumask_t cpumask;
89 set_need_resched();
90 if (unlikely(!rcp->signaled)) {
91 rcp->signaled = 1;
92 /*
93 * Don't send IPI to itself. With irqs disabled,
94 * rdp->cpu is the current cpu.
8558f8f8
GS
95 *
96 * cpu_online_map is updated by the _cpu_down()
9b1a4d38
RR
97 * using __stop_machine(). Since we're in irqs disabled
98 * section, __stop_machine() is not exectuting, hence
8558f8f8
GS
99 * the cpu_online_map is stable.
100 *
101 * However, a cpu might have been offlined _just_ before
102 * we disabled irqs while entering here.
103 * And rcu subsystem might not yet have handled the CPU_DEAD
104 * notification, leading to the offlined cpu's bit
105 * being set in the rcp->cpumask.
106 *
107 * Hence cpumask = (rcp->cpumask & cpu_online_map) to prevent
108 * sending smp_reschedule() to an offlined CPU.
01c1c660 109 */
8558f8f8 110 cpus_and(cpumask, rcp->cpumask, cpu_online_map);
01c1c660 111 cpu_clear(rdp->cpu, cpumask);
363ab6f1 112 for_each_cpu_mask_nr(cpu, cpumask)
01c1c660
PM
113 smp_send_reschedule(cpu);
114 }
115}
116#else
117static inline void force_quiescent_state(struct rcu_data *rdp,
118 struct rcu_ctrlblk *rcp)
119{
120 set_need_resched();
121}
122#endif
123
5127bed5
LJ
124static void __call_rcu(struct rcu_head *head, struct rcu_ctrlblk *rcp,
125 struct rcu_data *rdp)
126{
127 long batch;
128 smp_mb(); /* reads the most recently updated value of rcu->cur. */
129
130 /*
131 * Determine the batch number of this callback.
132 *
133 * Using ACCESS_ONCE to avoid the following error when gcc eliminates
134 * local variable "batch" and emits codes like this:
135 * 1) rdp->batch = rcp->cur + 1 # gets old value
136 * ......
137 * 2)rcu_batch_after(rcp->cur + 1, rdp->batch) # gets new value
138 * then [*nxttail[0], *nxttail[1]) may contain callbacks
139 * that batch# = rdp->batch, see the comment of struct rcu_data.
140 */
141 batch = ACCESS_ONCE(rcp->cur) + 1;
142
143 if (rdp->nxtlist && rcu_batch_after(batch, rdp->batch)) {
144 /* process callbacks */
145 rdp->nxttail[0] = rdp->nxttail[1];
146 rdp->nxttail[1] = rdp->nxttail[2];
147 if (rcu_batch_after(batch - 1, rdp->batch))
148 rdp->nxttail[0] = rdp->nxttail[2];
149 }
150
151 rdp->batch = batch;
152 *rdp->nxttail[2] = head;
153 rdp->nxttail[2] = &head->next;
154
155 if (unlikely(++rdp->qlen > qhimark)) {
156 rdp->blimit = INT_MAX;
157 force_quiescent_state(rdp, &rcu_ctrlblk);
158 }
159}
160
01c1c660
PM
161/**
162 * call_rcu - Queue an RCU callback for invocation after a grace period.
163 * @head: structure to be used for queueing the RCU updates.
164 * @func: actual update function to be invoked after the grace period
165 *
166 * The update function will be invoked some time after a full grace
167 * period elapses, in other words after all currently executing RCU
168 * read-side critical sections have completed. RCU read-side critical
169 * sections are delimited by rcu_read_lock() and rcu_read_unlock(),
170 * and may be nested.
171 */
172void call_rcu(struct rcu_head *head,
173 void (*func)(struct rcu_head *rcu))
174{
175 unsigned long flags;
01c1c660
PM
176
177 head->func = func;
178 head->next = NULL;
179 local_irq_save(flags);
5127bed5 180 __call_rcu(head, &rcu_ctrlblk, &__get_cpu_var(rcu_data));
01c1c660
PM
181 local_irq_restore(flags);
182}
183EXPORT_SYMBOL_GPL(call_rcu);
184
185/**
186 * call_rcu_bh - Queue an RCU for invocation after a quicker grace period.
187 * @head: structure to be used for queueing the RCU updates.
188 * @func: actual update function to be invoked after the grace period
189 *
190 * The update function will be invoked some time after a full grace
191 * period elapses, in other words after all currently executing RCU
192 * read-side critical sections have completed. call_rcu_bh() assumes
193 * that the read-side critical sections end on completion of a softirq
194 * handler. This means that read-side critical sections in process
195 * context must not be interrupted by softirqs. This interface is to be
196 * used when most of the read-side critical sections are in softirq context.
197 * RCU read-side critical sections are delimited by rcu_read_lock() and
198 * rcu_read_unlock(), * if in interrupt context or rcu_read_lock_bh()
199 * and rcu_read_unlock_bh(), if in process context. These may be nested.
200 */
201void call_rcu_bh(struct rcu_head *head,
202 void (*func)(struct rcu_head *rcu))
203{
204 unsigned long flags;
01c1c660
PM
205
206 head->func = func;
207 head->next = NULL;
208 local_irq_save(flags);
5127bed5 209 __call_rcu(head, &rcu_bh_ctrlblk, &__get_cpu_var(rcu_bh_data));
01c1c660
PM
210 local_irq_restore(flags);
211}
212EXPORT_SYMBOL_GPL(call_rcu_bh);
213
214/*
215 * Return the number of RCU batches processed thus far. Useful
216 * for debug and statistics.
217 */
218long rcu_batches_completed(void)
219{
220 return rcu_ctrlblk.completed;
221}
222EXPORT_SYMBOL_GPL(rcu_batches_completed);
223
224/*
225 * Return the number of RCU batches processed thus far. Useful
226 * for debug and statistics.
227 */
228long rcu_batches_completed_bh(void)
229{
230 return rcu_bh_ctrlblk.completed;
231}
232EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
233
234/* Raises the softirq for processing rcu_callbacks. */
235static inline void raise_rcu_softirq(void)
236{
237 raise_softirq(RCU_SOFTIRQ);
01c1c660
PM
238}
239
240/*
241 * Invoke the completed RCU callbacks. They are expected to be in
242 * a per-cpu list.
243 */
244static void rcu_do_batch(struct rcu_data *rdp)
245{
246 struct rcu_head *next, *list;
247 int count = 0;
248
249 list = rdp->donelist;
250 while (list) {
251 next = list->next;
252 prefetch(next);
253 list->func(list);
254 list = next;
255 if (++count >= rdp->blimit)
256 break;
257 }
258 rdp->donelist = list;
259
260 local_irq_disable();
261 rdp->qlen -= count;
262 local_irq_enable();
263 if (rdp->blimit == INT_MAX && rdp->qlen <= qlowmark)
264 rdp->blimit = blimit;
265
266 if (!rdp->donelist)
267 rdp->donetail = &rdp->donelist;
268 else
269 raise_rcu_softirq();
270}
271
272/*
273 * Grace period handling:
274 * The grace period handling consists out of two steps:
275 * - A new grace period is started.
276 * This is done by rcu_start_batch. The start is not broadcasted to
277 * all cpus, they must pick this up by comparing rcp->cur with
278 * rdp->quiescbatch. All cpus are recorded in the
279 * rcu_ctrlblk.cpumask bitmap.
280 * - All cpus must go through a quiescent state.
281 * Since the start of the grace period is not broadcasted, at least two
282 * calls to rcu_check_quiescent_state are required:
283 * The first call just notices that a new grace period is running. The
284 * following calls check if there was a quiescent state since the beginning
285 * of the grace period. If so, it updates rcu_ctrlblk.cpumask. If
286 * the bitmap is empty, then the grace period is completed.
287 * rcu_check_quiescent_state calls rcu_start_batch(0) to start the next grace
288 * period (if necessary).
289 */
67182ae1
PM
290
291#ifdef CONFIG_DEBUG_RCU_STALL
292
293static inline void record_gp_check_time(struct rcu_ctrlblk *rcp)
294{
295 rcp->gp_check = get_seconds() + 3;
296}
78635fc7 297
67182ae1
PM
298static void print_other_cpu_stall(struct rcu_ctrlblk *rcp)
299{
300 int cpu;
301 long delta;
302
303 /* Only let one CPU complain about others per time interval. */
304
305 spin_lock(&rcp->lock);
306 delta = get_seconds() - rcp->gp_check;
78635fc7 307 if (delta < 2L || cpus_empty(rcp->cpumask)) {
67182ae1
PM
308 spin_unlock(&rcp->lock);
309 return;
67182ae1 310 }
293a17eb 311 rcp->gp_check = get_seconds() + 30;
67182ae1
PM
312 spin_unlock(&rcp->lock);
313
314 /* OK, time to rat on our buddy... */
315
316 printk(KERN_ERR "RCU detected CPU stalls:");
317 for_each_cpu_mask(cpu, rcp->cpumask)
318 printk(" %d", cpu);
319 printk(" (detected by %d, t=%lu/%lu)\n",
320 smp_processor_id(), get_seconds(), rcp->gp_check);
321}
78635fc7 322
67182ae1
PM
323static void print_cpu_stall(struct rcu_ctrlblk *rcp)
324{
325 printk(KERN_ERR "RCU detected CPU %d stall (t=%lu/%lu)\n",
326 smp_processor_id(), get_seconds(), rcp->gp_check);
327 dump_stack();
328 spin_lock(&rcp->lock);
329 if ((long)(get_seconds() - rcp->gp_check) >= 0L)
330 rcp->gp_check = get_seconds() + 30;
331 spin_unlock(&rcp->lock);
332}
78635fc7
IM
333
334static void check_cpu_stall(struct rcu_ctrlblk *rcp, struct rcu_data *rdp)
67182ae1
PM
335{
336 long delta;
337
338 delta = get_seconds() - rcp->gp_check;
339 if (cpu_isset(smp_processor_id(), rcp->cpumask) && delta >= 0L) {
340
341 /* We haven't checked in, so go dump stack. */
342
343 print_cpu_stall(rcp);
344
78635fc7
IM
345 } else {
346 if (!cpus_empty(rcp->cpumask) && delta >= 2L) {
347 /* They had two seconds to dump stack, so complain. */
348 print_other_cpu_stall(rcp);
349 }
67182ae1
PM
350 }
351}
352
353#else /* #ifdef CONFIG_DEBUG_RCU_STALL */
354
355static inline void record_gp_check_time(struct rcu_ctrlblk *rcp)
356{
357}
78635fc7
IM
358
359static inline void
360check_cpu_stall(struct rcu_ctrlblk *rcp, struct rcu_data *rdp)
67182ae1
PM
361{
362}
363
364#endif /* #else #ifdef CONFIG_DEBUG_RCU_STALL */
365
01c1c660
PM
366/*
367 * Register a new batch of callbacks, and start it up if there is currently no
368 * active batch and the batch to be registered has not already occurred.
369 * Caller must hold rcu_ctrlblk.lock.
370 */
371static void rcu_start_batch(struct rcu_ctrlblk *rcp)
372{
3cac97cb 373 if (rcp->cur != rcp->pending &&
01c1c660 374 rcp->completed == rcp->cur) {
01c1c660 375 rcp->cur++;
67182ae1 376 record_gp_check_time(rcp);
01c1c660
PM
377
378 /*
379 * Accessing nohz_cpu_mask before incrementing rcp->cur needs a
380 * Barrier Otherwise it can cause tickless idle CPUs to be
381 * included in rcp->cpumask, which will extend graceperiods
382 * unnecessarily.
383 */
384 smp_mb();
385 cpus_andnot(rcp->cpumask, cpu_online_map, nohz_cpu_mask);
386
387 rcp->signaled = 0;
388 }
389}
390
391/*
392 * cpu went through a quiescent state since the beginning of the grace period.
393 * Clear it from the cpu mask and complete the grace period if it was the last
394 * cpu. Start another grace period if someone has further entries pending
395 */
396static void cpu_quiet(int cpu, struct rcu_ctrlblk *rcp)
397{
398 cpu_clear(cpu, rcp->cpumask);
399 if (cpus_empty(rcp->cpumask)) {
400 /* batch completed ! */
401 rcp->completed = rcp->cur;
402 rcu_start_batch(rcp);
403 }
404}
405
406/*
407 * Check if the cpu has gone through a quiescent state (say context
408 * switch). If so and if it already hasn't done so in this RCU
409 * quiescent cycle, then indicate that it has done so.
410 */
411static void rcu_check_quiescent_state(struct rcu_ctrlblk *rcp,
412 struct rcu_data *rdp)
413{
414 if (rdp->quiescbatch != rcp->cur) {
415 /* start new grace period: */
416 rdp->qs_pending = 1;
417 rdp->passed_quiesc = 0;
418 rdp->quiescbatch = rcp->cur;
419 return;
420 }
421
422 /* Grace period already completed for this cpu?
423 * qs_pending is checked instead of the actual bitmap to avoid
424 * cacheline trashing.
425 */
426 if (!rdp->qs_pending)
427 return;
428
429 /*
430 * Was there a quiescent state since the beginning of the grace
431 * period? If no, then exit and wait for the next call.
432 */
433 if (!rdp->passed_quiesc)
434 return;
435 rdp->qs_pending = 0;
436
437 spin_lock(&rcp->lock);
438 /*
439 * rdp->quiescbatch/rcp->cur and the cpu bitmap can come out of sync
440 * during cpu startup. Ignore the quiescent state.
441 */
442 if (likely(rdp->quiescbatch == rcp->cur))
443 cpu_quiet(rdp->cpu, rcp);
444
445 spin_unlock(&rcp->lock);
446}
447
448
449#ifdef CONFIG_HOTPLUG_CPU
450
451/* warning! helper for rcu_offline_cpu. do not use elsewhere without reviewing
452 * locking requirements, the list it's pulling from has to belong to a cpu
453 * which is dead and hence not processing interrupts.
454 */
455static void rcu_move_batch(struct rcu_data *this_rdp, struct rcu_head *list,
5127bed5 456 struct rcu_head **tail, long batch)
01c1c660 457{
5127bed5
LJ
458 if (list) {
459 local_irq_disable();
460 this_rdp->batch = batch;
461 *this_rdp->nxttail[2] = list;
462 this_rdp->nxttail[2] = tail;
463 local_irq_enable();
464 }
01c1c660
PM
465}
466
467static void __rcu_offline_cpu(struct rcu_data *this_rdp,
468 struct rcu_ctrlblk *rcp, struct rcu_data *rdp)
469{
470 /* if the cpu going offline owns the grace period
471 * we can block indefinitely waiting for it, so flush
472 * it here
473 */
474 spin_lock_bh(&rcp->lock);
475 if (rcp->cur != rcp->completed)
476 cpu_quiet(rdp->cpu, rcp);
477 spin_unlock_bh(&rcp->lock);
5127bed5
LJ
478 /* spin_lock implies smp_mb() */
479 rcu_move_batch(this_rdp, rdp->donelist, rdp->donetail, rcp->cur + 1);
480 rcu_move_batch(this_rdp, rdp->nxtlist, rdp->nxttail[2], rcp->cur + 1);
199a9528
LJ
481
482 local_irq_disable();
483 this_rdp->qlen += rdp->qlen;
484 local_irq_enable();
01c1c660
PM
485}
486
487static void rcu_offline_cpu(int cpu)
488{
489 struct rcu_data *this_rdp = &get_cpu_var(rcu_data);
490 struct rcu_data *this_bh_rdp = &get_cpu_var(rcu_bh_data);
491
492 __rcu_offline_cpu(this_rdp, &rcu_ctrlblk,
493 &per_cpu(rcu_data, cpu));
494 __rcu_offline_cpu(this_bh_rdp, &rcu_bh_ctrlblk,
495 &per_cpu(rcu_bh_data, cpu));
496 put_cpu_var(rcu_data);
497 put_cpu_var(rcu_bh_data);
498}
499
500#else
501
502static void rcu_offline_cpu(int cpu)
503{
504}
505
506#endif
507
508/*
509 * This does the RCU processing work from softirq context.
510 */
511static void __rcu_process_callbacks(struct rcu_ctrlblk *rcp,
512 struct rcu_data *rdp)
513{
5127bed5 514 if (rdp->nxtlist) {
01c1c660 515 local_irq_disable();
01c1c660
PM
516
517 /*
5127bed5
LJ
518 * move the other grace-period-completed entries to
519 * [rdp->nxtlist, *rdp->nxttail[0]) temporarily
520 */
521 if (!rcu_batch_before(rcp->completed, rdp->batch))
522 rdp->nxttail[0] = rdp->nxttail[1] = rdp->nxttail[2];
523 else if (!rcu_batch_before(rcp->completed, rdp->batch - 1))
524 rdp->nxttail[0] = rdp->nxttail[1];
525
526 /*
527 * the grace period for entries in
528 * [rdp->nxtlist, *rdp->nxttail[0]) has completed and
529 * move these entries to donelist
01c1c660 530 */
5127bed5
LJ
531 if (rdp->nxttail[0] != &rdp->nxtlist) {
532 *rdp->donetail = rdp->nxtlist;
533 rdp->donetail = rdp->nxttail[0];
534 rdp->nxtlist = *rdp->nxttail[0];
535 *rdp->donetail = NULL;
536
537 if (rdp->nxttail[1] == rdp->nxttail[0])
538 rdp->nxttail[1] = &rdp->nxtlist;
539 if (rdp->nxttail[2] == rdp->nxttail[0])
540 rdp->nxttail[2] = &rdp->nxtlist;
541 rdp->nxttail[0] = &rdp->nxtlist;
542 }
01c1c660 543
5127bed5 544 local_irq_enable();
01c1c660 545
3cac97cb 546 if (rcu_batch_after(rdp->batch, rcp->pending)) {
01c1c660
PM
547 /* and start it/schedule start if it's a new batch */
548 spin_lock(&rcp->lock);
3cac97cb
LJ
549 if (rcu_batch_after(rdp->batch, rcp->pending)) {
550 rcp->pending = rdp->batch;
551 rcu_start_batch(rcp);
552 }
01c1c660
PM
553 spin_unlock(&rcp->lock);
554 }
555 }
556
557 rcu_check_quiescent_state(rcp, rdp);
558 if (rdp->donelist)
559 rcu_do_batch(rdp);
560}
561
562static void rcu_process_callbacks(struct softirq_action *unused)
563{
564 __rcu_process_callbacks(&rcu_ctrlblk, &__get_cpu_var(rcu_data));
565 __rcu_process_callbacks(&rcu_bh_ctrlblk, &__get_cpu_var(rcu_bh_data));
566}
567
568static int __rcu_pending(struct rcu_ctrlblk *rcp, struct rcu_data *rdp)
569{
67182ae1
PM
570 /* Check for CPU stalls, if enabled. */
571 check_cpu_stall(rcp, rdp);
572
5127bed5
LJ
573 if (rdp->nxtlist) {
574 /*
575 * This cpu has pending rcu entries and the grace period
576 * for them has completed.
577 */
578 if (!rcu_batch_before(rcp->completed, rdp->batch))
579 return 1;
580 if (!rcu_batch_before(rcp->completed, rdp->batch - 1) &&
581 rdp->nxttail[0] != rdp->nxttail[1])
582 return 1;
583 if (rdp->nxttail[0] != &rdp->nxtlist)
584 return 1;
01c1c660 585
5127bed5
LJ
586 /*
587 * This cpu has pending rcu entries and the new batch
588 * for then hasn't been started nor scheduled start
589 */
590 if (rcu_batch_after(rdp->batch, rcp->pending))
591 return 1;
592 }
01c1c660
PM
593
594 /* This cpu has finished callbacks to invoke */
595 if (rdp->donelist)
596 return 1;
597
598 /* The rcu core waits for a quiescent state from the cpu */
599 if (rdp->quiescbatch != rcp->cur || rdp->qs_pending)
600 return 1;
601
602 /* nothing to do */
603 return 0;
604}
605
606/*
607 * Check to see if there is any immediate RCU-related work to be done
608 * by the current CPU, returning 1 if so. This function is part of the
609 * RCU implementation; it is -not- an exported member of the RCU API.
610 */
611int rcu_pending(int cpu)
612{
613 return __rcu_pending(&rcu_ctrlblk, &per_cpu(rcu_data, cpu)) ||
614 __rcu_pending(&rcu_bh_ctrlblk, &per_cpu(rcu_bh_data, cpu));
615}
616
617/*
618 * Check to see if any future RCU-related work will need to be done
619 * by the current CPU, even if none need be done immediately, returning
620 * 1 if so. This function is part of the RCU implementation; it is -not-
621 * an exported member of the RCU API.
622 */
623int rcu_needs_cpu(int cpu)
624{
625 struct rcu_data *rdp = &per_cpu(rcu_data, cpu);
626 struct rcu_data *rdp_bh = &per_cpu(rcu_bh_data, cpu);
627
5127bed5 628 return !!rdp->nxtlist || !!rdp_bh->nxtlist || rcu_pending(cpu);
01c1c660
PM
629}
630
631void rcu_check_callbacks(int cpu, int user)
632{
633 if (user ||
634 (idle_cpu(cpu) && !in_softirq() &&
635 hardirq_count() <= (1 << HARDIRQ_SHIFT))) {
8db559b8
PM
636
637 /*
638 * Get here if this CPU took its interrupt from user
639 * mode or from the idle loop, and if this is not a
640 * nested interrupt. In this case, the CPU is in
641 * a quiescent state, so count it.
642 *
643 * Also do a memory barrier. This is needed to handle
644 * the case where writes from a preempt-disable section
645 * of code get reordered into schedule() by this CPU's
646 * write buffer. The memory barrier makes sure that
647 * the rcu_qsctr_inc() and rcu_bh_qsctr_inc() are see
648 * by other CPUs to happen after any such write.
649 */
650
651 smp_mb(); /* See above block comment. */
01c1c660
PM
652 rcu_qsctr_inc(cpu);
653 rcu_bh_qsctr_inc(cpu);
8db559b8
PM
654
655 } else if (!in_softirq()) {
656
657 /*
658 * Get here if this CPU did not take its interrupt from
659 * softirq, in other words, if it is not interrupting
660 * a rcu_bh read-side critical section. This is an _bh
661 * critical section, so count it. The memory barrier
662 * is needed for the same reason as is the above one.
663 */
664
665 smp_mb(); /* See above block comment. */
01c1c660 666 rcu_bh_qsctr_inc(cpu);
8db559b8 667 }
01c1c660
PM
668 raise_rcu_softirq();
669}
670
671static void rcu_init_percpu_data(int cpu, struct rcu_ctrlblk *rcp,
672 struct rcu_data *rdp)
673{
674 memset(rdp, 0, sizeof(*rdp));
5127bed5 675 rdp->nxttail[0] = rdp->nxttail[1] = rdp->nxttail[2] = &rdp->nxtlist;
01c1c660
PM
676 rdp->donetail = &rdp->donelist;
677 rdp->quiescbatch = rcp->completed;
678 rdp->qs_pending = 0;
679 rdp->cpu = cpu;
680 rdp->blimit = blimit;
681}
682
683static void __cpuinit rcu_online_cpu(int cpu)
684{
685 struct rcu_data *rdp = &per_cpu(rcu_data, cpu);
686 struct rcu_data *bh_rdp = &per_cpu(rcu_bh_data, cpu);
687
688 rcu_init_percpu_data(cpu, &rcu_ctrlblk, rdp);
689 rcu_init_percpu_data(cpu, &rcu_bh_ctrlblk, bh_rdp);
962cf36c 690 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
01c1c660
PM
691}
692
693static int __cpuinit rcu_cpu_notify(struct notifier_block *self,
694 unsigned long action, void *hcpu)
695{
696 long cpu = (long)hcpu;
697
698 switch (action) {
699 case CPU_UP_PREPARE:
700 case CPU_UP_PREPARE_FROZEN:
701 rcu_online_cpu(cpu);
702 break;
703 case CPU_DEAD:
704 case CPU_DEAD_FROZEN:
705 rcu_offline_cpu(cpu);
706 break;
707 default:
708 break;
709 }
710 return NOTIFY_OK;
711}
712
713static struct notifier_block __cpuinitdata rcu_nb = {
714 .notifier_call = rcu_cpu_notify,
715};
716
717/*
718 * Initializes rcu mechanism. Assumed to be called early.
719 * That is before local timer(SMP) or jiffie timer (uniproc) is setup.
720 * Note that rcu_qsctr and friends are implicitly
721 * initialized due to the choice of ``0'' for RCU_CTR_INVALID.
722 */
723void __init __rcu_init(void)
724{
725 rcu_cpu_notify(&rcu_nb, CPU_UP_PREPARE,
726 (void *)(long)smp_processor_id());
727 /* Register notifier for non-boot CPUs */
728 register_cpu_notifier(&rcu_nb);
729}
730
731module_param(blimit, int, 0);
732module_param(qhimark, int, 0);
733module_param(qlowmark, int, 0);
This page took 0.124306 seconds and 5 git commands to generate.