x86: hpet: Mark per cpu interrupts IRQF_TIMER to prevent resume failure
authorThomas Gleixner <tglx@linutronix.de>
Sun, 14 Jun 2009 15:46:01 +0000 (17:46 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 14 Jun 2009 16:24:29 +0000 (18:24 +0200)
commit507fa3a3d80365c595113a5ac3232309e3dbf5d8
treee9688e10621f6e47f0b1a9f8addb2a65aceba7fb
parent46e443283891dbd45fba7fa037baab831f5d8f3f
x86: hpet: Mark per cpu interrupts IRQF_TIMER to prevent resume failure

timer interrupts are excluded from being disabled during suspend. The
clock events code manages the disabling of clock events on its own
because the timer interrupt needs to be functional before the resume
code reenables the device interrupts.

The hpet per cpu timers request their interrupt without setting the
IRQF_TIMER flag so suspend_device_irqs() disables them as well which
results in a fatal resume failure on the boot CPU.

Adding IRQF_TIMER to the interupt flags when requesting the hpet per
cpu timer interrupts solves the problem.

Reported-by: Benjamin S. <sbenni@gmx.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Benjamin S. <sbenni@gmx.de>
Cc: stable@kernel.org
arch/x86/kernel/hpet.c