powerpc: Mark low level irq handlers NO_THREAD
authorThomas Gleixner <tglx@linutronix.de>
Wed, 13 Feb 2013 22:38:51 +0000 (23:38 +0100)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 20 Jun 2013 06:55:08 +0000 (16:55 +1000)
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>
arch/powerpc/platforms/8xx/m8xx_setup.c
arch/powerpc/sysdev/cpm1.c

index 1e12108..806cbbd 100644 (file)
@@ -43,6 +43,7 @@ static irqreturn_t timebase_interrupt(int irq, void *dev)
 
 static struct irqaction tbint_irqaction = {
        .handler = timebase_interrupt,
+       .flags = IRQF_NO_THREAD,
        .name = "tbint",
 };
 
index d4fa03f..5e6ff38 100644 (file)
@@ -120,6 +120,7 @@ static irqreturn_t cpm_error_interrupt(int irq, void *dev)
 
 static struct irqaction cpm_error_irqaction = {
        .handler = cpm_error_interrupt,
+       .flags = IRQF_NO_THREAD,
        .name = "error",
 };