forked from Minki/linux
powerpc/wsp: Mark opb cascade handler IRQF_NO_THREAD
Cascade handlers must run in hard interrupt context. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
c6c56bdda1
commit
5f20b85dc2
@ -320,7 +320,8 @@ void __init opb_pic_init(void)
|
||||
}
|
||||
|
||||
/* Attach opb interrupt handler to new virtual IRQ */
|
||||
rc = request_irq(virq, opb_irq_handler, 0, "OPB LS Cascade", opb);
|
||||
rc = request_irq(virq, opb_irq_handler, IRQF_NO_THREAD,
|
||||
"OPB LS Cascade", opb);
|
||||
if (rc) {
|
||||
printk("opb: request_irq failed: %d\n", rc);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user