Commit 6c96a29f authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen

[PATCH] Remove apic mismatch counter

Nobody has been setting the mismatch counter and the ifdef was never
set so remove it.
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 7f11d8a5
...@@ -20,9 +20,6 @@ ...@@ -20,9 +20,6 @@
#include <asm/idle.h> #include <asm/idle.h>
atomic_t irq_err_count; atomic_t irq_err_count;
#ifdef APIC_MISMATCH_DEBUG
atomic_t irq_mis_count;
#endif
#ifdef CONFIG_DEBUG_STACKOVERFLOW #ifdef CONFIG_DEBUG_STACKOVERFLOW
/* /*
...@@ -95,9 +92,6 @@ int show_interrupts(struct seq_file *p, void *v) ...@@ -95,9 +92,6 @@ int show_interrupts(struct seq_file *p, void *v)
seq_printf(p, "%10u ", cpu_pda(j)->apic_timer_irqs); seq_printf(p, "%10u ", cpu_pda(j)->apic_timer_irqs);
seq_putc(p, '\n'); seq_putc(p, '\n');
seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count)); seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
#ifdef APIC_MISMATCH_DEBUG
seq_printf(p, "MIS: %10u\n", atomic_read(&irq_mis_count));
#endif
} }
return 0; return 0;
} }
......
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