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

powerpc: Mark low level irq handlers NO_THREAD

These low level handlers cannot be threaded. Mark them NO_THREAD

Reported-by: leroy christophe <christophe.leroy@c-s.fr>
Tested-by: leroy christophe <christophe.leroy@c-s.fr>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Thomas Gleixner and committed by
Benjamin Herrenschmidt
e8003404 fce144b4

+2
+1
arch/powerpc/platforms/8xx/m8xx_setup.c
··· 43 43 44 44 static struct irqaction tbint_irqaction = { 45 45 .handler = timebase_interrupt, 46 + .flags = IRQF_NO_THREAD, 46 47 .name = "tbint", 47 48 }; 48 49
+1
arch/powerpc/sysdev/cpm1.c
··· 120 120 121 121 static struct irqaction cpm_error_irqaction = { 122 122 .handler = cpm_error_interrupt, 123 + .flags = IRQF_NO_THREAD, 123 124 .name = "error", 124 125 }; 125 126