Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'x86-urgent-2020-08-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fix from Ingo Molnar:
"A single fix for a potential deadlock when printing a message about
spurious interrupts"

* tag 'x86-urgent-2020-08-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/i8259: Use printk_deferred() to prevent deadlock

+1 -1
+1 -1
arch/x86/kernel/i8259.c
··· 207 207 * lets ACK and report it. [once per IRQ] 208 208 */ 209 209 if (!(spurious_irq_mask & irqmask)) { 210 - printk(KERN_DEBUG 210 + printk_deferred(KERN_DEBUG 211 211 "spurious 8259A interrupt: IRQ%d.\n", irq); 212 212 spurious_irq_mask |= irqmask; 213 213 }