Commit 6c96a29f20762e8ce40b674f906055d009c302ee
Committed by
Andi Kleen
1 parent
7f11d8a5ef
Exists in
master
and in
4 other branches
[PATCH] Remove apic mismatch counter
Nobody has been setting the mismatch counter and the ifdef was never set so remove it. Signed-off-by: Andi Kleen <ak@suse.de>
Showing 1 changed file with 0 additions and 6 deletions Side-by-side Diff
arch/x86_64/kernel/irq.c
| ... | ... | @@ -20,9 +20,6 @@ |
| 20 | 20 | #include <asm/idle.h> |
| 21 | 21 | |
| 22 | 22 | atomic_t irq_err_count; |
| 23 | -#ifdef APIC_MISMATCH_DEBUG | |
| 24 | -atomic_t irq_mis_count; | |
| 25 | -#endif | |
| 26 | 23 | |
| 27 | 24 | #ifdef CONFIG_DEBUG_STACKOVERFLOW |
| 28 | 25 | /* |
| ... | ... | @@ -95,9 +92,6 @@ |
| 95 | 92 | seq_printf(p, "%10u ", cpu_pda(j)->apic_timer_irqs); |
| 96 | 93 | seq_putc(p, '\n'); |
| 97 | 94 | seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count)); |
| 98 | -#ifdef APIC_MISMATCH_DEBUG | |
| 99 | - seq_printf(p, "MIS: %10u\n", atomic_read(&irq_mis_count)); | |
| 100 | -#endif | |
| 101 | 95 | } |
| 102 | 96 | return 0; |
| 103 | 97 | } |