Commit cd916d31 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds

[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: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4a733ee1
...@@ -581,7 +581,7 @@ static int balanced_irq(void *unused) ...@@ -581,7 +581,7 @@ static int balanced_irq(void *unused)
/* push everything to CPU 0 to give us a starting point. */ /* push everything to CPU 0 to give us a starting point. */
for (i = 0 ; i < NR_IRQS ; i++) { for (i = 0 ; i < NR_IRQS ; i++) {
pending_irq_cpumask[i] = cpumask_of_cpu(0); irq_desc[i].pending_mask = cpumask_of_cpu(0);
set_pending_irq(i, cpumask_of_cpu(0)); set_pending_irq(i, cpumask_of_cpu(0));
} }
......
...@@ -83,6 +83,7 @@ struct irq_desc { ...@@ -83,6 +83,7 @@ struct irq_desc {
cpumask_t affinity; cpumask_t affinity;
#endif #endif
#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE) #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
cpumask_t pending_mask;
unsigned int move_irq; /* need to re-target IRQ dest */ unsigned int move_irq; /* need to re-target IRQ dest */
#endif #endif
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
...@@ -120,7 +121,6 @@ static inline void set_native_irq_info(int irq, cpumask_t mask) ...@@ -120,7 +121,6 @@ static inline void set_native_irq_info(int irq, cpumask_t mask)
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE) #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
extern cpumask_t pending_irq_cpumask[NR_IRQS];
void set_pending_irq(unsigned int irq, cpumask_t mask); void set_pending_irq(unsigned int irq, cpumask_t mask);
void move_native_irq(int irq); void move_native_irq(int irq);
......
...@@ -16,10 +16,6 @@ ...@@ -16,10 +16,6 @@
#ifdef CONFIG_SMP #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) * synchronize_irq - wait for pending IRQ handlers (on other CPUs)
* @irq: interrupt number to wait for * @irq: interrupt number to wait for
......
...@@ -8,7 +8,7 @@ void set_pending_irq(unsigned int irq, cpumask_t mask) ...@@ -8,7 +8,7 @@ void set_pending_irq(unsigned int irq, cpumask_t mask)
spin_lock_irqsave(&desc->lock, flags); spin_lock_irqsave(&desc->lock, flags);
desc->move_irq = 1; desc->move_irq = 1;
pending_irq_cpumask[irq] = mask; irq_desc[irq].pending_mask = mask;
spin_unlock_irqrestore(&desc->lock, flags); spin_unlock_irqrestore(&desc->lock, flags);
} }
...@@ -30,7 +30,7 @@ void move_native_irq(int irq) ...@@ -30,7 +30,7 @@ void move_native_irq(int irq)
desc->move_irq = 0; desc->move_irq = 0;
if (unlikely(cpus_empty(pending_irq_cpumask[irq]))) if (unlikely(cpus_empty(irq_desc[irq].pending_mask)))
return; return;
if (!desc->chip->set_affinity) if (!desc->chip->set_affinity)
...@@ -38,7 +38,7 @@ void move_native_irq(int irq) ...@@ -38,7 +38,7 @@ void move_native_irq(int irq)
assert_spin_locked(&desc->lock); assert_spin_locked(&desc->lock);
cpus_and(tmp, pending_irq_cpumask[irq], cpu_online_map); cpus_and(tmp, irq_desc[irq].pending_mask, cpu_online_map);
/* /*
* If there was a valid mask to work with, please * If there was a valid mask to work with, please
...@@ -58,5 +58,5 @@ void move_native_irq(int irq) ...@@ -58,5 +58,5 @@ void move_native_irq(int irq)
if (likely(!(desc->status & IRQ_DISABLED))) if (likely(!(desc->status & IRQ_DISABLED)))
desc->chip->enable(irq); desc->chip->enable(irq);
} }
cpus_clear(pending_irq_cpumask[irq]); cpus_clear(irq_desc[irq].pending_mask);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment