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

ARM: 8218/1: warn if bad IRQ was scheduled

If somebody causes an unexpected bad IRQ, this even will be unnoticed in
both dmesg and system logs. If the "bad" IRQ is stuck, the device will
just hang silently w/o reporting anything. Compare this to the generic
behaviour (from include/asm-generic/hardirq.h) which prints a message
with critical level. So to help everybody, include the same message into
ARM-specific ack_bad_irq().

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Dmitry Eremin-Solenikov and committed by
Russell King
44cb09c2 119acbd2

+1
+1
arch/arm/include/asm/hw_irq.h
··· 8 8 { 9 9 extern unsigned long irq_err_count; 10 10 irq_err_count++; 11 + pr_crit("unexpected IRQ trap at vector %02x\n", irq); 11 12 } 12 13 13 14 void set_irq_flags(unsigned int irq, unsigned int flags);