aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-09-26 04:52:29 -0400
committerAndi Kleen <andi@basil.nowhere.org>2006-09-26 04:52:29 -0400
commit6c96a29f20762e8ce40b674f906055d009c302ee (patch)
tree4738438c8b6502c0e0a3efc08dd8088a1d2f4318
parent7f11d8a5efd625ffa41cde1d8472f85e885478ec (diff)
[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>
-rw-r--r--arch/x86_64/kernel/irq.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86_64/kernel/irq.c b/arch/x86_64/kernel/irq.c
index bfbcf92cfa4a..b3677e6ccc6e 100644
--- a/arch/x86_64/kernel/irq.c
+++ b/arch/x86_64/kernel/irq.c
@@ -20,9 +20,6 @@
20#include <asm/idle.h> 20#include <asm/idle.h>
21 21
22atomic_t irq_err_count; 22atomic_t irq_err_count;
23#ifdef APIC_MISMATCH_DEBUG
24atomic_t irq_mis_count;
25#endif
26 23
27#ifdef CONFIG_DEBUG_STACKOVERFLOW 24#ifdef CONFIG_DEBUG_STACKOVERFLOW
28/* 25/*
@@ -95,9 +92,6 @@ skip:
95 seq_printf(p, "%10u ", cpu_pda(j)->apic_timer_irqs); 92 seq_printf(p, "%10u ", cpu_pda(j)->apic_timer_irqs);
96 seq_putc(p, '\n'); 93 seq_putc(p, '\n');
97 seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count)); 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 return 0; 96 return 0;
103} 97}