Commit f4d0d40c authored by Helge Deller's avatar Helge Deller

parisc: Avoid external interrupts when IPI finishes

No need to allow external interrupts when the IPI loop is going to
finish now.
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 024f5b59
...@@ -173,9 +173,12 @@ ipi_interrupt(int irq, void *dev_id) ...@@ -173,9 +173,12 @@ ipi_interrupt(int irq, void *dev_id)
this_cpu, which); this_cpu, which);
return IRQ_NONE; return IRQ_NONE;
} /* Switch */ } /* Switch */
/* let in any pending interrupts */
local_irq_enable(); /* before doing more, let in any pending interrupts */
local_irq_disable(); if (ops) {
local_irq_enable();
local_irq_disable();
}
} /* while (ops) */ } /* while (ops) */
} }
return IRQ_HANDLED; return IRQ_HANDLED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment