tracing: explain why stack tracer is empty
[linux-2.6-block.git] / kernel / softirq.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/softirq.c
3 *
4 * Copyright (C) 1992 Linus Torvalds
5 *
b10db7f0
PM
6 * Distribute under GPLv2.
7 *
8 * Rewritten. Old one was good in 2.2, but in 2.3 it was immoral. --ANK (990903)
54514a70
DM
9 *
10 * Remote softirq infrastructure is by Jens Axboe.
1da177e4
LT
11 */
12
13#include <linux/module.h>
14#include <linux/kernel_stat.h>
15#include <linux/interrupt.h>
16#include <linux/init.h>
17#include <linux/mm.h>
18#include <linux/notifier.h>
19#include <linux/percpu.h>
20#include <linux/cpu.h>
83144186 21#include <linux/freezer.h>
1da177e4
LT
22#include <linux/kthread.h>
23#include <linux/rcupdate.h>
7e49fcce 24#include <linux/ftrace.h>
78eef01b 25#include <linux/smp.h>
79bf2bb3 26#include <linux/tick.h>
1da177e4
LT
27
28#include <asm/irq.h>
29/*
30 - No shared variables, all the data are CPU local.
31 - If a softirq needs serialization, let it serialize itself
32 by its own spinlocks.
33 - Even if softirq is serialized, only local cpu is marked for
34 execution. Hence, we get something sort of weak cpu binding.
35 Though it is still not clear, will it result in better locality
36 or will not.
37
38 Examples:
39 - NET RX softirq. It is multithreaded and does not require
40 any global serialization.
41 - NET TX softirq. It kicks software netdevice queues, hence
42 it is logically serialized per device, but this serialization
43 is invisible to common code.
44 - Tasklets: serialized wrt itself.
45 */
46
47#ifndef __ARCH_IRQ_STAT
48irq_cpustat_t irq_stat[NR_CPUS] ____cacheline_aligned;
49EXPORT_SYMBOL(irq_stat);
50#endif
51
978b0116 52static struct softirq_action softirq_vec[NR_SOFTIRQS] __cacheline_aligned_in_smp;
1da177e4
LT
53
54static DEFINE_PER_CPU(struct task_struct *, ksoftirqd);
55
56/*
57 * we cannot loop indefinitely here to avoid userspace starvation,
58 * but we also don't want to introduce a worst case 1/HZ latency
59 * to the pending events, so lets the scheduler to balance
60 * the softirq load for us.
61 */
62static inline void wakeup_softirqd(void)
63{
64 /* Interrupts are disabled: no need to stop preemption */
65 struct task_struct *tsk = __get_cpu_var(ksoftirqd);
66
67 if (tsk && tsk->state != TASK_RUNNING)
68 wake_up_process(tsk);
69}
70
de30a2b3
IM
71/*
72 * This one is for softirq.c-internal use,
73 * where hardirqs are disabled legitimately:
74 */
3c829c36 75#ifdef CONFIG_TRACE_IRQFLAGS
de30a2b3
IM
76static void __local_bh_disable(unsigned long ip)
77{
78 unsigned long flags;
79
80 WARN_ON_ONCE(in_irq());
81
82 raw_local_irq_save(flags);
7e49fcce
SR
83 /*
84 * The preempt tracer hooks into add_preempt_count and will break
85 * lockdep because it calls back into lockdep after SOFTIRQ_OFFSET
86 * is set and before current->softirq_enabled is cleared.
87 * We must manually increment preempt_count here and manually
88 * call the trace_preempt_off later.
89 */
90 preempt_count() += SOFTIRQ_OFFSET;
de30a2b3
IM
91 /*
92 * Were softirqs turned off above:
93 */
94 if (softirq_count() == SOFTIRQ_OFFSET)
95 trace_softirqs_off(ip);
96 raw_local_irq_restore(flags);
7e49fcce
SR
97
98 if (preempt_count() == SOFTIRQ_OFFSET)
99 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
de30a2b3 100}
3c829c36
TC
101#else /* !CONFIG_TRACE_IRQFLAGS */
102static inline void __local_bh_disable(unsigned long ip)
103{
104 add_preempt_count(SOFTIRQ_OFFSET);
105 barrier();
106}
107#endif /* CONFIG_TRACE_IRQFLAGS */
de30a2b3
IM
108
109void local_bh_disable(void)
110{
111 __local_bh_disable((unsigned long)__builtin_return_address(0));
112}
113
114EXPORT_SYMBOL(local_bh_disable);
115
de30a2b3
IM
116/*
117 * Special-case - softirqs can safely be enabled in
118 * cond_resched_softirq(), or by __do_softirq(),
119 * without processing still-pending softirqs:
120 */
121void _local_bh_enable(void)
122{
123 WARN_ON_ONCE(in_irq());
124 WARN_ON_ONCE(!irqs_disabled());
125
126 if (softirq_count() == SOFTIRQ_OFFSET)
127 trace_softirqs_on((unsigned long)__builtin_return_address(0));
128 sub_preempt_count(SOFTIRQ_OFFSET);
129}
130
131EXPORT_SYMBOL(_local_bh_enable);
132
0f476b6d 133static inline void _local_bh_enable_ip(unsigned long ip)
de30a2b3 134{
0f476b6d 135 WARN_ON_ONCE(in_irq() || irqs_disabled());
3c829c36 136#ifdef CONFIG_TRACE_IRQFLAGS
0f476b6d 137 local_irq_disable();
3c829c36 138#endif
de30a2b3
IM
139 /*
140 * Are softirqs going to be turned on now:
141 */
142 if (softirq_count() == SOFTIRQ_OFFSET)
0f476b6d 143 trace_softirqs_on(ip);
de30a2b3
IM
144 /*
145 * Keep preemption disabled until we are done with
146 * softirq processing:
147 */
148 sub_preempt_count(SOFTIRQ_OFFSET - 1);
149
150 if (unlikely(!in_interrupt() && local_softirq_pending()))
151 do_softirq();
152
153 dec_preempt_count();
3c829c36 154#ifdef CONFIG_TRACE_IRQFLAGS
0f476b6d 155 local_irq_enable();
3c829c36 156#endif
de30a2b3
IM
157 preempt_check_resched();
158}
0f476b6d
JB
159
160void local_bh_enable(void)
161{
162 _local_bh_enable_ip((unsigned long)__builtin_return_address(0));
163}
de30a2b3
IM
164EXPORT_SYMBOL(local_bh_enable);
165
166void local_bh_enable_ip(unsigned long ip)
167{
0f476b6d 168 _local_bh_enable_ip(ip);
de30a2b3
IM
169}
170EXPORT_SYMBOL(local_bh_enable_ip);
171
1da177e4
LT
172/*
173 * We restart softirq processing MAX_SOFTIRQ_RESTART times,
174 * and we fall back to softirqd after that.
175 *
176 * This number has been established via experimentation.
177 * The two things to balance is latency against fairness -
178 * we want to handle softirqs as soon as possible, but they
179 * should not be able to lock up the box.
180 */
181#define MAX_SOFTIRQ_RESTART 10
182
183asmlinkage void __do_softirq(void)
184{
185 struct softirq_action *h;
186 __u32 pending;
187 int max_restart = MAX_SOFTIRQ_RESTART;
188 int cpu;
189
190 pending = local_softirq_pending();
829035fd
PM
191 account_system_vtime(current);
192
de30a2b3 193 __local_bh_disable((unsigned long)__builtin_return_address(0));
d820ac4c 194 lockdep_softirq_enter();
1da177e4 195
1da177e4
LT
196 cpu = smp_processor_id();
197restart:
198 /* Reset the pending bitmask before enabling irqs */
3f74478b 199 set_softirq_pending(0);
1da177e4 200
c70f5d66 201 local_irq_enable();
1da177e4
LT
202
203 h = softirq_vec;
204
205 do {
206 if (pending & 1) {
8e85b4b5
TG
207 int prev_count = preempt_count();
208
1da177e4 209 h->action(h);
8e85b4b5
TG
210
211 if (unlikely(prev_count != preempt_count())) {
1c95e1b6 212 printk(KERN_ERR "huh, entered softirq %td %p"
8e85b4b5
TG
213 "with preempt_count %08x,"
214 " exited with %08x?\n", h - softirq_vec,
215 h->action, prev_count, preempt_count());
216 preempt_count() = prev_count;
217 }
218
1da177e4
LT
219 rcu_bh_qsctr_inc(cpu);
220 }
221 h++;
222 pending >>= 1;
223 } while (pending);
224
c70f5d66 225 local_irq_disable();
1da177e4
LT
226
227 pending = local_softirq_pending();
228 if (pending && --max_restart)
229 goto restart;
230
231 if (pending)
232 wakeup_softirqd();
233
d820ac4c 234 lockdep_softirq_exit();
829035fd
PM
235
236 account_system_vtime(current);
de30a2b3 237 _local_bh_enable();
1da177e4
LT
238}
239
240#ifndef __ARCH_HAS_DO_SOFTIRQ
241
242asmlinkage void do_softirq(void)
243{
244 __u32 pending;
245 unsigned long flags;
246
247 if (in_interrupt())
248 return;
249
250 local_irq_save(flags);
251
252 pending = local_softirq_pending();
253
254 if (pending)
255 __do_softirq();
256
257 local_irq_restore(flags);
258}
259
1da177e4
LT
260#endif
261
dde4b2b5
IM
262/*
263 * Enter an interrupt context.
264 */
265void irq_enter(void)
266{
6378ddb5 267 int cpu = smp_processor_id();
719254fa 268
64db4cff 269 rcu_irq_enter();
ee5f80a9
TG
270 if (idle_cpu(cpu) && !in_interrupt()) {
271 __irq_enter();
719254fa 272 tick_check_idle(cpu);
ee5f80a9
TG
273 } else
274 __irq_enter();
dde4b2b5
IM
275}
276
1da177e4
LT
277#ifdef __ARCH_IRQ_EXIT_IRQS_DISABLED
278# define invoke_softirq() __do_softirq()
279#else
280# define invoke_softirq() do_softirq()
281#endif
282
283/*
284 * Exit an interrupt context. Process softirqs if needed and possible:
285 */
286void irq_exit(void)
287{
288 account_system_vtime(current);
de30a2b3 289 trace_hardirq_exit();
1da177e4
LT
290 sub_preempt_count(IRQ_EXIT_OFFSET);
291 if (!in_interrupt() && local_softirq_pending())
292 invoke_softirq();
79bf2bb3
TG
293
294#ifdef CONFIG_NO_HZ
295 /* Make sure that timer wheel updates are propagated */
2232c2d8 296 rcu_irq_exit();
64db4cff
PM
297 if (idle_cpu(smp_processor_id()) && !in_interrupt() && !need_resched())
298 tick_nohz_stop_sched_tick(0);
79bf2bb3 299#endif
1da177e4
LT
300 preempt_enable_no_resched();
301}
302
303/*
304 * This function must run with irqs disabled!
305 */
7ad5b3a5 306inline void raise_softirq_irqoff(unsigned int nr)
1da177e4
LT
307{
308 __raise_softirq_irqoff(nr);
309
310 /*
311 * If we're in an interrupt or softirq, we're done
312 * (this also catches softirq-disabled code). We will
313 * actually run the softirq once we return from
314 * the irq or softirq.
315 *
316 * Otherwise we wake up ksoftirqd to make sure we
317 * schedule the softirq soon.
318 */
319 if (!in_interrupt())
320 wakeup_softirqd();
321}
322
7ad5b3a5 323void raise_softirq(unsigned int nr)
1da177e4
LT
324{
325 unsigned long flags;
326
327 local_irq_save(flags);
328 raise_softirq_irqoff(nr);
329 local_irq_restore(flags);
330}
331
962cf36c 332void open_softirq(int nr, void (*action)(struct softirq_action *))
1da177e4 333{
1da177e4
LT
334 softirq_vec[nr].action = action;
335}
336
1da177e4
LT
337/* Tasklets */
338struct tasklet_head
339{
48f20a9a
OJ
340 struct tasklet_struct *head;
341 struct tasklet_struct **tail;
1da177e4
LT
342};
343
4620b49f
VN
344static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec);
345static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec);
1da177e4 346
7ad5b3a5 347void __tasklet_schedule(struct tasklet_struct *t)
1da177e4
LT
348{
349 unsigned long flags;
350
351 local_irq_save(flags);
48f20a9a
OJ
352 t->next = NULL;
353 *__get_cpu_var(tasklet_vec).tail = t;
354 __get_cpu_var(tasklet_vec).tail = &(t->next);
1da177e4
LT
355 raise_softirq_irqoff(TASKLET_SOFTIRQ);
356 local_irq_restore(flags);
357}
358
359EXPORT_SYMBOL(__tasklet_schedule);
360
7ad5b3a5 361void __tasklet_hi_schedule(struct tasklet_struct *t)
1da177e4
LT
362{
363 unsigned long flags;
364
365 local_irq_save(flags);
48f20a9a
OJ
366 t->next = NULL;
367 *__get_cpu_var(tasklet_hi_vec).tail = t;
368 __get_cpu_var(tasklet_hi_vec).tail = &(t->next);
1da177e4
LT
369 raise_softirq_irqoff(HI_SOFTIRQ);
370 local_irq_restore(flags);
371}
372
373EXPORT_SYMBOL(__tasklet_hi_schedule);
374
375static void tasklet_action(struct softirq_action *a)
376{
377 struct tasklet_struct *list;
378
379 local_irq_disable();
48f20a9a
OJ
380 list = __get_cpu_var(tasklet_vec).head;
381 __get_cpu_var(tasklet_vec).head = NULL;
382 __get_cpu_var(tasklet_vec).tail = &__get_cpu_var(tasklet_vec).head;
1da177e4
LT
383 local_irq_enable();
384
385 while (list) {
386 struct tasklet_struct *t = list;
387
388 list = list->next;
389
390 if (tasklet_trylock(t)) {
391 if (!atomic_read(&t->count)) {
392 if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
393 BUG();
394 t->func(t->data);
395 tasklet_unlock(t);
396 continue;
397 }
398 tasklet_unlock(t);
399 }
400
401 local_irq_disable();
48f20a9a
OJ
402 t->next = NULL;
403 *__get_cpu_var(tasklet_vec).tail = t;
404 __get_cpu_var(tasklet_vec).tail = &(t->next);
1da177e4
LT
405 __raise_softirq_irqoff(TASKLET_SOFTIRQ);
406 local_irq_enable();
407 }
408}
409
410static void tasklet_hi_action(struct softirq_action *a)
411{
412 struct tasklet_struct *list;
413
414 local_irq_disable();
48f20a9a
OJ
415 list = __get_cpu_var(tasklet_hi_vec).head;
416 __get_cpu_var(tasklet_hi_vec).head = NULL;
417 __get_cpu_var(tasklet_hi_vec).tail = &__get_cpu_var(tasklet_hi_vec).head;
1da177e4
LT
418 local_irq_enable();
419
420 while (list) {
421 struct tasklet_struct *t = list;
422
423 list = list->next;
424
425 if (tasklet_trylock(t)) {
426 if (!atomic_read(&t->count)) {
427 if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
428 BUG();
429 t->func(t->data);
430 tasklet_unlock(t);
431 continue;
432 }
433 tasklet_unlock(t);
434 }
435
436 local_irq_disable();
48f20a9a
OJ
437 t->next = NULL;
438 *__get_cpu_var(tasklet_hi_vec).tail = t;
439 __get_cpu_var(tasklet_hi_vec).tail = &(t->next);
1da177e4
LT
440 __raise_softirq_irqoff(HI_SOFTIRQ);
441 local_irq_enable();
442 }
443}
444
445
446void tasklet_init(struct tasklet_struct *t,
447 void (*func)(unsigned long), unsigned long data)
448{
449 t->next = NULL;
450 t->state = 0;
451 atomic_set(&t->count, 0);
452 t->func = func;
453 t->data = data;
454}
455
456EXPORT_SYMBOL(tasklet_init);
457
458void tasklet_kill(struct tasklet_struct *t)
459{
460 if (in_interrupt())
461 printk("Attempt to kill tasklet from interrupt\n");
462
463 while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
464 do
465 yield();
466 while (test_bit(TASKLET_STATE_SCHED, &t->state));
467 }
468 tasklet_unlock_wait(t);
469 clear_bit(TASKLET_STATE_SCHED, &t->state);
470}
471
472EXPORT_SYMBOL(tasklet_kill);
473
54514a70
DM
474DEFINE_PER_CPU(struct list_head [NR_SOFTIRQS], softirq_work_list);
475EXPORT_PER_CPU_SYMBOL(softirq_work_list);
476
477static void __local_trigger(struct call_single_data *cp, int softirq)
478{
479 struct list_head *head = &__get_cpu_var(softirq_work_list[softirq]);
480
481 list_add_tail(&cp->list, head);
482
483 /* Trigger the softirq only if the list was previously empty. */
484 if (head->next == &cp->list)
485 raise_softirq_irqoff(softirq);
486}
487
488#ifdef CONFIG_USE_GENERIC_SMP_HELPERS
489static void remote_softirq_receive(void *data)
490{
491 struct call_single_data *cp = data;
492 unsigned long flags;
493 int softirq;
494
495 softirq = cp->priv;
496
497 local_irq_save(flags);
498 __local_trigger(cp, softirq);
499 local_irq_restore(flags);
500}
501
502static int __try_remote_softirq(struct call_single_data *cp, int cpu, int softirq)
503{
504 if (cpu_online(cpu)) {
505 cp->func = remote_softirq_receive;
506 cp->info = cp;
507 cp->flags = 0;
508 cp->priv = softirq;
509
510 __smp_call_function_single(cpu, cp);
511 return 0;
512 }
513 return 1;
514}
515#else /* CONFIG_USE_GENERIC_SMP_HELPERS */
516static int __try_remote_softirq(struct call_single_data *cp, int cpu, int softirq)
517{
518 return 1;
519}
520#endif
521
522/**
523 * __send_remote_softirq - try to schedule softirq work on a remote cpu
524 * @cp: private SMP call function data area
525 * @cpu: the remote cpu
526 * @this_cpu: the currently executing cpu
527 * @softirq: the softirq for the work
528 *
529 * Attempt to schedule softirq work on a remote cpu. If this cannot be
530 * done, the work is instead queued up on the local cpu.
531 *
532 * Interrupts must be disabled.
533 */
534void __send_remote_softirq(struct call_single_data *cp, int cpu, int this_cpu, int softirq)
535{
536 if (cpu == this_cpu || __try_remote_softirq(cp, cpu, softirq))
537 __local_trigger(cp, softirq);
538}
539EXPORT_SYMBOL(__send_remote_softirq);
540
541/**
542 * send_remote_softirq - try to schedule softirq work on a remote cpu
543 * @cp: private SMP call function data area
544 * @cpu: the remote cpu
545 * @softirq: the softirq for the work
546 *
547 * Like __send_remote_softirq except that disabling interrupts and
548 * computing the current cpu is done for the caller.
549 */
550void send_remote_softirq(struct call_single_data *cp, int cpu, int softirq)
551{
552 unsigned long flags;
553 int this_cpu;
554
555 local_irq_save(flags);
556 this_cpu = smp_processor_id();
557 __send_remote_softirq(cp, cpu, this_cpu, softirq);
558 local_irq_restore(flags);
559}
560EXPORT_SYMBOL(send_remote_softirq);
561
562static int __cpuinit remote_softirq_cpu_notify(struct notifier_block *self,
563 unsigned long action, void *hcpu)
564{
565 /*
566 * If a CPU goes away, splice its entries to the current CPU
567 * and trigger a run of the softirq
568 */
569 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
570 int cpu = (unsigned long) hcpu;
571 int i;
572
573 local_irq_disable();
574 for (i = 0; i < NR_SOFTIRQS; i++) {
575 struct list_head *head = &per_cpu(softirq_work_list[i], cpu);
576 struct list_head *local_head;
577
578 if (list_empty(head))
579 continue;
580
581 local_head = &__get_cpu_var(softirq_work_list[i]);
582 list_splice_init(head, local_head);
583 raise_softirq_irqoff(i);
584 }
585 local_irq_enable();
586 }
587
588 return NOTIFY_OK;
589}
590
591static struct notifier_block __cpuinitdata remote_softirq_cpu_notifier = {
592 .notifier_call = remote_softirq_cpu_notify,
593};
594
1da177e4
LT
595void __init softirq_init(void)
596{
48f20a9a
OJ
597 int cpu;
598
599 for_each_possible_cpu(cpu) {
54514a70
DM
600 int i;
601
48f20a9a
OJ
602 per_cpu(tasklet_vec, cpu).tail =
603 &per_cpu(tasklet_vec, cpu).head;
604 per_cpu(tasklet_hi_vec, cpu).tail =
605 &per_cpu(tasklet_hi_vec, cpu).head;
54514a70
DM
606 for (i = 0; i < NR_SOFTIRQS; i++)
607 INIT_LIST_HEAD(&per_cpu(softirq_work_list[i], cpu));
48f20a9a
OJ
608 }
609
54514a70
DM
610 register_hotcpu_notifier(&remote_softirq_cpu_notifier);
611
962cf36c
CM
612 open_softirq(TASKLET_SOFTIRQ, tasklet_action);
613 open_softirq(HI_SOFTIRQ, tasklet_hi_action);
1da177e4
LT
614}
615
616static int ksoftirqd(void * __bind_cpu)
617{
1da177e4
LT
618 set_current_state(TASK_INTERRUPTIBLE);
619
620 while (!kthread_should_stop()) {
621 preempt_disable();
622 if (!local_softirq_pending()) {
623 preempt_enable_no_resched();
624 schedule();
625 preempt_disable();
626 }
627
628 __set_current_state(TASK_RUNNING);
629
630 while (local_softirq_pending()) {
631 /* Preempt disable stops cpu going offline.
632 If already offline, we'll be on wrong CPU:
633 don't process */
634 if (cpu_is_offline((long)__bind_cpu))
635 goto wait_to_die;
636 do_softirq();
637 preempt_enable_no_resched();
638 cond_resched();
639 preempt_disable();
64ca5ab9 640 rcu_qsctr_inc((long)__bind_cpu);
1da177e4
LT
641 }
642 preempt_enable();
643 set_current_state(TASK_INTERRUPTIBLE);
644 }
645 __set_current_state(TASK_RUNNING);
646 return 0;
647
648wait_to_die:
649 preempt_enable();
650 /* Wait for kthread_stop */
651 set_current_state(TASK_INTERRUPTIBLE);
652 while (!kthread_should_stop()) {
653 schedule();
654 set_current_state(TASK_INTERRUPTIBLE);
655 }
656 __set_current_state(TASK_RUNNING);
657 return 0;
658}
659
660#ifdef CONFIG_HOTPLUG_CPU
661/*
662 * tasklet_kill_immediate is called to remove a tasklet which can already be
663 * scheduled for execution on @cpu.
664 *
665 * Unlike tasklet_kill, this function removes the tasklet
666 * _immediately_, even if the tasklet is in TASKLET_STATE_SCHED state.
667 *
668 * When this function is called, @cpu must be in the CPU_DEAD state.
669 */
670void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu)
671{
672 struct tasklet_struct **i;
673
674 BUG_ON(cpu_online(cpu));
675 BUG_ON(test_bit(TASKLET_STATE_RUN, &t->state));
676
677 if (!test_bit(TASKLET_STATE_SCHED, &t->state))
678 return;
679
680 /* CPU is dead, so no lock needed. */
48f20a9a 681 for (i = &per_cpu(tasklet_vec, cpu).head; *i; i = &(*i)->next) {
1da177e4
LT
682 if (*i == t) {
683 *i = t->next;
48f20a9a
OJ
684 /* If this was the tail element, move the tail ptr */
685 if (*i == NULL)
686 per_cpu(tasklet_vec, cpu).tail = i;
1da177e4
LT
687 return;
688 }
689 }
690 BUG();
691}
692
693static void takeover_tasklets(unsigned int cpu)
694{
1da177e4
LT
695 /* CPU is dead, so no lock needed. */
696 local_irq_disable();
697
698 /* Find end, append list for that CPU. */
e5e41723
CB
699 if (&per_cpu(tasklet_vec, cpu).head != per_cpu(tasklet_vec, cpu).tail) {
700 *(__get_cpu_var(tasklet_vec).tail) = per_cpu(tasklet_vec, cpu).head;
701 __get_cpu_var(tasklet_vec).tail = per_cpu(tasklet_vec, cpu).tail;
702 per_cpu(tasklet_vec, cpu).head = NULL;
703 per_cpu(tasklet_vec, cpu).tail = &per_cpu(tasklet_vec, cpu).head;
704 }
1da177e4
LT
705 raise_softirq_irqoff(TASKLET_SOFTIRQ);
706
e5e41723
CB
707 if (&per_cpu(tasklet_hi_vec, cpu).head != per_cpu(tasklet_hi_vec, cpu).tail) {
708 *__get_cpu_var(tasklet_hi_vec).tail = per_cpu(tasklet_hi_vec, cpu).head;
709 __get_cpu_var(tasklet_hi_vec).tail = per_cpu(tasklet_hi_vec, cpu).tail;
710 per_cpu(tasklet_hi_vec, cpu).head = NULL;
711 per_cpu(tasklet_hi_vec, cpu).tail = &per_cpu(tasklet_hi_vec, cpu).head;
712 }
1da177e4
LT
713 raise_softirq_irqoff(HI_SOFTIRQ);
714
715 local_irq_enable();
716}
717#endif /* CONFIG_HOTPLUG_CPU */
718
8c78f307 719static int __cpuinit cpu_callback(struct notifier_block *nfb,
1da177e4
LT
720 unsigned long action,
721 void *hcpu)
722{
723 int hotcpu = (unsigned long)hcpu;
724 struct task_struct *p;
725
726 switch (action) {
727 case CPU_UP_PREPARE:
8bb78442 728 case CPU_UP_PREPARE_FROZEN:
1da177e4
LT
729 p = kthread_create(ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
730 if (IS_ERR(p)) {
731 printk("ksoftirqd for %i failed\n", hotcpu);
732 return NOTIFY_BAD;
733 }
734 kthread_bind(p, hotcpu);
735 per_cpu(ksoftirqd, hotcpu) = p;
736 break;
737 case CPU_ONLINE:
8bb78442 738 case CPU_ONLINE_FROZEN:
1da177e4
LT
739 wake_up_process(per_cpu(ksoftirqd, hotcpu));
740 break;
741#ifdef CONFIG_HOTPLUG_CPU
742 case CPU_UP_CANCELED:
8bb78442 743 case CPU_UP_CANCELED_FROZEN:
fc75cdfa
HC
744 if (!per_cpu(ksoftirqd, hotcpu))
745 break;
1da177e4 746 /* Unbind so it can run. Fall thru. */
a4c4af7c 747 kthread_bind(per_cpu(ksoftirqd, hotcpu),
f1fc057c 748 cpumask_any(cpu_online_mask));
1da177e4 749 case CPU_DEAD:
1c6b4aa9
ST
750 case CPU_DEAD_FROZEN: {
751 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
752
1da177e4
LT
753 p = per_cpu(ksoftirqd, hotcpu);
754 per_cpu(ksoftirqd, hotcpu) = NULL;
961ccddd 755 sched_setscheduler_nocheck(p, SCHED_FIFO, &param);
1da177e4
LT
756 kthread_stop(p);
757 takeover_tasklets(hotcpu);
758 break;
1c6b4aa9 759 }
1da177e4
LT
760#endif /* CONFIG_HOTPLUG_CPU */
761 }
762 return NOTIFY_OK;
763}
764
8c78f307 765static struct notifier_block __cpuinitdata cpu_nfb = {
1da177e4
LT
766 .notifier_call = cpu_callback
767};
768
7babe8db 769static __init int spawn_ksoftirqd(void)
1da177e4
LT
770{
771 void *cpu = (void *)(long)smp_processor_id();
07dccf33
AM
772 int err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
773
774 BUG_ON(err == NOTIFY_BAD);
1da177e4
LT
775 cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
776 register_cpu_notifier(&cpu_nfb);
777 return 0;
778}
7babe8db 779early_initcall(spawn_ksoftirqd);
78eef01b
AM
780
781#ifdef CONFIG_SMP
782/*
783 * Call a function on all processors
784 */
15c8b6c1 785int on_each_cpu(void (*func) (void *info), void *info, int wait)
78eef01b
AM
786{
787 int ret = 0;
788
789 preempt_disable();
8691e5a8 790 ret = smp_call_function(func, info, wait);
78eef01b
AM
791 local_irq_disable();
792 func(info);
793 local_irq_enable();
794 preempt_enable();
795 return ret;
796}
797EXPORT_SYMBOL(on_each_cpu);
798#endif
43a25632
YL
799
800/*
801 * [ These __weak aliases are kept in a separate compilation unit, so that
802 * GCC does not inline them incorrectly. ]
803 */
804
805int __init __weak early_irq_init(void)
806{
807 return 0;
808}
809
4a046d17
YL
810int __init __weak arch_probe_nr_irqs(void)
811{
812 return 0;
813}
814
43a25632
YL
815int __init __weak arch_early_irq_init(void)
816{
817 return 0;
818}
819
820int __weak arch_init_chip_data(struct irq_desc *desc, int cpu)
821{
822 return 0;
823}