1 /* Copyright 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation.
2 * GPL v2 and any later version.
6 #include <linux/kthread.h>
7 #include <linux/module.h>
8 #include <linux/sched.h>
9 #include <linux/stop_machine.h>
10 #include <linux/syscalls.h>
11 #include <linux/interrupt.h>
13 #include <asm/atomic.h>
14 #include <asm/uaccess.h>
16 /* Since we effect priority and affinity (both of which are visible
17 * to, and settable by outside processes) we do indirection via a
20 /* Thread to stop each CPU in user context. */
21 enum stopmachine_state {
24 STOPMACHINE_DISABLE_IRQ,
28 static enum stopmachine_state stopmachine_state;
29 static unsigned int stopmachine_num_threads;
30 static atomic_t stopmachine_thread_ack;
32 static int stopmachine(void *cpu)
34 int irqs_disabled = 0;
37 set_cpus_allowed_ptr(current, &cpumask_of_cpu((int)(long)cpu));
39 /* Ack: we are alive */
40 smp_mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */
41 atomic_inc(&stopmachine_thread_ack);
43 /* Simple state machine */
44 while (stopmachine_state != STOPMACHINE_EXIT) {
45 if (stopmachine_state == STOPMACHINE_DISABLE_IRQ
50 /* Ack: irqs disabled. */
51 smp_mb(); /* Must read state first. */
52 atomic_inc(&stopmachine_thread_ack);
53 } else if (stopmachine_state == STOPMACHINE_PREPARE
55 /* Everyone is in place, hold CPU. */
58 smp_mb(); /* Must read state first. */
59 atomic_inc(&stopmachine_thread_ack);
61 /* Yield in first stage: migration threads need to
62 * help our sisters onto their CPUs. */
63 if (!prepared && !irqs_disabled)
68 /* Ack: we are exiting. */
69 smp_mb(); /* Must read state first. */
70 atomic_inc(&stopmachine_thread_ack);
80 /* Change the thread state */
81 static void stopmachine_set_state(enum stopmachine_state state)
83 atomic_set(&stopmachine_thread_ack, 0);
85 stopmachine_state = state;
86 while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads)
90 static int stop_machine(void)
94 atomic_set(&stopmachine_thread_ack, 0);
95 stopmachine_num_threads = 0;
96 stopmachine_state = STOPMACHINE_WAIT;
98 for_each_online_cpu(i) {
99 if (i == raw_smp_processor_id())
101 ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL);
104 stopmachine_num_threads++;
107 /* Wait for them all to come to life. */
108 while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) {
113 /* If some failed, kill them all. */
115 stopmachine_set_state(STOPMACHINE_EXIT);
119 /* Now they are all started, make them hold the CPUs, ready. */
121 stopmachine_set_state(STOPMACHINE_PREPARE);
123 /* Make them disable irqs. */
126 stopmachine_set_state(STOPMACHINE_DISABLE_IRQ);
131 static void restart_machine(void)
133 stopmachine_set_state(STOPMACHINE_EXIT);
135 preempt_enable_no_resched();
138 struct stop_machine_data {
141 struct completion done;
144 static int do_stop(void *_smdata)
146 struct stop_machine_data *smdata = _smdata;
149 ret = stop_machine();
151 ret = smdata->fn(smdata->data);
155 /* We're done: you can kthread_stop us now */
156 complete(&smdata->done);
158 /* Wait for kthread_stop */
159 set_current_state(TASK_INTERRUPTIBLE);
160 while (!kthread_should_stop()) {
162 set_current_state(TASK_INTERRUPTIBLE);
164 __set_current_state(TASK_RUNNING);
168 struct task_struct *__stop_machine_run(int (*fn)(void *), void *data,
171 static DEFINE_MUTEX(stopmachine_mutex);
172 struct stop_machine_data smdata;
173 struct task_struct *p;
177 init_completion(&smdata.done);
179 mutex_lock(&stopmachine_mutex);
181 /* If they don't care which CPU fn runs on, bind to any online one. */
183 cpu = raw_smp_processor_id();
185 p = kthread_create(do_stop, &smdata, "kstopmachine");
187 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
189 /* One high-prio thread per cpu. We'll do this one. */
190 sched_setscheduler(p, SCHED_FIFO, ¶m);
191 kthread_bind(p, cpu);
193 wait_for_completion(&smdata.done);
195 mutex_unlock(&stopmachine_mutex);
199 int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu)
201 struct task_struct *p;
204 /* No CPUs can come up or down during this. */
206 p = __stop_machine_run(fn, data, cpu);
208 ret = kthread_stop(p);
215 EXPORT_SYMBOL_GPL(stop_machine_run);