Rusty Russell | e5582ca | 2006-09-29 02:01:35 -0700 | [diff] [blame] | 1 | /* Copyright 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation. |
| 2 | * GPL v2 and any later version. |
| 3 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/cpu.h> |
| 5 | #include <linux/err.h> |
Prarit Bhargava | ee527cd | 2007-05-08 00:25:08 -0700 | [diff] [blame] | 6 | #include <linux/kthread.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/sched.h> |
| 9 | #include <linux/stop_machine.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/syscalls.h> |
Benjamin Herrenschmidt | a12bb44 | 2007-05-10 22:22:47 -0700 | [diff] [blame] | 11 | #include <linux/interrupt.h> |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/uaccess.h> |
| 15 | |
| 16 | /* Since we effect priority and affinity (both of which are visible |
| 17 | * to, and settable by outside processes) we do indirection via a |
| 18 | * kthread. */ |
| 19 | |
| 20 | /* Thread to stop each CPU in user context. */ |
| 21 | enum stopmachine_state { |
| 22 | STOPMACHINE_WAIT, |
| 23 | STOPMACHINE_PREPARE, |
| 24 | STOPMACHINE_DISABLE_IRQ, |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 25 | STOPMACHINE_RUN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | STOPMACHINE_EXIT, |
| 27 | }; |
| 28 | |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 29 | struct stop_machine_data { |
| 30 | int (*fn)(void *); |
| 31 | void *data; |
| 32 | struct completion done; |
| 33 | int run_all; |
| 34 | } smdata; |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static enum stopmachine_state stopmachine_state; |
| 37 | static unsigned int stopmachine_num_threads; |
| 38 | static atomic_t stopmachine_thread_ack; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 40 | static int stopmachine(void *cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
| 42 | int irqs_disabled = 0; |
| 43 | int prepared = 0; |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 44 | int ran = 0; |
Mike Travis | 65c0118 | 2008-07-15 14:14:30 -0700 | [diff] [blame] | 45 | cpumask_of_cpu_ptr(cpumask, (int)(long)cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Mike Travis | 65c0118 | 2008-07-15 14:14:30 -0700 | [diff] [blame] | 47 | set_cpus_allowed_ptr(current, cpumask); |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* Ack: we are alive */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 50 | smp_mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | atomic_inc(&stopmachine_thread_ack); |
| 52 | |
| 53 | /* Simple state machine */ |
| 54 | while (stopmachine_state != STOPMACHINE_EXIT) { |
| 55 | if (stopmachine_state == STOPMACHINE_DISABLE_IRQ |
| 56 | && !irqs_disabled) { |
| 57 | local_irq_disable(); |
Benjamin Herrenschmidt | a12bb44 | 2007-05-10 22:22:47 -0700 | [diff] [blame] | 58 | hard_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | irqs_disabled = 1; |
| 60 | /* Ack: irqs disabled. */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 61 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | atomic_inc(&stopmachine_thread_ack); |
| 63 | } else if (stopmachine_state == STOPMACHINE_PREPARE |
| 64 | && !prepared) { |
| 65 | /* Everyone is in place, hold CPU. */ |
| 66 | preempt_disable(); |
| 67 | prepared = 1; |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 68 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | atomic_inc(&stopmachine_thread_ack); |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 70 | } else if (stopmachine_state == STOPMACHINE_RUN && !ran) { |
| 71 | smdata.fn(smdata.data); |
| 72 | ran = 1; |
| 73 | smp_mb(); /* Must read state first. */ |
| 74 | atomic_inc(&stopmachine_thread_ack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | /* Yield in first stage: migration threads need to |
| 77 | * help our sisters onto their CPUs. */ |
| 78 | if (!prepared && !irqs_disabled) |
| 79 | yield(); |
Christian Borntraeger | 3401a61e | 2008-05-08 15:20:38 +0200 | [diff] [blame] | 80 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* Ack: we are exiting. */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 84 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | atomic_inc(&stopmachine_thread_ack); |
| 86 | |
| 87 | if (irqs_disabled) |
| 88 | local_irq_enable(); |
| 89 | if (prepared) |
| 90 | preempt_enable(); |
| 91 | |
| 92 | return 0; |
| 93 | } |
| 94 | |
| 95 | /* Change the thread state */ |
| 96 | static void stopmachine_set_state(enum stopmachine_state state) |
| 97 | { |
| 98 | atomic_set(&stopmachine_thread_ack, 0); |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 99 | smp_wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | stopmachine_state = state; |
| 101 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) |
| 102 | cpu_relax(); |
| 103 | } |
| 104 | |
| 105 | static int stop_machine(void) |
| 106 | { |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 107 | int i, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | atomic_set(&stopmachine_thread_ack, 0); |
| 110 | stopmachine_num_threads = 0; |
| 111 | stopmachine_state = STOPMACHINE_WAIT; |
| 112 | |
| 113 | for_each_online_cpu(i) { |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 114 | if (i == raw_smp_processor_id()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | continue; |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 116 | ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL); |
| 117 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | break; |
| 119 | stopmachine_num_threads++; |
| 120 | } |
| 121 | |
| 122 | /* Wait for them all to come to life. */ |
Christian Borntraeger | 3401a61e | 2008-05-08 15:20:38 +0200 | [diff] [blame] | 123 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | yield(); |
Christian Borntraeger | 3401a61e | 2008-05-08 15:20:38 +0200 | [diff] [blame] | 125 | cpu_relax(); |
| 126 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | /* If some failed, kill them all. */ |
| 129 | if (ret < 0) { |
| 130 | stopmachine_set_state(STOPMACHINE_EXIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return ret; |
| 132 | } |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | /* Now they are all started, make them hold the CPUs, ready. */ |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 135 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | stopmachine_set_state(STOPMACHINE_PREPARE); |
| 137 | |
| 138 | /* Make them disable irqs. */ |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 139 | local_irq_disable(); |
Benjamin Herrenschmidt | a12bb44 | 2007-05-10 22:22:47 -0700 | [diff] [blame] | 140 | hard_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | stopmachine_set_state(STOPMACHINE_DISABLE_IRQ); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static void restart_machine(void) |
| 147 | { |
| 148 | stopmachine_set_state(STOPMACHINE_EXIT); |
| 149 | local_irq_enable(); |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 150 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 153 | static void run_other_cpus(void) |
| 154 | { |
| 155 | stopmachine_set_state(STOPMACHINE_RUN); |
| 156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | static int do_stop(void *_smdata) |
| 159 | { |
| 160 | struct stop_machine_data *smdata = _smdata; |
| 161 | int ret; |
| 162 | |
| 163 | ret = stop_machine(); |
| 164 | if (ret == 0) { |
| 165 | ret = smdata->fn(smdata->data); |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 166 | if (smdata->run_all) |
| 167 | run_other_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | restart_machine(); |
| 169 | } |
| 170 | |
| 171 | /* We're done: you can kthread_stop us now */ |
| 172 | complete(&smdata->done); |
| 173 | |
| 174 | /* Wait for kthread_stop */ |
| 175 | set_current_state(TASK_INTERRUPTIBLE); |
| 176 | while (!kthread_should_stop()) { |
| 177 | schedule(); |
| 178 | set_current_state(TASK_INTERRUPTIBLE); |
| 179 | } |
| 180 | __set_current_state(TASK_RUNNING); |
| 181 | return ret; |
| 182 | } |
| 183 | |
| 184 | struct task_struct *__stop_machine_run(int (*fn)(void *), void *data, |
| 185 | unsigned int cpu) |
| 186 | { |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 187 | static DEFINE_MUTEX(stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | struct stop_machine_data smdata; |
| 189 | struct task_struct *p; |
| 190 | |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 191 | mutex_lock(&stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 193 | smdata.fn = fn; |
| 194 | smdata.data = data; |
| 195 | smdata.run_all = (cpu == ALL_CPUS) ? 1 : 0; |
| 196 | init_completion(&smdata.done); |
| 197 | |
| 198 | smp_wmb(); /* make sure other cpus see smdata updates */ |
| 199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | /* If they don't care which CPU fn runs on, bind to any online one. */ |
Jason Baron | 5c2aed6 | 2008-02-28 11:33:03 -0500 | [diff] [blame^] | 201 | if (cpu == NR_CPUS || cpu == ALL_CPUS) |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 202 | cpu = raw_smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | p = kthread_create(do_stop, &smdata, "kstopmachine"); |
| 205 | if (!IS_ERR(p)) { |
Satoru Takeuchi | 85653af | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 206 | struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; |
| 207 | |
| 208 | /* One high-prio thread per cpu. We'll do this one. */ |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 209 | sched_setscheduler_nocheck(p, SCHED_FIFO, ¶m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | kthread_bind(p, cpu); |
| 211 | wake_up_process(p); |
| 212 | wait_for_completion(&smdata.done); |
| 213 | } |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 214 | mutex_unlock(&stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | return p; |
| 216 | } |
| 217 | |
| 218 | int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu) |
| 219 | { |
| 220 | struct task_struct *p; |
| 221 | int ret; |
| 222 | |
| 223 | /* No CPUs can come up or down during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 224 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | p = __stop_machine_run(fn, data, cpu); |
| 226 | if (!IS_ERR(p)) |
| 227 | ret = kthread_stop(p); |
| 228 | else |
| 229 | ret = PTR_ERR(p); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 230 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | return ret; |
| 233 | } |
Prarit Bhargava | ee527cd | 2007-05-08 00:25:08 -0700 | [diff] [blame] | 234 | EXPORT_SYMBOL_GPL(stop_machine_run); |