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;
36 cpumask_of_cpu_ptr(cpumask, (int)(long)cpu);
38 set_cpus_allowed_ptr(current, cpumask);
40 /* Ack: we are alive */
41 smp_mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */
42 atomic_inc(&stopmachine_thread_ack);
44 /* Simple state machine */
45 while (stopmachine_state != STOPMACHINE_EXIT) {
46 if (stopmachine_state == STOPMACHINE_DISABLE_IRQ
51 /* Ack: irqs disabled. */
52 smp_mb(); /* Must read state first. */
53 atomic_inc(&stopmachine_thread_ack);
54 } else if (stopmachine_state == STOPMACHINE_PREPARE
56 /* Everyone is in place, hold CPU. */
59 smp_mb(); /* Must read state first. */
60 atomic_inc(&stopmachine_thread_ack);
62 /* Yield in first stage: migration threads need to
63 * help our sisters onto their CPUs. */
64 if (!prepared && !irqs_disabled)
69 /* Ack: we are exiting. */
70 smp_mb(); /* Must read state first. */
71 atomic_inc(&stopmachine_thread_ack);
81 /* Change the thread state */
82 static void stopmachine_set_state(enum stopmachine_state state)
84 atomic_set(&stopmachine_thread_ack, 0);
86 stopmachine_state = state;
87 while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads)
91 static int stop_machine(void)
95 atomic_set(&stopmachine_thread_ack, 0);
96 stopmachine_num_threads = 0;
97 stopmachine_state = STOPMACHINE_WAIT;
99 for_each_online_cpu(i) {
100 if (i == raw_smp_processor_id())
102 ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL);
105 stopmachine_num_threads++;
108 /* Wait for them all to come to life. */
109 while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) {
114 /* If some failed, kill them all. */
116 stopmachine_set_state(STOPMACHINE_EXIT);
120 /* Now they are all started, make them hold the CPUs, ready. */
122 stopmachine_set_state(STOPMACHINE_PREPARE);
124 /* Make them disable irqs. */
127 stopmachine_set_state(STOPMACHINE_DISABLE_IRQ);
132 static void restart_machine(void)
134 stopmachine_set_state(STOPMACHINE_EXIT);
136 preempt_enable_no_resched();
139 struct stop_machine_data {
142 struct completion done;
145 static int do_stop(void *_smdata)
147 struct stop_machine_data *smdata = _smdata;
150 ret = stop_machine();
152 ret = smdata->fn(smdata->data);
156 /* We're done: you can kthread_stop us now */
157 complete(&smdata->done);
159 /* Wait for kthread_stop */
160 set_current_state(TASK_INTERRUPTIBLE);
161 while (!kthread_should_stop()) {
163 set_current_state(TASK_INTERRUPTIBLE);
165 __set_current_state(TASK_RUNNING);
169 struct task_struct *__stop_machine_run(int (*fn)(void *), void *data,
172 static DEFINE_MUTEX(stopmachine_mutex);
173 struct stop_machine_data smdata;
174 struct task_struct *p;
178 init_completion(&smdata.done);
180 mutex_lock(&stopmachine_mutex);
182 /* If they don't care which CPU fn runs on, bind to any online one. */
184 cpu = raw_smp_processor_id();
186 p = kthread_create(do_stop, &smdata, "kstopmachine");
188 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
190 /* One high-prio thread per cpu. We'll do this one. */
191 sched_setscheduler_nocheck(p, SCHED_FIFO, ¶m);
192 kthread_bind(p, cpu);
194 wait_for_completion(&smdata.done);
196 mutex_unlock(&stopmachine_mutex);
200 int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu)
202 struct task_struct *p;
205 /* No CPUs can come up or down during this. */
207 p = __stop_machine_run(fn, data, cpu);
209 ret = kthread_stop(p);
216 EXPORT_SYMBOL_GPL(stop_machine_run);