diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-06-29 05:24:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 13:26:22 -0400 |
commit | a53da52fd743fd637637572838c0a7af23a2d038 (patch) | |
tree | b62c205b609356db5bca378c6d04d6d899bfd499 /include/linux/irq.h | |
parent | 74ffd553a3a7fbae34be70b751852d5b6fe5acac (diff) |
[PATCH] genirq: cleanup: merge irq_affinity[] into irq_desc[]
Consolidation: remove the irq_affinity[NR_IRQS] array and move it into the
irq_desc[NR_IRQS].affinity field.
[akpm@osdl.org: sparc64 build fix]
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 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 9597a6904239..6e3ad6245bd3 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -77,6 +77,9 @@ typedef struct irq_desc { | |||
77 | unsigned int irq_count; /* For detecting broken interrupts */ | 77 | unsigned int irq_count; /* For detecting broken interrupts */ |
78 | unsigned int irqs_unhandled; | 78 | unsigned int irqs_unhandled; |
79 | spinlock_t lock; | 79 | spinlock_t lock; |
80 | #ifdef CONFIG_SMP | ||
81 | cpumask_t affinity; | ||
82 | #endif | ||
80 | #if defined (CONFIG_GENERIC_PENDING_IRQ) || defined (CONFIG_IRQBALANCE) | 83 | #if defined (CONFIG_GENERIC_PENDING_IRQ) || defined (CONFIG_IRQBALANCE) |
81 | unsigned int move_irq; /* Flag need to re-target intr dest*/ | 84 | unsigned int move_irq; /* Flag need to re-target intr dest*/ |
82 | #endif | 85 | #endif |
@@ -96,12 +99,10 @@ irq_descp (int irq) | |||
96 | extern int setup_irq(unsigned int irq, struct irqaction * new); | 99 | extern int setup_irq(unsigned int irq, struct irqaction * new); |
97 | 100 | ||
98 | #ifdef CONFIG_GENERIC_HARDIRQS | 101 | #ifdef CONFIG_GENERIC_HARDIRQS |
99 | extern cpumask_t irq_affinity[NR_IRQS]; | ||
100 | |||
101 | #ifdef CONFIG_SMP | 102 | #ifdef CONFIG_SMP |
102 | static inline void set_native_irq_info(int irq, cpumask_t mask) | 103 | static inline void set_native_irq_info(int irq, cpumask_t mask) |
103 | { | 104 | { |
104 | irq_affinity[irq] = mask; | 105 | irq_desc[irq].affinity = mask; |
105 | } | 106 | } |
106 | #else | 107 | #else |
107 | static inline void set_native_irq_info(int irq, cpumask_t mask) | 108 | static inline void set_native_irq_info(int irq, cpumask_t mask) |