x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL
authorThomas Gleixner <tglx@linutronix.de>
Mon, 9 Jan 2023 21:57:13 +0000 (22:57 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 16 Jan 2023 16:24:56 +0000 (17:24 +0100)
commit5fa55950729d0762a787451dc52862c3f850f859
tree9108450dd0aca71b10d66fc40e6aa32497ce9758
parent5dc4c995db9eb45f6373a956eb1f69460e69e6d4
x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL

Baoquan reported that after triggering a crash the subsequent crash-kernel
fails to boot about half of the time. It triggers a NULL pointer
dereference in the periodic tick code.

This happens because the legacy timer interrupt (IRQ0) is resent in
software which happens in soft interrupt (tasklet) context. In this context
get_irq_regs() returns NULL which leads to the NULL pointer dereference.

The reason for the resend is a spurious APIC interrupt on the IRQ0 vector
which is captured and leads to a resend when the legacy timer interrupt is
enabled. This is wrong because the legacy PIC interrupts are level
triggered and therefore should never be resent in software, but nothing
ever sets the IRQ_LEVEL flag on those interrupts, so the core code does not
know about their trigger type.

Ensure that IRQ_LEVEL is set when the legacy PCI interrupts are set up.

Fixes: a4633adcdbc1 ("[PATCH] genirq: add genirq sw IRQ-retrigger")
Reported-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Baoquan He <bhe@redhat.com>
Link: https://lore.kernel.org/r/87mt6rjrra.ffs@tglx
arch/x86/kernel/i8259.c
arch/x86/kernel/irqinit.c