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 /kernel/irq/proc.c | |
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 'kernel/irq/proc.c')
-rw-r--r-- | kernel/irq/proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index 90fe05f23e69..847b98a611e0 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c | |||
@@ -36,7 +36,7 @@ void proc_set_irq_affinity(unsigned int irq, cpumask_t mask_val) | |||
36 | void proc_set_irq_affinity(unsigned int irq, cpumask_t mask_val) | 36 | void proc_set_irq_affinity(unsigned int irq, cpumask_t mask_val) |
37 | { | 37 | { |
38 | set_balance_irq_affinity(irq, mask_val); | 38 | set_balance_irq_affinity(irq, mask_val); |
39 | irq_affinity[irq] = mask_val; | 39 | irq_desc[irq].affinity = mask_val; |
40 | irq_desc[irq].chip->set_affinity(irq, mask_val); | 40 | irq_desc[irq].chip->set_affinity(irq, mask_val); |
41 | } | 41 | } |
42 | #endif | 42 | #endif |
@@ -44,7 +44,7 @@ void proc_set_irq_affinity(unsigned int irq, cpumask_t mask_val) | |||
44 | static int irq_affinity_read_proc(char *page, char **start, off_t off, | 44 | static int irq_affinity_read_proc(char *page, char **start, off_t off, |
45 | int count, int *eof, void *data) | 45 | int count, int *eof, void *data) |
46 | { | 46 | { |
47 | int len = cpumask_scnprintf(page, count, irq_affinity[(long)data]); | 47 | int len = cpumask_scnprintf(page, count, irq_desc[(long)data].affinity); |
48 | 48 | ||
49 | if (count - len < 2) | 49 | if (count - len < 2) |
50 | return -EINVAL; | 50 | return -EINVAL; |