blob: 6d3635c86dbeb03fa8d78fe661993aa3b87f5a52 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_STOP_MACHINE
3#define _LINUX_STOP_MACHINE
Tejun Heo1142d812010-05-06 18:49:20 +02004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/cpu.h>
Rusty Russelleeec4fa2008-07-28 12:16:30 -05006#include <linux/cpumask.h>
Paul Gortmakerbb2eac62011-07-17 17:11:26 -04007#include <linux/smp.h>
Tejun Heo1142d812010-05-06 18:49:20 +02008#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Tejun Heo1142d812010-05-06 18:49:20 +020010/*
11 * stop_cpu[s]() is simplistic per-cpu maximum priority cpu
12 * monopolization mechanism. The caller can specify a non-sleeping
13 * function to be executed on a single or multiple cpus preempting all
14 * other processes and monopolizing those cpus until it finishes.
15 *
16 * Resources for this mechanism are preallocated when a cpu is brought
17 * up and requests are guaranteed to be served as long as the target
18 * cpus are online.
19 */
Tejun Heo1142d812010-05-06 18:49:20 +020020typedef int (*cpu_stop_fn_t)(void *arg);
21
Tejun Heobbf1bb32010-05-08 16:20:53 +020022#ifdef CONFIG_SMP
23
Tejun Heo1142d812010-05-06 18:49:20 +020024struct cpu_stop_work {
25 struct list_head list; /* cpu_stopper->works */
26 cpu_stop_fn_t fn;
27 void *arg;
28 struct cpu_stop_done *done;
29};
30
31int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg);
Peter Zijlstra1be0bd772013-10-07 11:29:15 +010032int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg);
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010033bool stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg,
Tejun Heo1142d812010-05-06 18:49:20 +020034 struct cpu_stop_work *work_buf);
35int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
36int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
Oleg Nesterov233e7f22015-10-08 16:51:31 +020037void stop_machine_park(int cpu);
Oleg Nesterovc00166d2015-10-09 18:00:49 +020038void stop_machine_unpark(int cpu);
Tejun Heo1142d812010-05-06 18:49:20 +020039
Tejun Heobbf1bb32010-05-08 16:20:53 +020040#else /* CONFIG_SMP */
41
42#include <linux/workqueue.h>
43
44struct cpu_stop_work {
45 struct work_struct work;
46 cpu_stop_fn_t fn;
47 void *arg;
48};
49
50static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg)
51{
52 int ret = -ENOENT;
53 preempt_disable();
54 if (cpu == smp_processor_id())
55 ret = fn(arg);
56 preempt_enable();
57 return ret;
58}
59
60static void stop_one_cpu_nowait_workfn(struct work_struct *work)
61{
62 struct cpu_stop_work *stwork =
63 container_of(work, struct cpu_stop_work, work);
64 preempt_disable();
65 stwork->fn(stwork->arg);
66 preempt_enable();
67}
68
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010069static inline bool stop_one_cpu_nowait(unsigned int cpu,
Tejun Heobbf1bb32010-05-08 16:20:53 +020070 cpu_stop_fn_t fn, void *arg,
71 struct cpu_stop_work *work_buf)
72{
73 if (cpu == smp_processor_id()) {
74 INIT_WORK(&work_buf->work, stop_one_cpu_nowait_workfn);
75 work_buf->fn = fn;
76 work_buf->arg = arg;
77 schedule_work(&work_buf->work);
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010078 return true;
Tejun Heobbf1bb32010-05-08 16:20:53 +020079 }
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010080
81 return false;
Tejun Heobbf1bb32010-05-08 16:20:53 +020082}
83
84static inline int stop_cpus(const struct cpumask *cpumask,
85 cpu_stop_fn_t fn, void *arg)
86{
87 if (cpumask_test_cpu(raw_smp_processor_id(), cpumask))
88 return stop_one_cpu(raw_smp_processor_id(), fn, arg);
89 return -ENOENT;
90}
91
92static inline int try_stop_cpus(const struct cpumask *cpumask,
93 cpu_stop_fn_t fn, void *arg)
94{
95 return stop_cpus(cpumask, fn, arg);
96}
97
98#endif /* CONFIG_SMP */
99
Tejun Heo1142d812010-05-06 18:49:20 +0200100/*
101 * stop_machine "Bogolock": stop the entire machine, disable
102 * interrupts. This is a very heavy lock, which is equivalent to
103 * grabbing every spinlock (and more). So the "read" side to such a
Jonathan Neuschäfer18163152011-06-19 11:50:22 +0200104 * lock is anything which disables preemption.
Tejun Heo1142d812010-05-06 18:49:20 +0200105 */
Chris Wilson86fffe42015-12-11 13:40:46 -0800106#if defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
Tejun Heo1142d812010-05-06 18:49:20 +0200107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
Rusty Russelleeec4fa2008-07-28 12:16:30 -0500109 * stop_machine: freeze the machine on all CPUs and run this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * @fn: the function to run
111 * @data: the data ptr for the @fn()
Rusty Russelleeec4fa2008-07-28 12:16:30 -0500112 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
Rusty Russellffdb5972008-07-28 12:16:28 -0500114 * Description: This causes a thread to be scheduled on every cpu,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300115 * each of which disables interrupts. The result is that no one is
Rusty Russellffdb5972008-07-28 12:16:28 -0500116 * holding a spinlock or inside any other preempt-disabled region when
117 * @fn() runs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
119 * This can be thought of as a very heavy write lock, equivalent to
Sebastian Andrzej Siewiorfe5595c2017-05-24 10:15:16 +0200120 * grabbing every spinlock in the kernel.
121 *
122 * Protects against CPU hotplug.
123 */
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200124int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Sebastian Andrzej Siewiorfe5595c2017-05-24 10:15:16 +0200126/**
127 * stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
128 * @fn: the function to run
129 * @data: the data ptr for the @fn()
130 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
131 *
132 * Same as above. Must be called from with in a cpus_read_lock() protected
133 * region. Avoids nested calls to cpus_read_lock().
134 */
135int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
136
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200137int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
Tejun Heof740e6cd2011-06-23 11:19:28 -0700138 const struct cpumask *cpus);
Chris Wilson86fffe42015-12-11 13:40:46 -0800139#else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Sebastian Andrzej Siewiorfe5595c2017-05-24 10:15:16 +0200141static inline int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data,
142 const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Tejun Heof740e6cd2011-06-23 11:19:28 -0700144 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int ret;
Tejun Heof740e6cd2011-06-23 11:19:28 -0700146 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ret = fn(data);
Tejun Heof740e6cd2011-06-23 11:19:28 -0700148 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return ret;
150}
Heiko Carstens9ea09af2008-12-22 12:36:30 +0100151
Sebastian Andrzej Siewiorfe5595c2017-05-24 10:15:16 +0200152static inline int stop_machine(cpu_stop_fn_t fn, void *data,
153 const struct cpumask *cpus)
154{
155 return stop_machine_cpuslocked(fn, data, cpus);
156}
157
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200158static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
Tejun Heof740e6cd2011-06-23 11:19:28 -0700159 const struct cpumask *cpus)
160{
Oleg Nesterov7eeb0882015-06-30 03:29:51 +0200161 return stop_machine(fn, data, cpus);
Tejun Heof740e6cd2011-06-23 11:19:28 -0700162}
163
Chris Wilson86fffe42015-12-11 13:40:46 -0800164#endif /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
Tejun Heobbf1bb32010-05-08 16:20:53 +0200165#endif /* _LINUX_STOP_MACHINE */