|
@@ -99,7 +99,7 @@ static inline int try_stop_cpus(const struct cpumask *cpumask,
|
|
* grabbing every spinlock (and more). So the "read" side to such a
|
|
* grabbing every spinlock (and more). So the "read" side to such a
|
|
* lock is anything which disables preemption.
|
|
* lock is anything which disables preemption.
|
|
*/
|
|
*/
|
|
-#if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP)
|
|
|
|
|
|
+#if defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
|
|
|
|
|
|
/**
|
|
/**
|
|
* stop_machine: freeze the machine on all CPUs and run this function
|
|
* stop_machine: freeze the machine on all CPUs and run this function
|
|
@@ -118,7 +118,7 @@ int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
|
|
|
|
|
|
int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
|
|
int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
|
|
const struct cpumask *cpus);
|
|
const struct cpumask *cpus);
|
|
-#else /* CONFIG_STOP_MACHINE && CONFIG_SMP */
|
|
|
|
|
|
+#else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
|
|
|
|
|
|
static inline int stop_machine(cpu_stop_fn_t fn, void *data,
|
|
static inline int stop_machine(cpu_stop_fn_t fn, void *data,
|
|
const struct cpumask *cpus)
|
|
const struct cpumask *cpus)
|
|
@@ -137,5 +137,5 @@ static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
|
|
return stop_machine(fn, data, cpus);
|
|
return stop_machine(fn, data, cpus);
|
|
}
|
|
}
|
|
|
|
|
|
-#endif /* CONFIG_STOP_MACHINE && CONFIG_SMP */
|
|
|
|
|
|
+#endif /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
|
|
#endif /* _LINUX_STOP_MACHINE */
|
|
#endif /* _LINUX_STOP_MACHINE */
|