|
@@ -43,11 +43,12 @@ static void ssmtc_send_ipi_single(int cpu, unsigned int action)
|
|
|
/* "CPU" may be TC of same VPE, VPE of same CPU, or different CPU */
|
|
|
}
|
|
|
|
|
|
-static inline void ssmtc_send_ipi_mask(cpumask_t mask, unsigned int action)
|
|
|
+static inline void ssmtc_send_ipi_mask(const struct cpumask *mask,
|
|
|
+ unsigned int action)
|
|
|
{
|
|
|
unsigned int i;
|
|
|
|
|
|
- for_each_cpu_mask(i, mask)
|
|
|
+ for_each_cpu(i, mask)
|
|
|
ssmtc_send_ipi_single(i, action);
|
|
|
}
|
|
|
|