Merge branch 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / stop_machine.c
CommitLineData
ffdb5976 1/* Copyright 2008, 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation.
e5582ca2
RR
2 * GPL v2 and any later version.
3 */
1da177e4
LT
4#include <linux/cpu.h>
5#include <linux/err.h>
ee527cd3
PB
6#include <linux/kthread.h>
7#include <linux/module.h>
8#include <linux/sched.h>
9#include <linux/stop_machine.h>
1da177e4 10#include <linux/syscalls.h>
a12bb444
BH
11#include <linux/interrupt.h>
12
1da177e4 13#include <asm/atomic.h>
1da177e4
LT
14#include <asm/uaccess.h>
15
ffdb5976 16/* This controls the threads on each CPU. */
1da177e4 17enum stopmachine_state {
ffdb5976
RR
18 /* Dummy starting state for thread. */
19 STOPMACHINE_NONE,
20 /* Awaiting everyone to be scheduled. */
1da177e4 21 STOPMACHINE_PREPARE,
ffdb5976 22 /* Disable interrupts. */
1da177e4 23 STOPMACHINE_DISABLE_IRQ,
ffdb5976 24 /* Run the function */
5c2aed62 25 STOPMACHINE_RUN,
ffdb5976 26 /* Exit */
1da177e4
LT
27 STOPMACHINE_EXIT,
28};
ffdb5976 29static enum stopmachine_state state;
1da177e4 30
5c2aed62
JB
31struct stop_machine_data {
32 int (*fn)(void *);
33 void *data;
ffdb5976
RR
34 int fnret;
35};
5c2aed62 36
ffdb5976
RR
37/* Like num_online_cpus(), but hotplug cpu uses us, so we need this. */
38static unsigned int num_threads;
39static atomic_t thread_ack;
40static struct completion finished;
41static DEFINE_MUTEX(lock);
1da177e4 42
ffdb5976 43static void set_state(enum stopmachine_state newstate)
1da177e4 44{
ffdb5976
RR
45 /* Reset ack counter. */
46 atomic_set(&thread_ack, num_threads);
47 smp_wmb();
48 state = newstate;
1da177e4
LT
49}
50
ffdb5976
RR
51/* Last one to ack a state moves to the next state. */
52static void ack_state(void)
1da177e4 53{
ffdb5976
RR
54 if (atomic_dec_and_test(&thread_ack)) {
55 /* If we're the last one to ack the EXIT, we're finished. */
56 if (state == STOPMACHINE_EXIT)
57 complete(&finished);
58 else
59 set_state(state + 1);
60 }
1da177e4
LT
61}
62
ffdb5976
RR
63/* This is the actual thread which stops the CPU. It exits by itself rather
64 * than waiting for kthread_stop(), because it's easier for hotplug CPU. */
65static int stop_cpu(struct stop_machine_data *smdata)
1da177e4 66{
ffdb5976
RR
67 enum stopmachine_state curstate = STOPMACHINE_NONE;
68 int uninitialized_var(ret);
1da177e4 69
ffdb5976
RR
70 /* Simple state machine */
71 do {
72 /* Chill out and ensure we re-read stopmachine_state. */
3401a61e 73 cpu_relax();
ffdb5976
RR
74 if (state != curstate) {
75 curstate = state;
76 switch (curstate) {
77 case STOPMACHINE_DISABLE_IRQ:
78 local_irq_disable();
79 hard_irq_disable();
80 break;
81 case STOPMACHINE_RUN:
82 /* |= allows error detection if functions on
83 * multiple CPUs. */
84 smdata->fnret |= smdata->fn(smdata->data);
85 break;
86 default:
87 break;
88 }
89 ack_state();
90 }
91 } while (curstate != STOPMACHINE_EXIT);
1da177e4 92
1da177e4 93 local_irq_enable();
ffdb5976 94 do_exit(0);
1da177e4
LT
95}
96
ffdb5976
RR
97/* Callback for CPUs which aren't supposed to do anything. */
98static int chill(void *unused)
5c2aed62 99{
ffdb5976 100 return 0;
5c2aed62 101}
1da177e4 102
eeec4fad 103int __stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus)
1da177e4 104{
ffdb5976
RR
105 int i, err;
106 struct stop_machine_data active, idle;
107 struct task_struct **threads;
108
109 active.fn = fn;
110 active.data = data;
111 active.fnret = 0;
112 idle.fn = chill;
113 idle.data = NULL;
114
ffdb5976
RR
115 /* This could be too big for stack on large machines. */
116 threads = kcalloc(NR_CPUS, sizeof(threads[0]), GFP_KERNEL);
117 if (!threads)
118 return -ENOMEM;
119
120 /* Set up initial state. */
121 mutex_lock(&lock);
122 init_completion(&finished);
123 num_threads = num_online_cpus();
124 set_state(STOPMACHINE_PREPARE);
1da177e4 125
ffdb5976 126 for_each_online_cpu(i) {
eeec4fad 127 struct stop_machine_data *smdata = &idle;
ffdb5976 128 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
1da177e4 129
eeec4fad
RR
130 if (!cpus) {
131 if (i == first_cpu(cpu_online_map))
132 smdata = &active;
133 } else {
134 if (cpu_isset(i, *cpus))
135 smdata = &active;
136 }
ffdb5976
RR
137
138 threads[i] = kthread_create((void *)stop_cpu, smdata, "kstop%u",
139 i);
140 if (IS_ERR(threads[i])) {
141 err = PTR_ERR(threads[i]);
142 threads[i] = NULL;
143 goto kill_threads;
144 }
1da177e4 145
ffdb5976
RR
146 /* Place it onto correct cpu. */
147 kthread_bind(threads[i], i);
1da177e4 148
ffdb5976
RR
149 /* Make it highest prio. */
150 if (sched_setscheduler_nocheck(threads[i], SCHED_FIFO, &param))
151 BUG();
152 }
1da177e4 153
ffdb5976
RR
154 /* We've created all the threads. Wake them all: hold this CPU so one
155 * doesn't hit this CPU until we're ready. */
eeec4fad 156 get_cpu();
ffdb5976
RR
157 for_each_online_cpu(i)
158 wake_up_process(threads[i]);
5c2aed62 159
ffdb5976
RR
160 /* This will release the thread on our CPU. */
161 put_cpu();
162 wait_for_completion(&finished);
163 mutex_unlock(&lock);
1da177e4 164
ffdb5976 165 kfree(threads);
1da177e4 166
ffdb5976 167 return active.fnret;
1da177e4 168
ffdb5976
RR
169kill_threads:
170 for_each_online_cpu(i)
171 if (threads[i])
172 kthread_stop(threads[i]);
173 mutex_unlock(&lock);
85653af7 174
ffdb5976
RR
175 kfree(threads);
176 return err;
1da177e4
LT
177}
178
eeec4fad 179int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus)
1da177e4 180{
1da177e4
LT
181 int ret;
182
183 /* No CPUs can come up or down during this. */
86ef5c9a 184 get_online_cpus();
eeec4fad 185 ret = __stop_machine(fn, data, cpus);
86ef5c9a 186 put_online_cpus();
1da177e4
LT
187
188 return ret;
189}
eeec4fad 190EXPORT_SYMBOL_GPL(stop_machine);