Commit f4d0d40c authored by Helge Deller's avatar Helge Deller
Browse files

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
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -173,9 +173,12 @@ ipi_interrupt(int irq, void *dev_id)
					this_cpu, which);
				return IRQ_NONE;
			} /* Switch */
		/* let in any pending interrupts */

			/* before doing more, let in any pending interrupts */
			if (ops) {
				local_irq_enable();
				local_irq_disable();
			}
		} /* while (ops) */
	}
	return IRQ_HANDLED;