diff options
author | Yinghai Lu <yinghai@kernel.org> | 2009-01-11 13:35:56 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-12 20:01:12 +0100 |
commit | 0b0f0b1c2c87de299df6f92a8ffc0a73bd1bb960 (patch) | |
tree | c5d047cc71926b2ac5d657cce1adc577f92f4f9b /arch/arm/mach-ns9xxx | |
parent | d178a1eb5c034df1f74a2b67bf311afa5d6b8e95 (diff) | |
download | op-kernel-dev-0b0f0b1c2c87de299df6f92a8ffc0a73bd1bb960.zip op-kernel-dev-0b0f0b1c2c87de299df6f92a8ffc0a73bd1bb960.tar.gz |
sparseirq: use kstat_irqs_cpu on non-x86 architectures too
so we could move kstat_irqs array to irq_desc struct.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/arm/mach-ns9xxx')
-rw-r--r-- | arch/arm/mach-ns9xxx/irq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-ns9xxx/irq.c b/arch/arm/mach-ns9xxx/irq.c index 22e0eb6..feb0e54 100644 --- a/arch/arm/mach-ns9xxx/irq.c +++ b/arch/arm/mach-ns9xxx/irq.c @@ -63,7 +63,6 @@ static struct irq_chip ns9xxx_chip = { #else static void handle_prio_irq(unsigned int irq, struct irq_desc *desc) { - unsigned int cpu = smp_processor_id(); struct irqaction *action; irqreturn_t action_ret; @@ -72,7 +71,7 @@ static void handle_prio_irq(unsigned int irq, struct irq_desc *desc) BUG_ON(desc->status & IRQ_INPROGRESS); desc->status &= ~(IRQ_REPLAY | IRQ_WAITING); - kstat_cpu(cpu).irqs[irq]++; + kstat_incr_irqs_this_cpu(irq, desc); action = desc->action; if (unlikely(!action || (desc->status & IRQ_DISABLED))) |