sparc64: Fix build of timer_interrupt().
arch/sparc/kernel/time_64.c: In function ‘timer_interrupt’: arch/sparc/kernel/time_64.c:732: error: ‘struct kernel_stat’ has no member named ‘irqs’ make[1]: *** [arch/sparc/kernel/time_64.o] Error 1 Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
be0ea69674
commit
e2ab3dff9d
@@ -724,12 +724,14 @@ void timer_interrupt(int irq, struct pt_regs *regs)
|
|||||||
unsigned long tick_mask = tick_ops->softint_mask;
|
unsigned long tick_mask = tick_ops->softint_mask;
|
||||||
int cpu = smp_processor_id();
|
int cpu = smp_processor_id();
|
||||||
struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
|
struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
|
||||||
|
struct irq_desc *desc;
|
||||||
|
|
||||||
clear_softint(tick_mask);
|
clear_softint(tick_mask);
|
||||||
|
|
||||||
irq_enter();
|
irq_enter();
|
||||||
|
|
||||||
kstat_this_cpu.irqs[0]++;
|
desc = irq_to_desc(0);
|
||||||
|
kstat_incr_irqs_this_cpu(0, desc);
|
||||||
|
|
||||||
if (unlikely(!evt->event_handler)) {
|
if (unlikely(!evt->event_handler)) {
|
||||||
printk(KERN_WARNING
|
printk(KERN_WARNING
|
||||||
|
Reference in New Issue
Block a user