1#ifndef _LINUX_STOP_MACHINE
2#define _LINUX_STOP_MACHINE
3
4#include <linux/cpu.h>
5#include <linux/cpumask.h>
6#include <linux/smp.h>
7#include <linux/list.h>
8
9
10
11
12
13
14
15
16
17
18
19typedef int (*cpu_stop_fn_t)(void *arg);
20
21#ifdef CONFIG_SMP
22
23struct cpu_stop_work {
24 struct list_head list;
25 cpu_stop_fn_t fn;
26 void *arg;
27 struct cpu_stop_done *done;
28};
29
30int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg);
31int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg);
32void stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg,
33 struct cpu_stop_work *work_buf);
34int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
35int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
36void stop_machine_park(int cpu);
37
38#else
39
40#include <linux/workqueue.h>
41
42struct cpu_stop_work {
43 struct work_struct work;
44 cpu_stop_fn_t fn;
45 void *arg;
46};
47
48static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg)
49{
50 int ret = -ENOENT;
51 preempt_disable();
52 if (cpu == smp_processor_id())
53 ret = fn(arg);
54 preempt_enable();
55 return ret;
56}
57
58static void stop_one_cpu_nowait_workfn(struct work_struct *work)
59{
60 struct cpu_stop_work *stwork =
61 container_of(work, struct cpu_stop_work, work);
62 preempt_disable();
63 stwork->fn(stwork->arg);
64 preempt_enable();
65}
66
67static inline void stop_one_cpu_nowait(unsigned int cpu,
68 cpu_stop_fn_t fn, void *arg,
69 struct cpu_stop_work *work_buf)
70{
71 if (cpu == smp_processor_id()) {
72 INIT_WORK(&work_buf->work, stop_one_cpu_nowait_workfn);
73 work_buf->fn = fn;
74 work_buf->arg = arg;
75 schedule_work(&work_buf->work);
76 }
77}
78
79static inline int stop_cpus(const struct cpumask *cpumask,
80 cpu_stop_fn_t fn, void *arg)
81{
82 if (cpumask_test_cpu(raw_smp_processor_id(), cpumask))
83 return stop_one_cpu(raw_smp_processor_id(), fn, arg);
84 return -ENOENT;
85}
86
87static inline int try_stop_cpus(const struct cpumask *cpumask,
88 cpu_stop_fn_t fn, void *arg)
89{
90 return stop_cpus(cpumask, fn, arg);
91}
92
93#endif
94
95
96
97
98
99
100
101#if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP)
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116int stop_machine(int (*fn)(void *), void *data, const struct cpumask *cpus);
117
118
119
120
121
122
123
124
125
126
127int __stop_machine(int (*fn)(void *), void *data, const struct cpumask *cpus);
128
129int stop_machine_from_inactive_cpu(int (*fn)(void *), void *data,
130 const struct cpumask *cpus);
131
132#else
133
134static inline int __stop_machine(int (*fn)(void *), void *data,
135 const struct cpumask *cpus)
136{
137 unsigned long flags;
138 int ret;
139 local_irq_save(flags);
140 ret = fn(data);
141 local_irq_restore(flags);
142 return ret;
143}
144
145static inline int stop_machine(int (*fn)(void *), void *data,
146 const struct cpumask *cpus)
147{
148 return __stop_machine(fn, data, cpus);
149}
150
151static inline int stop_machine_from_inactive_cpu(int (*fn)(void *), void *data,
152 const struct cpumask *cpus)
153{
154 return __stop_machine(fn, data, cpus);
155}
156
157#endif
158#endif
159