Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / softirq.c
blobb4ab6af1dea8513147c19694a8eff8a4353c69e0
1 /*
2 * linux/kernel/softirq.c
4 * Copyright (C) 1992 Linus Torvalds
6 * Rewritten. Old one was good in 2.2, but in 2.3 it was immoral. --ANK (990903)
7 */
9 #include <linux/module.h>
10 #include <linux/kernel_stat.h>
11 #include <linux/interrupt.h>
12 #include <linux/init.h>
13 #include <linux/mm.h>
14 #include <linux/notifier.h>
15 #include <linux/percpu.h>
16 #include <linux/cpu.h>
17 #include <linux/kthread.h>
18 #include <linux/rcupdate.h>
20 #include <asm/irq.h>
22 - No shared variables, all the data are CPU local.
23 - If a softirq needs serialization, let it serialize itself
24 by its own spinlocks.
25 - Even if softirq is serialized, only local cpu is marked for
26 execution. Hence, we get something sort of weak cpu binding.
27 Though it is still not clear, will it result in better locality
28 or will not.
30 Examples:
31 - NET RX softirq. It is multithreaded and does not require
32 any global serialization.
33 - NET TX softirq. It kicks software netdevice queues, hence
34 it is logically serialized per device, but this serialization
35 is invisible to common code.
36 - Tasklets: serialized wrt itself.
39 #ifndef __ARCH_IRQ_STAT
40 irq_cpustat_t irq_stat[NR_CPUS] ____cacheline_aligned;
41 EXPORT_SYMBOL(irq_stat);
42 #endif
44 static struct softirq_action softirq_vec[32] __cacheline_aligned_in_smp;
46 static DEFINE_PER_CPU(struct task_struct *, ksoftirqd);
49 * we cannot loop indefinitely here to avoid userspace starvation,
50 * but we also don't want to introduce a worst case 1/HZ latency
51 * to the pending events, so lets the scheduler to balance
52 * the softirq load for us.
54 static inline void wakeup_softirqd(void)
56 /* Interrupts are disabled: no need to stop preemption */
57 struct task_struct *tsk = __get_cpu_var(ksoftirqd);
59 if (tsk && tsk->state != TASK_RUNNING)
60 wake_up_process(tsk);
64 * We restart softirq processing MAX_SOFTIRQ_RESTART times,
65 * and we fall back to softirqd after that.
67 * This number has been established via experimentation.
68 * The two things to balance is latency against fairness -
69 * we want to handle softirqs as soon as possible, but they
70 * should not be able to lock up the box.
72 #define MAX_SOFTIRQ_RESTART 10
74 asmlinkage void __do_softirq(void)
76 struct softirq_action *h;
77 __u32 pending;
78 int max_restart = MAX_SOFTIRQ_RESTART;
79 int cpu;
81 pending = local_softirq_pending();
83 local_bh_disable();
84 cpu = smp_processor_id();
85 restart:
86 /* Reset the pending bitmask before enabling irqs */
87 local_softirq_pending() = 0;
89 local_irq_enable();
91 h = softirq_vec;
93 do {
94 if (pending & 1) {
95 h->action(h);
96 rcu_bh_qsctr_inc(cpu);
98 h++;
99 pending >>= 1;
100 } while (pending);
102 local_irq_disable();
104 pending = local_softirq_pending();
105 if (pending && --max_restart)
106 goto restart;
108 if (pending)
109 wakeup_softirqd();
111 __local_bh_enable();
114 #ifndef __ARCH_HAS_DO_SOFTIRQ
116 asmlinkage void do_softirq(void)
118 __u32 pending;
119 unsigned long flags;
121 if (in_interrupt())
122 return;
124 local_irq_save(flags);
126 pending = local_softirq_pending();
128 if (pending)
129 __do_softirq();
131 local_irq_restore(flags);
134 EXPORT_SYMBOL(do_softirq);
136 #endif
138 void local_bh_enable(void)
140 WARN_ON(irqs_disabled());
142 * Keep preemption disabled until we are done with
143 * softirq processing:
145 sub_preempt_count(SOFTIRQ_OFFSET - 1);
147 if (unlikely(!in_interrupt() && local_softirq_pending()))
148 do_softirq();
150 dec_preempt_count();
151 preempt_check_resched();
153 EXPORT_SYMBOL(local_bh_enable);
155 #ifdef __ARCH_IRQ_EXIT_IRQS_DISABLED
156 # define invoke_softirq() __do_softirq()
157 #else
158 # define invoke_softirq() do_softirq()
159 #endif
162 * Exit an interrupt context. Process softirqs if needed and possible:
164 void irq_exit(void)
166 account_system_vtime(current);
167 sub_preempt_count(IRQ_EXIT_OFFSET);
168 if (!in_interrupt() && local_softirq_pending())
169 invoke_softirq();
170 preempt_enable_no_resched();
174 * This function must run with irqs disabled!
176 inline fastcall void raise_softirq_irqoff(unsigned int nr)
178 __raise_softirq_irqoff(nr);
181 * If we're in an interrupt or softirq, we're done
182 * (this also catches softirq-disabled code). We will
183 * actually run the softirq once we return from
184 * the irq or softirq.
186 * Otherwise we wake up ksoftirqd to make sure we
187 * schedule the softirq soon.
189 if (!in_interrupt())
190 wakeup_softirqd();
193 EXPORT_SYMBOL(raise_softirq_irqoff);
195 void fastcall raise_softirq(unsigned int nr)
197 unsigned long flags;
199 local_irq_save(flags);
200 raise_softirq_irqoff(nr);
201 local_irq_restore(flags);
204 void open_softirq(int nr, void (*action)(struct softirq_action*), void *data)
206 softirq_vec[nr].data = data;
207 softirq_vec[nr].action = action;
210 EXPORT_SYMBOL(open_softirq);
212 /* Tasklets */
213 struct tasklet_head
215 struct tasklet_struct *list;
218 /* Some compilers disobey section attribute on statics when not
219 initialized -- RR */
220 static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL };
221 static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL };
223 void fastcall __tasklet_schedule(struct tasklet_struct *t)
225 unsigned long flags;
227 local_irq_save(flags);
228 t->next = __get_cpu_var(tasklet_vec).list;
229 __get_cpu_var(tasklet_vec).list = t;
230 raise_softirq_irqoff(TASKLET_SOFTIRQ);
231 local_irq_restore(flags);
234 EXPORT_SYMBOL(__tasklet_schedule);
236 void fastcall __tasklet_hi_schedule(struct tasklet_struct *t)
238 unsigned long flags;
240 local_irq_save(flags);
241 t->next = __get_cpu_var(tasklet_hi_vec).list;
242 __get_cpu_var(tasklet_hi_vec).list = t;
243 raise_softirq_irqoff(HI_SOFTIRQ);
244 local_irq_restore(flags);
247 EXPORT_SYMBOL(__tasklet_hi_schedule);
249 static void tasklet_action(struct softirq_action *a)
251 struct tasklet_struct *list;
253 local_irq_disable();
254 list = __get_cpu_var(tasklet_vec).list;
255 __get_cpu_var(tasklet_vec).list = NULL;
256 local_irq_enable();
258 while (list) {
259 struct tasklet_struct *t = list;
261 list = list->next;
263 if (tasklet_trylock(t)) {
264 if (!atomic_read(&t->count)) {
265 if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
266 BUG();
267 t->func(t->data);
268 tasklet_unlock(t);
269 continue;
271 tasklet_unlock(t);
274 local_irq_disable();
275 t->next = __get_cpu_var(tasklet_vec).list;
276 __get_cpu_var(tasklet_vec).list = t;
277 __raise_softirq_irqoff(TASKLET_SOFTIRQ);
278 local_irq_enable();
282 static void tasklet_hi_action(struct softirq_action *a)
284 struct tasklet_struct *list;
286 local_irq_disable();
287 list = __get_cpu_var(tasklet_hi_vec).list;
288 __get_cpu_var(tasklet_hi_vec).list = NULL;
289 local_irq_enable();
291 while (list) {
292 struct tasklet_struct *t = list;
294 list = list->next;
296 if (tasklet_trylock(t)) {
297 if (!atomic_read(&t->count)) {
298 if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
299 BUG();
300 t->func(t->data);
301 tasklet_unlock(t);
302 continue;
304 tasklet_unlock(t);
307 local_irq_disable();
308 t->next = __get_cpu_var(tasklet_hi_vec).list;
309 __get_cpu_var(tasklet_hi_vec).list = t;
310 __raise_softirq_irqoff(HI_SOFTIRQ);
311 local_irq_enable();
316 void tasklet_init(struct tasklet_struct *t,
317 void (*func)(unsigned long), unsigned long data)
319 t->next = NULL;
320 t->state = 0;
321 atomic_set(&t->count, 0);
322 t->func = func;
323 t->data = data;
326 EXPORT_SYMBOL(tasklet_init);
328 void tasklet_kill(struct tasklet_struct *t)
330 if (in_interrupt())
331 printk("Attempt to kill tasklet from interrupt\n");
333 while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
335 yield();
336 while (test_bit(TASKLET_STATE_SCHED, &t->state));
338 tasklet_unlock_wait(t);
339 clear_bit(TASKLET_STATE_SCHED, &t->state);
342 EXPORT_SYMBOL(tasklet_kill);
344 void __init softirq_init(void)
346 open_softirq(TASKLET_SOFTIRQ, tasklet_action, NULL);
347 open_softirq(HI_SOFTIRQ, tasklet_hi_action, NULL);
350 static int ksoftirqd(void * __bind_cpu)
352 set_user_nice(current, 19);
353 current->flags |= PF_NOFREEZE;
355 set_current_state(TASK_INTERRUPTIBLE);
357 while (!kthread_should_stop()) {
358 preempt_disable();
359 if (!local_softirq_pending()) {
360 preempt_enable_no_resched();
361 schedule();
362 preempt_disable();
365 __set_current_state(TASK_RUNNING);
367 while (local_softirq_pending()) {
368 /* Preempt disable stops cpu going offline.
369 If already offline, we'll be on wrong CPU:
370 don't process */
371 if (cpu_is_offline((long)__bind_cpu))
372 goto wait_to_die;
373 do_softirq();
374 preempt_enable_no_resched();
375 cond_resched();
376 preempt_disable();
378 preempt_enable();
379 set_current_state(TASK_INTERRUPTIBLE);
381 __set_current_state(TASK_RUNNING);
382 return 0;
384 wait_to_die:
385 preempt_enable();
386 /* Wait for kthread_stop */
387 set_current_state(TASK_INTERRUPTIBLE);
388 while (!kthread_should_stop()) {
389 schedule();
390 set_current_state(TASK_INTERRUPTIBLE);
392 __set_current_state(TASK_RUNNING);
393 return 0;
396 #ifdef CONFIG_HOTPLUG_CPU
398 * tasklet_kill_immediate is called to remove a tasklet which can already be
399 * scheduled for execution on @cpu.
401 * Unlike tasklet_kill, this function removes the tasklet
402 * _immediately_, even if the tasklet is in TASKLET_STATE_SCHED state.
404 * When this function is called, @cpu must be in the CPU_DEAD state.
406 void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu)
408 struct tasklet_struct **i;
410 BUG_ON(cpu_online(cpu));
411 BUG_ON(test_bit(TASKLET_STATE_RUN, &t->state));
413 if (!test_bit(TASKLET_STATE_SCHED, &t->state))
414 return;
416 /* CPU is dead, so no lock needed. */
417 for (i = &per_cpu(tasklet_vec, cpu).list; *i; i = &(*i)->next) {
418 if (*i == t) {
419 *i = t->next;
420 return;
423 BUG();
426 static void takeover_tasklets(unsigned int cpu)
428 struct tasklet_struct **i;
430 /* CPU is dead, so no lock needed. */
431 local_irq_disable();
433 /* Find end, append list for that CPU. */
434 for (i = &__get_cpu_var(tasklet_vec).list; *i; i = &(*i)->next);
435 *i = per_cpu(tasklet_vec, cpu).list;
436 per_cpu(tasklet_vec, cpu).list = NULL;
437 raise_softirq_irqoff(TASKLET_SOFTIRQ);
439 for (i = &__get_cpu_var(tasklet_hi_vec).list; *i; i = &(*i)->next);
440 *i = per_cpu(tasklet_hi_vec, cpu).list;
441 per_cpu(tasklet_hi_vec, cpu).list = NULL;
442 raise_softirq_irqoff(HI_SOFTIRQ);
444 local_irq_enable();
446 #endif /* CONFIG_HOTPLUG_CPU */
448 static int __devinit cpu_callback(struct notifier_block *nfb,
449 unsigned long action,
450 void *hcpu)
452 int hotcpu = (unsigned long)hcpu;
453 struct task_struct *p;
455 switch (action) {
456 case CPU_UP_PREPARE:
457 BUG_ON(per_cpu(tasklet_vec, hotcpu).list);
458 BUG_ON(per_cpu(tasklet_hi_vec, hotcpu).list);
459 p = kthread_create(ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
460 if (IS_ERR(p)) {
461 printk("ksoftirqd for %i failed\n", hotcpu);
462 return NOTIFY_BAD;
464 kthread_bind(p, hotcpu);
465 per_cpu(ksoftirqd, hotcpu) = p;
466 break;
467 case CPU_ONLINE:
468 wake_up_process(per_cpu(ksoftirqd, hotcpu));
469 break;
470 #ifdef CONFIG_HOTPLUG_CPU
471 case CPU_UP_CANCELED:
472 /* Unbind so it can run. Fall thru. */
473 kthread_bind(per_cpu(ksoftirqd, hotcpu), smp_processor_id());
474 case CPU_DEAD:
475 p = per_cpu(ksoftirqd, hotcpu);
476 per_cpu(ksoftirqd, hotcpu) = NULL;
477 kthread_stop(p);
478 takeover_tasklets(hotcpu);
479 break;
480 #endif /* CONFIG_HOTPLUG_CPU */
482 return NOTIFY_OK;
485 static struct notifier_block __devinitdata cpu_nfb = {
486 .notifier_call = cpu_callback
489 __init int spawn_ksoftirqd(void)
491 void *cpu = (void *)(long)smp_processor_id();
492 cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
493 cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
494 register_cpu_notifier(&cpu_nfb);
495 return 0;