Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* CPU control. |
| 2 | * (C) 2001, 2002, 2003, 2004 Rusty Russell |
| 3 | * |
| 4 | * This code is licenced under the GPL. |
| 5 | */ |
| 6 | #include <linux/proc_fs.h> |
| 7 | #include <linux/smp.h> |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/notifier.h> |
| 10 | #include <linux/sched.h> |
| 11 | #include <linux/unistd.h> |
| 12 | #include <linux/cpu.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kthread.h> |
| 15 | #include <linux/stop_machine.h> |
Ingo Molnar | 81615b62 | 2006-06-26 00:24:32 -0700 | [diff] [blame] | 16 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | /* This protects CPUs going up and down... */ |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 19 | static DEFINE_MUTEX(cpu_add_remove_lock); |
| 20 | static DEFINE_MUTEX(cpu_bitmask_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Neil Brown | bd5349c | 2006-10-17 00:10:35 -0700 | [diff] [blame] | 22 | static __cpuinitdata RAW_NOTIFIER_HEAD(cpu_chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 24 | /* If set, cpu_up and cpu_down will return -EBUSY and do nothing. |
| 25 | * Should always be manipulated under cpu_add_remove_lock |
| 26 | */ |
| 27 | static int cpu_hotplug_disabled; |
| 28 | |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 29 | #ifdef CONFIG_HOTPLUG_CPU |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 30 | |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 31 | /* Crappy recursive lock-takers in cpufreq! Complain loudly about idiots */ |
| 32 | static struct task_struct *recursive; |
| 33 | static int recursive_depth; |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 34 | |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 35 | void lock_cpu_hotplug(void) |
| 36 | { |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 37 | struct task_struct *tsk = current; |
| 38 | |
| 39 | if (tsk == recursive) { |
| 40 | static int warnings = 10; |
| 41 | if (warnings) { |
| 42 | printk(KERN_ERR "Lukewarm IQ detected in hotplug locking\n"); |
| 43 | WARN_ON(1); |
| 44 | warnings--; |
| 45 | } |
| 46 | recursive_depth++; |
| 47 | return; |
| 48 | } |
| 49 | mutex_lock(&cpu_bitmask_lock); |
| 50 | recursive = tsk; |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 51 | } |
| 52 | EXPORT_SYMBOL_GPL(lock_cpu_hotplug); |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 53 | |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 54 | void unlock_cpu_hotplug(void) |
| 55 | { |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 56 | WARN_ON(recursive != current); |
| 57 | if (recursive_depth) { |
| 58 | recursive_depth--; |
| 59 | return; |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 60 | } |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 61 | recursive = NULL; |
Gautham R Shenoy | 4b96b1a | 2006-11-05 23:52:04 -0800 | [diff] [blame] | 62 | mutex_unlock(&cpu_bitmask_lock); |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 63 | } |
| 64 | EXPORT_SYMBOL_GPL(unlock_cpu_hotplug); |
| 65 | |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 66 | #endif /* CONFIG_HOTPLUG_CPU */ |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* Need to know about CPUs going up/down? */ |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 69 | int __cpuinit register_cpu_notifier(struct notifier_block *nb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Neil Brown | bd5349c | 2006-10-17 00:10:35 -0700 | [diff] [blame] | 71 | int ret; |
| 72 | mutex_lock(&cpu_add_remove_lock); |
| 73 | ret = raw_notifier_chain_register(&cpu_chain, nb); |
| 74 | mutex_unlock(&cpu_add_remove_lock); |
| 75 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 77 | |
| 78 | #ifdef CONFIG_HOTPLUG_CPU |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | EXPORT_SYMBOL(register_cpu_notifier); |
| 81 | |
| 82 | void unregister_cpu_notifier(struct notifier_block *nb) |
| 83 | { |
Neil Brown | bd5349c | 2006-10-17 00:10:35 -0700 | [diff] [blame] | 84 | mutex_lock(&cpu_add_remove_lock); |
| 85 | raw_notifier_chain_unregister(&cpu_chain, nb); |
| 86 | mutex_unlock(&cpu_add_remove_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | EXPORT_SYMBOL(unregister_cpu_notifier); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static inline void check_for_tasks(int cpu) |
| 91 | { |
| 92 | struct task_struct *p; |
| 93 | |
| 94 | write_lock_irq(&tasklist_lock); |
| 95 | for_each_process(p) { |
| 96 | if (task_cpu(p) == cpu && |
| 97 | (!cputime_eq(p->utime, cputime_zero) || |
| 98 | !cputime_eq(p->stime, cputime_zero))) |
| 99 | printk(KERN_WARNING "Task %s (pid = %d) is on cpu %d\ |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 100 | (state = %ld, flags = %x) \n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | p->comm, p->pid, cpu, p->state, p->flags); |
| 102 | } |
| 103 | write_unlock_irq(&tasklist_lock); |
| 104 | } |
| 105 | |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 106 | struct take_cpu_down_param { |
| 107 | unsigned long mod; |
| 108 | void *hcpu; |
| 109 | }; |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | /* Take this CPU down. */ |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 112 | static int take_cpu_down(void *_param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 114 | struct take_cpu_down_param *param = _param; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | int err; |
| 116 | |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 117 | raw_notifier_call_chain(&cpu_chain, CPU_DYING | param->mod, |
| 118 | param->hcpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* Ensure this CPU doesn't handle any more interrupts. */ |
| 120 | err = __cpu_disable(); |
| 121 | if (err < 0) |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 122 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 124 | /* Force idle task to run as soon as we yield: it should |
| 125 | immediately notice cpu is offline and die quickly. */ |
| 126 | sched_idle_next(); |
| 127 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 130 | /* Requires cpu_add_remove_lock to be held */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 131 | static int _cpu_down(unsigned int cpu, int tasks_frozen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 133 | int err, nr_calls = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct task_struct *p; |
| 135 | cpumask_t old_allowed, tmp; |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 136 | void *hcpu = (void *)(long)cpu; |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 137 | unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 138 | struct take_cpu_down_param tcd_param = { |
| 139 | .mod = mod, |
| 140 | .hcpu = hcpu, |
| 141 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 143 | if (num_online_cpus() == 1) |
| 144 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 146 | if (!cpu_online(cpu)) |
| 147 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 149 | raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu); |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 150 | err = __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE | mod, |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 151 | hcpu, -1, &nr_calls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (err == NOTIFY_BAD) { |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 153 | __raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod, |
| 154 | hcpu, nr_calls, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | printk("%s: attempt to take down CPU %u failed\n", |
| 156 | __FUNCTION__, cpu); |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 157 | err = -EINVAL; |
| 158 | goto out_release; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* Ensure that we are not runnable on dying cpu */ |
| 162 | old_allowed = current->cpus_allowed; |
| 163 | tmp = CPU_MASK_ALL; |
| 164 | cpu_clear(cpu, tmp); |
| 165 | set_cpus_allowed(current, tmp); |
| 166 | |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 167 | mutex_lock(&cpu_bitmask_lock); |
Avi Kivity | db912f9 | 2007-05-24 12:23:10 +0300 | [diff] [blame^] | 168 | p = __stop_machine_run(take_cpu_down, &tcd_param, cpu); |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 169 | mutex_unlock(&cpu_bitmask_lock); |
| 170 | |
Satoru Takeuchi | 8fa1d7d | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 171 | if (IS_ERR(p) || cpu_online(cpu)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /* CPU didn't die: tell everyone. Can't complain. */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 173 | if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod, |
Heiko Carstens | e7407dc | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 174 | hcpu) == NOTIFY_BAD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | BUG(); |
| 176 | |
Satoru Takeuchi | 8fa1d7d | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 177 | if (IS_ERR(p)) { |
| 178 | err = PTR_ERR(p); |
| 179 | goto out_allowed; |
| 180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | goto out_thread; |
Satoru Takeuchi | 8fa1d7d | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | /* Wait for it to sleep (leaving idle task). */ |
| 185 | while (!idle_cpu(cpu)) |
| 186 | yield(); |
| 187 | |
| 188 | /* This actually kills the CPU. */ |
| 189 | __cpu_die(cpu); |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /* CPU is completely dead: tell everyone. Too late to complain. */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 192 | if (raw_notifier_call_chain(&cpu_chain, CPU_DEAD | mod, |
| 193 | hcpu) == NOTIFY_BAD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | BUG(); |
| 195 | |
| 196 | check_for_tasks(cpu); |
| 197 | |
| 198 | out_thread: |
| 199 | err = kthread_stop(p); |
| 200 | out_allowed: |
| 201 | set_cpus_allowed(current, old_allowed); |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 202 | out_release: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 203 | raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 204 | return err; |
| 205 | } |
| 206 | |
| 207 | int cpu_down(unsigned int cpu) |
| 208 | { |
| 209 | int err = 0; |
| 210 | |
| 211 | mutex_lock(&cpu_add_remove_lock); |
| 212 | if (cpu_hotplug_disabled) |
| 213 | err = -EBUSY; |
| 214 | else |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 215 | err = _cpu_down(cpu, 0); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 216 | |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 217 | mutex_unlock(&cpu_add_remove_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | return err; |
| 219 | } |
| 220 | #endif /*CONFIG_HOTPLUG_CPU*/ |
| 221 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 222 | /* Requires cpu_add_remove_lock to be held */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 223 | static int __cpuinit _cpu_up(unsigned int cpu, int tasks_frozen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 225 | int ret, nr_calls = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | void *hcpu = (void *)(long)cpu; |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 227 | unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 229 | if (cpu_online(cpu) || !cpu_present(cpu)) |
| 230 | return -EINVAL; |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 231 | |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 232 | raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu); |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 233 | ret = __raw_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE | mod, hcpu, |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 234 | -1, &nr_calls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | if (ret == NOTIFY_BAD) { |
| 236 | printk("%s: attempt to bring up CPU %u failed\n", |
| 237 | __FUNCTION__, cpu); |
| 238 | ret = -EINVAL; |
| 239 | goto out_notify; |
| 240 | } |
| 241 | |
| 242 | /* Arch-specific enabling code. */ |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 243 | mutex_lock(&cpu_bitmask_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | ret = __cpu_up(cpu); |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 245 | mutex_unlock(&cpu_bitmask_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (ret != 0) |
| 247 | goto out_notify; |
Eric Sesterhenn | 6978c70 | 2006-03-24 18:45:21 +0100 | [diff] [blame] | 248 | BUG_ON(!cpu_online(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | /* Now call notifier in preparation. */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 251 | raw_notifier_call_chain(&cpu_chain, CPU_ONLINE | mod, hcpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | out_notify: |
| 254 | if (ret != 0) |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 255 | __raw_notifier_call_chain(&cpu_chain, |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 256 | CPU_UP_CANCELED | mod, hcpu, nr_calls, NULL); |
Gautham R Shenoy | baaca49 | 2007-05-09 02:34:03 -0700 | [diff] [blame] | 257 | raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | return ret; |
| 260 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 261 | |
Gautham R Shenoy | b282b6f | 2007-01-10 23:15:34 -0800 | [diff] [blame] | 262 | int __cpuinit cpu_up(unsigned int cpu) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 263 | { |
| 264 | int err = 0; |
| 265 | |
| 266 | mutex_lock(&cpu_add_remove_lock); |
| 267 | if (cpu_hotplug_disabled) |
| 268 | err = -EBUSY; |
| 269 | else |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 270 | err = _cpu_up(cpu, 0); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 271 | |
| 272 | mutex_unlock(&cpu_add_remove_lock); |
| 273 | return err; |
| 274 | } |
| 275 | |
| 276 | #ifdef CONFIG_SUSPEND_SMP |
| 277 | static cpumask_t frozen_cpus; |
| 278 | |
| 279 | int disable_nonboot_cpus(void) |
| 280 | { |
Ingo Molnar | e1d9fd2 | 2006-12-23 16:55:29 +0100 | [diff] [blame] | 281 | int cpu, first_cpu, error = 0; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 282 | |
| 283 | mutex_lock(&cpu_add_remove_lock); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 284 | first_cpu = first_cpu(cpu_online_map); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 285 | /* We take down all of the non-boot CPUs in one shot to avoid races |
| 286 | * with the userspace trying to use the CPU hotplug at the same time |
| 287 | */ |
| 288 | cpus_clear(frozen_cpus); |
| 289 | printk("Disabling non-boot CPUs ...\n"); |
| 290 | for_each_online_cpu(cpu) { |
| 291 | if (cpu == first_cpu) |
| 292 | continue; |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 293 | error = _cpu_down(cpu, 1); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 294 | if (!error) { |
| 295 | cpu_set(cpu, frozen_cpus); |
| 296 | printk("CPU%d is down\n", cpu); |
| 297 | } else { |
| 298 | printk(KERN_ERR "Error taking CPU%d down: %d\n", |
| 299 | cpu, error); |
| 300 | break; |
| 301 | } |
| 302 | } |
| 303 | if (!error) { |
| 304 | BUG_ON(num_online_cpus() > 1); |
| 305 | /* Make sure the CPUs won't be enabled by someone else */ |
| 306 | cpu_hotplug_disabled = 1; |
| 307 | } else { |
Ingo Molnar | e1d9fd2 | 2006-12-23 16:55:29 +0100 | [diff] [blame] | 308 | printk(KERN_ERR "Non-boot CPUs are not disabled\n"); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 309 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 310 | mutex_unlock(&cpu_add_remove_lock); |
| 311 | return error; |
| 312 | } |
| 313 | |
| 314 | void enable_nonboot_cpus(void) |
| 315 | { |
| 316 | int cpu, error; |
| 317 | |
| 318 | /* Allow everyone to use the CPU hotplug again */ |
| 319 | mutex_lock(&cpu_add_remove_lock); |
| 320 | cpu_hotplug_disabled = 0; |
Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 321 | if (cpus_empty(frozen_cpus)) |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 322 | goto out; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 323 | |
| 324 | printk("Enabling non-boot CPUs ...\n"); |
| 325 | for_each_cpu_mask(cpu, frozen_cpus) { |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 326 | error = _cpu_up(cpu, 1); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 327 | if (!error) { |
| 328 | printk("CPU%d is up\n", cpu); |
| 329 | continue; |
| 330 | } |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 331 | printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 332 | } |
| 333 | cpus_clear(frozen_cpus); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 334 | out: |
| 335 | mutex_unlock(&cpu_add_remove_lock); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 336 | } |
| 337 | #endif |