|
@@ -171,11 +171,11 @@ void smp_send_stop(void)
|
|
smp_call_function(stop_this_cpu, 0, 0);
|
|
smp_call_function(stop_this_cpu, 0, 0);
|
|
}
|
|
}
|
|
|
|
|
|
-void arch_send_call_function_ipi(cpumask_t mask)
|
|
|
|
|
|
+void arch_send_call_function_ipi_mask(const struct cpumask *mask)
|
|
{
|
|
{
|
|
int cpu;
|
|
int cpu;
|
|
|
|
|
|
- for_each_cpu_mask(cpu, mask)
|
|
|
|
|
|
+ for_each_cpu(cpu, mask)
|
|
plat_send_ipi(cpu, SMP_MSG_FUNCTION);
|
|
plat_send_ipi(cpu, SMP_MSG_FUNCTION);
|
|
}
|
|
}
|
|
|
|
|