aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/time_64.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-08-20 09:54:21 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-08-31 03:35:46 -0400
commit64fcbac1f38882d8ae82c44a1c2a676cfa5e79e1 (patch)
treeec1206322a8ca2a775db5ca552d5666b968be77c /arch/x86/kernel/time_64.c
parentdd3e6e8c6e7a2294f137c4dbccb3e73e7fa8ba15 (diff)
x86: Simplify timer_ack magic in time_32.c
Let the compiler optimize the timer_ack magic away in the 32bit timer interrupt and put the same code into time_64.c. It's optimized out for CONFIG_X86_IO_APIC on 32bit and for 64bit because timer_ack is const 0 in both cases. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/time_64.c')
-rw-r--r--arch/x86/kernel/time_64.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c
index 45914f8844a7..35e0a925da56 100644
--- a/arch/x86/kernel/time_64.c
+++ b/arch/x86/kernel/time_64.c
@@ -51,6 +51,20 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
51{ 51{
52 inc_irq_stat(irq0_irqs); 52 inc_irq_stat(irq0_irqs);
53 53
54 /* Optimized out for !IO_APIC and x86_64 */
55 if (timer_ack) {
56 /*
57 * Subtle, when I/O APICs are used we have to ack timer IRQ
58 * manually to deassert NMI lines for the watchdog if run
59 * on an 82489DX-based system.
60 */
61 spin_lock(&i8259A_lock);
62 outb(0x0c, PIC_MASTER_OCW3);
63 /* Ack the IRQ; AEOI will end it automatically. */
64 inb(PIC_MASTER_POLL);
65 spin_unlock(&i8259A_lock);
66 }
67
54 global_clock_event->event_handler(global_clock_event); 68 global_clock_event->event_handler(global_clock_event);
55 69
56#ifdef CONFIG_MCA 70#ifdef CONFIG_MCA