Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 087d7ecd authored by Johannes Berg's avatar Johannes Berg Committed by Paul Mackerras
Browse files

[POWERPC] mpic: set IPIs to be per-CPU



This patch changes the MPIC IPIs to be per-CPU to avoid getting a
warning ("Cannot set affinity for irq 251") when taking a CPU
offline via sysfs or during suspend.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 0e826643
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1370,7 +1370,7 @@ void mpic_request_ipis(void)
			printk(KERN_ERR "Failed to map IPI %d\n", i);
			break;
		}
		request_irq(vipi, mpic_ipi_action, IRQF_DISABLED,
		request_irq(vipi, mpic_ipi_action, IRQF_DISABLED|IRQF_PERCPU,
			    ipi_names[i], mpic);
	}
}