|
@@ -116,15 +116,29 @@ static inline int try_stop_cpus(const struct cpumask *cpumask,
|
|
* @fn() runs.
|
|
* @fn() runs.
|
|
*
|
|
*
|
|
* This can be thought of as a very heavy write lock, equivalent to
|
|
* This can be thought of as a very heavy write lock, equivalent to
|
|
- * grabbing every spinlock in the kernel. */
|
|
|
|
|
|
+ * grabbing every spinlock in the kernel.
|
|
|
|
+ *
|
|
|
|
+ * Protects against CPU hotplug.
|
|
|
|
+ */
|
|
int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
|
|
int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
|
|
|
|
+ * @fn: the function to run
|
|
|
|
+ * @data: the data ptr for the @fn()
|
|
|
|
+ * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
|
|
|
|
+ *
|
|
|
|
+ * Same as above. Must be called from with in a cpus_read_lock() protected
|
|
|
|
+ * region. Avoids nested calls to cpus_read_lock().
|
|
|
|
+ */
|
|
|
|
+int stop_machine_cpuslocked(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_SMP || CONFIG_HOTPLUG_CPU */
|
|
#else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
|
|
|
|
|
|
-static inline int stop_machine(cpu_stop_fn_t fn, void *data,
|
|
|
|
- const struct cpumask *cpus)
|
|
|
|
|
|
+static inline int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data,
|
|
|
|
+ const struct cpumask *cpus)
|
|
{
|
|
{
|
|
unsigned long flags;
|
|
unsigned long flags;
|
|
int ret;
|
|
int ret;
|
|
@@ -134,6 +148,12 @@ static inline int stop_machine(cpu_stop_fn_t fn, void *data,
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline int stop_machine(cpu_stop_fn_t fn, void *data,
|
|
|
|
+ const struct cpumask *cpus)
|
|
|
|
+{
|
|
|
|
+ return stop_machine_cpuslocked(fn, data, cpus);
|
|
|
|
+}
|
|
|
|
+
|
|
static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
|
|
static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
|
|
const struct cpumask *cpus)
|
|
const struct cpumask *cpus)
|
|
{
|
|
{
|