1 /* Copyright 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation.
2 * GPL v2 and any later version.
4 #include <linux/stop_machine.h>
5 #include <linux/kthread.h>
6 #include <linux/sched.h>
9 #include <linux/syscalls.h>
10 #include <asm/atomic.h>
11 #include <asm/semaphore.h>
12 #include <asm/uaccess.h>
14 /* Since we effect priority and affinity (both of which are visible
15 * to, and settable by outside processes) we do indirection via a
18 /* Thread to stop each CPU in user context. */
19 enum stopmachine_state {
22 STOPMACHINE_DISABLE_IRQ,
26 static enum stopmachine_state stopmachine_state;
27 static unsigned int stopmachine_num_threads;
28 static atomic_t stopmachine_thread_ack;
29 static DECLARE_MUTEX(stopmachine_mutex);
31 static int stopmachine(void *cpu)
33 int irqs_disabled = 0;
36 set_cpus_allowed(current, cpumask_of_cpu((int)(long)cpu));
38 /* Ack: we are alive */
39 smp_mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */
40 atomic_inc(&stopmachine_thread_ack);
42 /* Simple state machine */
43 while (stopmachine_state != STOPMACHINE_EXIT) {
44 if (stopmachine_state == STOPMACHINE_DISABLE_IRQ
48 /* Ack: irqs disabled. */
49 smp_mb(); /* Must read state first. */
50 atomic_inc(&stopmachine_thread_ack);
51 } else if (stopmachine_state == STOPMACHINE_PREPARE
53 /* Everyone is in place, hold CPU. */
56 smp_mb(); /* Must read state first. */
57 atomic_inc(&stopmachine_thread_ack);
59 /* Yield in first stage: migration threads need to
60 * help our sisters onto their CPUs. */
61 if (!prepared && !irqs_disabled)
67 /* Ack: we are exiting. */
68 smp_mb(); /* Must read state first. */
69 atomic_inc(&stopmachine_thread_ack);
79 /* Change the thread state */
80 static void stopmachine_set_state(enum stopmachine_state state)
82 atomic_set(&stopmachine_thread_ack, 0);
84 stopmachine_state = state;
85 while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads)
89 static int stop_machine(void)
92 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
94 /* One high-prio thread per cpu. We'll do this one. */
95 sched_setscheduler(current, SCHED_FIFO, ¶m);
97 atomic_set(&stopmachine_thread_ack, 0);
98 stopmachine_num_threads = 0;
99 stopmachine_state = STOPMACHINE_WAIT;
101 for_each_online_cpu(i) {
102 if (i == raw_smp_processor_id())
104 ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL);
107 stopmachine_num_threads++;
110 /* Wait for them all to come to life. */
111 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. */
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
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 struct stop_machine_data smdata;
173 struct task_struct *p;
177 init_completion(&smdata.done);
179 down(&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 kthread_bind(p, cpu);
189 wait_for_completion(&smdata.done);
191 up(&stopmachine_mutex);
195 int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu)
197 struct task_struct *p;
200 /* No CPUs can come up or down during this. */
202 p = __stop_machine_run(fn, data, cpu);
204 ret = kthread_stop(p);
207 unlock_cpu_hotplug();