diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-06-29 11:24:42 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 19:26:22 +0200 |
commit | cd916d31cc31273eca8a620fae02b7bf7f577559 (patch) | |
tree | 1af0c37c1fd92c90a178ed1a7d1d8b5a90a1ddb8 /kernel/irq/manage.c | |
parent | [PATCH] genirq: cleanup: merge irq_dir[], smp_affinity_entry[] into irq_desc[] (diff) | |
download | linux-cd916d31cc31273eca8a620fae02b7bf7f577559.tar.xz linux-cd916d31cc31273eca8a620fae02b7bf7f577559.zip |
[PATCH] genirq: cleanup: merge pending_irq_cpumask[] into irq_desc[]
Consolidation: remove the pending_irq_cpumask[NR_IRQS] array and move it into
the irq_desc[NR_IRQS].pending_mask field.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r-- | kernel/irq/manage.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 6a6f1d3dd399..ca9b5d36abe8 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c @@ -16,10 +16,6 @@ #ifdef CONFIG_SMP -#if defined (CONFIG_GENERIC_PENDING_IRQ) || defined (CONFIG_IRQBALANCE) -cpumask_t __cacheline_aligned pending_irq_cpumask[NR_IRQS]; -#endif - /** * synchronize_irq - wait for pending IRQ handlers (on other CPUs) * @irq: interrupt number to wait for |