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

Commit 33f345c1 authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM64: smp: BUG() if smp_send_reschedule() is called for an offline cpu" into msm-4.8

parents 9ae1315d 17927276
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -887,6 +887,7 @@ void handle_IPI(int ipinr, struct pt_regs *regs)

void smp_send_reschedule(int cpu)
{
	BUG_ON(cpu_is_offline(cpu));
	smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
}