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, |
| 25 | STOPMACHINE_EXIT, |
| 26 | }; |
| 27 | |
| 28 | static enum stopmachine_state stopmachine_state; |
| 29 | static unsigned int stopmachine_num_threads; |
| 30 | static atomic_t stopmachine_thread_ack; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 32 | static int stopmachine(void *cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
| 34 | int irqs_disabled = 0; |
| 35 | int prepared = 0; |
| 36 | |
Mike Travis | f70316d | 2008-04-04 18:11:06 -0700 | [diff] [blame] | 37 | set_cpus_allowed_ptr(current, &cpumask_of_cpu((int)(long)cpu)); |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* Ack: we are alive */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 40 | 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] | 41 | atomic_inc(&stopmachine_thread_ack); |
| 42 | |
| 43 | /* Simple state machine */ |
| 44 | while (stopmachine_state != STOPMACHINE_EXIT) { |
| 45 | if (stopmachine_state == STOPMACHINE_DISABLE_IRQ |
| 46 | && !irqs_disabled) { |
| 47 | local_irq_disable(); |
Benjamin Herrenschmidt | a12bb44 | 2007-05-10 22:22:47 -0700 | [diff] [blame] | 48 | hard_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | irqs_disabled = 1; |
| 50 | /* Ack: irqs disabled. */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 51 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | atomic_inc(&stopmachine_thread_ack); |
| 53 | } else if (stopmachine_state == STOPMACHINE_PREPARE |
| 54 | && !prepared) { |
| 55 | /* Everyone is in place, hold CPU. */ |
| 56 | preempt_disable(); |
| 57 | prepared = 1; |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 58 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | atomic_inc(&stopmachine_thread_ack); |
| 60 | } |
| 61 | /* Yield in first stage: migration threads need to |
| 62 | * help our sisters onto their CPUs. */ |
| 63 | if (!prepared && !irqs_disabled) |
| 64 | yield(); |
| 65 | else |
| 66 | cpu_relax(); |
| 67 | } |
| 68 | |
| 69 | /* Ack: we are exiting. */ |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 70 | smp_mb(); /* Must read state first. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | atomic_inc(&stopmachine_thread_ack); |
| 72 | |
| 73 | if (irqs_disabled) |
| 74 | local_irq_enable(); |
| 75 | if (prepared) |
| 76 | preempt_enable(); |
| 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | /* Change the thread state */ |
| 82 | static void stopmachine_set_state(enum stopmachine_state state) |
| 83 | { |
| 84 | atomic_set(&stopmachine_thread_ack, 0); |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 85 | smp_wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | stopmachine_state = state; |
| 87 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) |
| 88 | cpu_relax(); |
| 89 | } |
| 90 | |
| 91 | static int stop_machine(void) |
| 92 | { |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 93 | int i, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | atomic_set(&stopmachine_thread_ack, 0); |
| 96 | stopmachine_num_threads = 0; |
| 97 | stopmachine_state = STOPMACHINE_WAIT; |
| 98 | |
| 99 | for_each_online_cpu(i) { |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 100 | if (i == raw_smp_processor_id()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | continue; |
Andrew Morton | d8cb7c1 | 2006-07-03 17:32:22 -0700 | [diff] [blame] | 102 | ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL); |
| 103 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | break; |
| 105 | stopmachine_num_threads++; |
| 106 | } |
| 107 | |
| 108 | /* Wait for them all to come to life. */ |
| 109 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) |
| 110 | yield(); |
| 111 | |
| 112 | /* If some failed, kill them all. */ |
| 113 | if (ret < 0) { |
| 114 | stopmachine_set_state(STOPMACHINE_EXIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return ret; |
| 116 | } |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | /* Now they are all started, make them hold the CPUs, ready. */ |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 119 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | stopmachine_set_state(STOPMACHINE_PREPARE); |
| 121 | |
| 122 | /* Make them disable irqs. */ |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 123 | local_irq_disable(); |
Benjamin Herrenschmidt | a12bb44 | 2007-05-10 22:22:47 -0700 | [diff] [blame] | 124 | hard_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | stopmachine_set_state(STOPMACHINE_DISABLE_IRQ); |
| 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static void restart_machine(void) |
| 131 | { |
| 132 | stopmachine_set_state(STOPMACHINE_EXIT); |
| 133 | local_irq_enable(); |
Kirill Korotaev | 4557398 | 2005-11-13 16:07:30 -0800 | [diff] [blame] | 134 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Pavel Machek | f526448 | 2008-04-21 22:15:06 +0000 | [diff] [blame] | 137 | struct stop_machine_data { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | int (*fn)(void *); |
| 139 | void *data; |
| 140 | struct completion done; |
| 141 | }; |
| 142 | |
| 143 | static int do_stop(void *_smdata) |
| 144 | { |
| 145 | struct stop_machine_data *smdata = _smdata; |
| 146 | int ret; |
| 147 | |
| 148 | ret = stop_machine(); |
| 149 | if (ret == 0) { |
| 150 | ret = smdata->fn(smdata->data); |
| 151 | restart_machine(); |
| 152 | } |
| 153 | |
| 154 | /* We're done: you can kthread_stop us now */ |
| 155 | complete(&smdata->done); |
| 156 | |
| 157 | /* Wait for kthread_stop */ |
| 158 | set_current_state(TASK_INTERRUPTIBLE); |
| 159 | while (!kthread_should_stop()) { |
| 160 | schedule(); |
| 161 | set_current_state(TASK_INTERRUPTIBLE); |
| 162 | } |
| 163 | __set_current_state(TASK_RUNNING); |
| 164 | return ret; |
| 165 | } |
| 166 | |
| 167 | struct task_struct *__stop_machine_run(int (*fn)(void *), void *data, |
| 168 | unsigned int cpu) |
| 169 | { |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 170 | static DEFINE_MUTEX(stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | struct stop_machine_data smdata; |
| 172 | struct task_struct *p; |
| 173 | |
| 174 | smdata.fn = fn; |
| 175 | smdata.data = data; |
| 176 | init_completion(&smdata.done); |
| 177 | |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 178 | mutex_lock(&stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | /* If they don't care which CPU fn runs on, bind to any online one. */ |
| 181 | if (cpu == NR_CPUS) |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 182 | cpu = raw_smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | p = kthread_create(do_stop, &smdata, "kstopmachine"); |
| 185 | if (!IS_ERR(p)) { |
Satoru Takeuchi | 85653af | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 186 | struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; |
| 187 | |
| 188 | /* One high-prio thread per cpu. We'll do this one. */ |
| 189 | sched_setscheduler(p, SCHED_FIFO, ¶m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | kthread_bind(p, cpu); |
| 191 | wake_up_process(p); |
| 192 | wait_for_completion(&smdata.done); |
| 193 | } |
Daniel Walker | 6c6080f | 2008-02-06 01:37:41 -0800 | [diff] [blame] | 194 | mutex_unlock(&stopmachine_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | return p; |
| 196 | } |
| 197 | |
| 198 | int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu) |
| 199 | { |
| 200 | struct task_struct *p; |
| 201 | int ret; |
| 202 | |
| 203 | /* No CPUs can come up or down during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 204 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | p = __stop_machine_run(fn, data, cpu); |
| 206 | if (!IS_ERR(p)) |
| 207 | ret = kthread_stop(p); |
| 208 | else |
| 209 | ret = PTR_ERR(p); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 210 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | return ret; |
| 213 | } |
Prarit Bhargava | ee527cd | 2007-05-08 00:25:08 -0700 | [diff] [blame] | 214 | EXPORT_SYMBOL_GPL(stop_machine_run); |