powerpc: Mark IPI interrupts IRQF_NO_THREAD
IPI handlers cannot be threaded. Remove the obsolete IRQF_DISABLED
flag (see commit e58aa3d2
) while at it.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
committed by
Benjamin Herrenschmidt
parent
5f20b85dc2
commit
3b5e16d7ad
@ -137,7 +137,7 @@ static void xics_request_ipi(void)
|
||||
* IPIs are marked IRQF_PERCPU. The handler was set in map.
|
||||
*/
|
||||
BUG_ON(request_irq(ipi, icp_ops->ipi_action,
|
||||
IRQF_PERCPU, "IPI", NULL));
|
||||
IRQF_PERCPU | IRQF_NO_THREAD, "IPI", NULL));
|
||||
}
|
||||
|
||||
int __init xics_smp_probe(void)
|
||||
|
Reference in New Issue
Block a user