1 #include <linux/stop_machine.h>
2 #include <linux/kthread.h>
3 #include <linux/sched.h>
6 #include <linux/syscalls.h>
7 #include <asm/atomic.h>
8 #include <asm/semaphore.h>
10 /* Since we effect priority and affinity (both of which are visible
11 * to, and settable by outside processes) we do indirection via a
14 /* Thread to stop each CPU in user context. */
15 enum stopmachine_state
{
18 STOPMACHINE_DISABLE_IRQ
,
22 static enum stopmachine_state stopmachine_state
;
23 static unsigned int stopmachine_num_threads
;
24 static atomic_t stopmachine_thread_ack
;
25 static DECLARE_MUTEX(stopmachine_mutex
);
27 static int stopmachine(void *cpu
)
29 int irqs_disabled
= 0;
32 set_cpus_allowed(current
, cpumask_of_cpu((int)(long)cpu
));
34 /* Ack: we are alive */
35 mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */
36 atomic_inc(&stopmachine_thread_ack
);
38 /* Simple state machine */
39 while (stopmachine_state
!= STOPMACHINE_EXIT
) {
40 if (stopmachine_state
== STOPMACHINE_DISABLE_IRQ
44 /* Ack: irqs disabled. */
45 mb(); /* Must read state first. */
46 atomic_inc(&stopmachine_thread_ack
);
47 } else if (stopmachine_state
== STOPMACHINE_PREPARE
49 /* Everyone is in place, hold CPU. */
52 mb(); /* Must read state first. */
53 atomic_inc(&stopmachine_thread_ack
);
58 /* Ack: we are exiting. */
59 mb(); /* Must read state first. */
60 atomic_inc(&stopmachine_thread_ack
);
70 /* Change the thread state */
71 static void stopmachine_set_state(enum stopmachine_state state
)
73 atomic_set(&stopmachine_thread_ack
, 0);
75 stopmachine_state
= state
;
76 while (atomic_read(&stopmachine_thread_ack
) != stopmachine_num_threads
)
80 static int stop_machine(void)
83 struct sched_param param
= { .sched_priority
= MAX_RT_PRIO
-1 };
85 /* One high-prio thread per cpu. We'll do this one. */
86 sys_sched_setscheduler(current
->pid
, SCHED_FIFO
, ¶m
);
88 atomic_set(&stopmachine_thread_ack
, 0);
89 stopmachine_num_threads
= 0;
90 stopmachine_state
= STOPMACHINE_WAIT
;
92 for_each_online_cpu(i
) {
93 if (i
== smp_processor_id())
95 ret
= kernel_thread(stopmachine
, (void *)(long)i
,CLONE_KERNEL
);
98 stopmachine_num_threads
++;
101 /* Wait for them all to come to life. */
102 while (atomic_read(&stopmachine_thread_ack
) != stopmachine_num_threads
)
105 /* If some failed, kill them all. */
107 stopmachine_set_state(STOPMACHINE_EXIT
);
108 up(&stopmachine_mutex
);
112 /* Don't schedule us away at this point, please. */
115 /* Now they are all started, make them hold the CPUs, ready. */
116 stopmachine_set_state(STOPMACHINE_PREPARE
);
118 /* Make them disable irqs. */
119 stopmachine_set_state(STOPMACHINE_DISABLE_IRQ
);
124 static void restart_machine(void)
126 stopmachine_set_state(STOPMACHINE_EXIT
);
130 struct stop_machine_data
134 struct completion done
;
137 static int do_stop(void *_smdata
)
139 struct stop_machine_data
*smdata
= _smdata
;
142 ret
= stop_machine();
144 ret
= smdata
->fn(smdata
->data
);
148 /* We're done: you can kthread_stop us now */
149 complete(&smdata
->done
);
151 /* Wait for kthread_stop */
152 set_current_state(TASK_INTERRUPTIBLE
);
153 while (!kthread_should_stop()) {
155 set_current_state(TASK_INTERRUPTIBLE
);
157 __set_current_state(TASK_RUNNING
);
161 struct task_struct
*__stop_machine_run(int (*fn
)(void *), void *data
,
164 struct stop_machine_data smdata
;
165 struct task_struct
*p
;
169 init_completion(&smdata
.done
);
171 down(&stopmachine_mutex
);
173 /* If they don't care which CPU fn runs on, bind to any online one. */
175 cpu
= smp_processor_id();
177 p
= kthread_create(do_stop
, &smdata
, "kstopmachine");
179 kthread_bind(p
, cpu
);
181 wait_for_completion(&smdata
.done
);
183 up(&stopmachine_mutex
);
187 int stop_machine_run(int (*fn
)(void *), void *data
, unsigned int cpu
)
189 struct task_struct
*p
;
192 /* No CPUs can come up or down during this. */
194 p
= __stop_machine_run(fn
, data
, cpu
);
196 ret
= kthread_stop(p
);
199 unlock_cpu_hotplug();