blob: 26feaa985a526cb9097c2243a7a0ed39ca8f03d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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>
Paul Gortmaker9984de12011-05-23 14:51:41 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kthread.h>
15#include <linux/stop_machine.h>
Ingo Molnar81615b62006-06-26 00:24:32 -070016#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/gfp.h>
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +010018#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Rusty Russell98a79d62008-12-13 21:19:41 +103020#ifdef CONFIG_SMP
Rusty Russellb3199c02008-12-30 09:05:14 +103021/* Serializes the updates to cpu_online_mask, cpu_present_mask */
Linus Torvaldsaa953872006-07-23 12:12:16 -070022static DEFINE_MUTEX(cpu_add_remove_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Lai Jiangshan79a6cde2010-05-26 14:43:36 -070024/*
25 * The following two API's must be used when attempting
26 * to serialize the updates to cpu_online_mask, cpu_present_mask.
27 */
28void cpu_maps_update_begin(void)
29{
30 mutex_lock(&cpu_add_remove_lock);
31}
32
33void cpu_maps_update_done(void)
34{
35 mutex_unlock(&cpu_add_remove_lock);
36}
37
Daniel J Blueman5c113fb2010-06-01 12:15:11 +010038static RAW_NOTIFIER_HEAD(cpu_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070040/* If set, cpu_up and cpu_down will return -EBUSY and do nothing.
41 * Should always be manipulated under cpu_add_remove_lock
42 */
43static int cpu_hotplug_disabled;
44
Lai Jiangshan79a6cde2010-05-26 14:43:36 -070045#ifdef CONFIG_HOTPLUG_CPU
46
Gautham R Shenoyd2219382008-01-25 21:08:01 +010047static struct {
48 struct task_struct *active_writer;
49 struct mutex lock; /* Synchronizes accesses to refcount, */
50 /*
51 * Also blocks the new readers during
52 * an ongoing cpu hotplug operation.
53 */
54 int refcount;
Linus Torvalds31950eb2009-06-22 21:18:12 -070055} cpu_hotplug = {
56 .active_writer = NULL,
57 .lock = __MUTEX_INITIALIZER(cpu_hotplug.lock),
58 .refcount = 0,
59};
Gautham R Shenoyd2219382008-01-25 21:08:01 +010060
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +010061void get_online_cpus(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -080062{
Gautham R Shenoyd2219382008-01-25 21:08:01 +010063 might_sleep();
64 if (cpu_hotplug.active_writer == current)
Linus Torvaldsaa953872006-07-23 12:12:16 -070065 return;
Gautham R Shenoyd2219382008-01-25 21:08:01 +010066 mutex_lock(&cpu_hotplug.lock);
67 cpu_hotplug.refcount++;
68 mutex_unlock(&cpu_hotplug.lock);
69
Ashok Raja9d9baa2005-11-28 13:43:46 -080070}
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +010071EXPORT_SYMBOL_GPL(get_online_cpus);
Ashok Raj90d45d12005-11-08 21:34:24 -080072
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +010073void put_online_cpus(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -080074{
Gautham R Shenoyd2219382008-01-25 21:08:01 +010075 if (cpu_hotplug.active_writer == current)
Linus Torvaldsaa953872006-07-23 12:12:16 -070076 return;
Gautham R Shenoyd2219382008-01-25 21:08:01 +010077 mutex_lock(&cpu_hotplug.lock);
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -070078 if (!--cpu_hotplug.refcount && unlikely(cpu_hotplug.active_writer))
79 wake_up_process(cpu_hotplug.active_writer);
Gautham R Shenoyd2219382008-01-25 21:08:01 +010080 mutex_unlock(&cpu_hotplug.lock);
81
Ashok Raja9d9baa2005-11-28 13:43:46 -080082}
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +010083EXPORT_SYMBOL_GPL(put_online_cpus);
Ashok Raja9d9baa2005-11-28 13:43:46 -080084
Gautham R Shenoyd2219382008-01-25 21:08:01 +010085/*
86 * This ensures that the hotplug operation can begin only when the
87 * refcount goes to zero.
88 *
89 * Note that during a cpu-hotplug operation, the new readers, if any,
90 * will be blocked by the cpu_hotplug.lock
91 *
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -070092 * Since cpu_hotplug_begin() is always called after invoking
93 * cpu_maps_update_begin(), we can be sure that only one writer is active.
Gautham R Shenoyd2219382008-01-25 21:08:01 +010094 *
95 * Note that theoretically, there is a possibility of a livelock:
96 * - Refcount goes to zero, last reader wakes up the sleeping
97 * writer.
98 * - Last reader unlocks the cpu_hotplug.lock.
99 * - A new reader arrives at this moment, bumps up the refcount.
100 * - The writer acquires the cpu_hotplug.lock finds the refcount
101 * non zero and goes to sleep again.
102 *
103 * However, this is very difficult to achieve in practice since
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100104 * get_online_cpus() not an api which is called all that often.
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100105 *
106 */
107static void cpu_hotplug_begin(void)
108{
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100109 cpu_hotplug.active_writer = current;
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -0700110
111 for (;;) {
112 mutex_lock(&cpu_hotplug.lock);
113 if (likely(!cpu_hotplug.refcount))
114 break;
115 __set_current_state(TASK_UNINTERRUPTIBLE);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100116 mutex_unlock(&cpu_hotplug.lock);
117 schedule();
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100118 }
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100119}
120
121static void cpu_hotplug_done(void)
122{
123 cpu_hotplug.active_writer = NULL;
124 mutex_unlock(&cpu_hotplug.lock);
125}
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700126
Srivatsa S. Bhatb3cba472013-06-12 14:04:36 -0700127/*
128 * Wait for currently running CPU hotplug operations to complete (if any) and
129 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
130 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
131 * hotplug path before performing hotplug operations. So acquiring that lock
132 * guarantees mutual exclusion from any currently running hotplug operations.
133 */
134void cpu_hotplug_disable(void)
135{
136 cpu_maps_update_begin();
137 cpu_hotplug_disabled = 1;
138 cpu_maps_update_done();
139}
140
141void cpu_hotplug_enable(void)
142{
143 cpu_maps_update_begin();
144 cpu_hotplug_disabled = 0;
145 cpu_maps_update_done();
146}
147
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700148#else /* #if CONFIG_HOTPLUG_CPU */
149static void cpu_hotplug_begin(void) {}
150static void cpu_hotplug_done(void) {}
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300151#endif /* #else #if CONFIG_HOTPLUG_CPU */
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/* Need to know about CPUs going up/down? */
Sam Ravnborgf7b16c12008-04-29 00:58:51 -0700154int __ref register_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Neil Brownbd5349c2006-10-17 00:10:35 -0700156 int ret;
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100157 cpu_maps_update_begin();
Neil Brownbd5349c2006-10-17 00:10:35 -0700158 ret = raw_notifier_chain_register(&cpu_chain, nb);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100159 cpu_maps_update_done();
Neil Brownbd5349c2006-10-17 00:10:35 -0700160 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700162
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700163static int __cpu_notify(unsigned long val, void *v, int nr_to_call,
164 int *nr_calls)
165{
Akinobu Mitae6bde732010-05-26 14:43:29 -0700166 int ret;
167
168 ret = __raw_notifier_call_chain(&cpu_chain, val, v, nr_to_call,
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700169 nr_calls);
Akinobu Mitae6bde732010-05-26 14:43:29 -0700170
171 return notifier_to_errno(ret);
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700172}
173
174static int cpu_notify(unsigned long val, void *v)
175{
176 return __cpu_notify(val, v, -1, NULL);
177}
178
Linus Torvalds00b9b0a2010-05-27 10:32:08 -0700179#ifdef CONFIG_HOTPLUG_CPU
180
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700181static void cpu_notify_nofail(unsigned long val, void *v)
182{
Linus Torvalds00b9b0a2010-05-27 10:32:08 -0700183 BUG_ON(cpu_notify(val, v));
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185EXPORT_SYMBOL(register_cpu_notifier);
186
Sam Ravnborg96471552008-04-29 00:58:48 -0700187void __ref unregister_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100189 cpu_maps_update_begin();
Neil Brownbd5349c2006-10-17 00:10:35 -0700190 raw_notifier_chain_unregister(&cpu_chain, nb);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100191 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193EXPORT_SYMBOL(unregister_cpu_notifier);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static inline void check_for_tasks(int cpu)
196{
197 struct task_struct *p;
198
199 write_lock_irq(&tasklist_lock);
200 for_each_process(p) {
Peter Zijlstra11854242010-01-21 16:34:27 +0100201 if (task_cpu(p) == cpu && p->state == TASK_RUNNING &&
Martin Schwidefsky64861632011-12-15 14:56:09 +0100202 (p->utime || p->stime))
Frans Pop9d3cfc42010-01-25 14:56:34 +0100203 printk(KERN_WARNING "Task %s (pid = %d) is on cpu %d "
204 "(state = %ld, flags = %x)\n",
205 p->comm, task_pid_nr(p), cpu,
206 p->state, p->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208 write_unlock_irq(&tasklist_lock);
209}
210
Avi Kivitydb912f92007-05-24 12:23:10 +0300211struct take_cpu_down_param {
212 unsigned long mod;
213 void *hcpu;
214};
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/* Take this CPU down. */
Sam Ravnborg514a20a2008-04-29 00:58:50 -0700217static int __ref take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Avi Kivitydb912f92007-05-24 12:23:10 +0300219 struct take_cpu_down_param *param = _param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 int err;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* Ensure this CPU doesn't handle any more interrupts. */
223 err = __cpu_disable();
224 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700225 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700227 cpu_notify(CPU_DYING | param->mod, param->hcpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700231/* Requires cpu_add_remove_lock to be held */
Sam Ravnborg514a20a2008-04-29 00:58:50 -0700232static int __ref _cpu_down(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Heiko Carstense7407dc2007-05-09 02:34:04 -0700234 int err, nr_calls = 0;
Heiko Carstense7407dc2007-05-09 02:34:04 -0700235 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700236 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Avi Kivitydb912f92007-05-24 12:23:10 +0300237 struct take_cpu_down_param tcd_param = {
238 .mod = mod,
239 .hcpu = hcpu,
240 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700242 if (num_online_cpus() == 1)
243 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700245 if (!cpu_online(cpu))
246 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100248 cpu_hotplug_begin();
Michael Rodriguez4d519852011-03-22 16:34:07 -0700249
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700250 err = __cpu_notify(CPU_DOWN_PREPARE | mod, hcpu, -1, &nr_calls);
Akinobu Mitae6bde732010-05-26 14:43:29 -0700251 if (err) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700252 nr_calls--;
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700253 __cpu_notify(CPU_DOWN_FAILED | mod, hcpu, nr_calls, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 printk("%s: attempt to take down CPU %u failed\n",
Harvey Harrisonaf1f16d2008-04-30 00:55:08 -0700255 __func__, cpu);
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700256 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
Rusty Russelle0b582e2009-01-01 10:12:28 +1030259 err = __stop_machine(take_cpu_down, &tcd_param, cpumask_of(cpu));
Rusty Russell04321582008-07-28 12:16:29 -0500260 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* CPU didn't die: tell everyone. Can't complain. */
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700262 cpu_notify_nofail(CPU_DOWN_FAILED | mod, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Oleg Nesterov6a1bdc12010-03-15 10:10:23 +0100264 goto out_release;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700265 }
Rusty Russell04321582008-07-28 12:16:29 -0500266 BUG_ON(cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100268 /*
269 * The migration_call() CPU_DYING callback will have removed all
270 * runnable tasks from the cpu, there's only the idle task left now
271 * that the migration thread is done doing the stop_machine thing.
Peter Zijlstra51a96c72010-11-19 20:37:53 +0100272 *
273 * Wait for the stop thread to go away.
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100274 */
Peter Zijlstra51a96c72010-11-19 20:37:53 +0100275 while (!idle_cpu(cpu))
276 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 /* This actually kills the CPU. */
279 __cpu_die(cpu);
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* CPU is completely dead: tell everyone. Too late to complain. */
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700282 cpu_notify_nofail(CPU_DEAD | mod, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 check_for_tasks(cpu);
285
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700286out_release:
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100287 cpu_hotplug_done();
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700288 if (!err)
289 cpu_notify_nofail(CPU_POST_DEAD | mod, hcpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700290 return err;
291}
292
Sam Ravnborg514a20a2008-04-29 00:58:50 -0700293int __ref cpu_down(unsigned int cpu)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700294{
Heiko Carstens9ea09af2008-12-22 12:36:30 +0100295 int err;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700296
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100297 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700298
Max Krasnyanskye761b772008-07-15 04:43:49 -0700299 if (cpu_hotplug_disabled) {
300 err = -EBUSY;
301 goto out;
302 }
303
Max Krasnyanskye761b772008-07-15 04:43:49 -0700304 err = _cpu_down(cpu, 0);
305
Max Krasnyanskye761b772008-07-15 04:43:49 -0700306out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100307 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return err;
309}
Zhang Ruib62b8ef2008-04-29 02:35:56 -0400310EXPORT_SYMBOL(cpu_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#endif /*CONFIG_HOTPLUG_CPU*/
312
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700313/* Requires cpu_add_remove_lock to be held */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700314static int __cpuinit _cpu_up(unsigned int cpu, int tasks_frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Gautham R Shenoybaaca492007-05-09 02:34:03 -0700316 int ret, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 void *hcpu = (void *)(long)cpu;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700318 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700320 if (cpu_online(cpu) || !cpu_present(cpu))
321 return -EINVAL;
Ashok Raj90d45d12005-11-08 21:34:24 -0800322
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100323 cpu_hotplug_begin();
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700324 ret = __cpu_notify(CPU_UP_PREPARE | mod, hcpu, -1, &nr_calls);
Akinobu Mitae6bde732010-05-26 14:43:29 -0700325 if (ret) {
Akinobu Mitaa0d8cdb2007-10-18 03:05:12 -0700326 nr_calls--;
Michael Rodriguez4d519852011-03-22 16:34:07 -0700327 printk(KERN_WARNING "%s: attempt to bring up CPU %u failed\n",
Harvey Harrisonaf1f16d2008-04-30 00:55:08 -0700328 __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto out_notify;
330 }
331
332 /* Arch-specific enabling code. */
333 ret = __cpu_up(cpu);
334 if (ret != 0)
335 goto out_notify;
Eric Sesterhenn6978c702006-03-24 18:45:21 +0100336 BUG_ON(!cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* Now call notifier in preparation. */
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700339 cpu_notify(CPU_ONLINE | mod, hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341out_notify:
342 if (ret != 0)
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700343 __cpu_notify(CPU_UP_CANCELED | mod, hcpu, nr_calls, NULL);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100344 cpu_hotplug_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return ret;
347}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700348
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800349int __cpuinit cpu_up(unsigned int cpu)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700350{
351 int err = 0;
minskey guocf234222010-05-24 14:32:41 -0700352
353#ifdef CONFIG_MEMORY_HOTPLUG
354 int nid;
355 pg_data_t *pgdat;
356#endif
357
Rusty Russelle0b582e2009-01-01 10:12:28 +1030358 if (!cpu_possible(cpu)) {
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -0700359 printk(KERN_ERR "can't online cpu %d because it is not "
360 "configured as may-hotadd at boot time\n", cpu);
Chen Gong87d5e022010-03-05 13:42:38 -0800361#if defined(CONFIG_IA64)
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -0700362 printk(KERN_ERR "please check additional_cpus= boot "
363 "parameter\n");
364#endif
365 return -EINVAL;
366 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700367
minskey guocf234222010-05-24 14:32:41 -0700368#ifdef CONFIG_MEMORY_HOTPLUG
369 nid = cpu_to_node(cpu);
370 if (!node_online(nid)) {
371 err = mem_online_node(nid);
372 if (err)
373 return err;
374 }
375
376 pgdat = NODE_DATA(nid);
377 if (!pgdat) {
378 printk(KERN_ERR
379 "Can't online cpu %d due to NULL pgdat\n", cpu);
380 return -ENOMEM;
381 }
382
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700383 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
384 mutex_lock(&zonelists_mutex);
Haicheng Li1f522502010-05-24 14:32:51 -0700385 build_all_zonelists(NULL);
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700386 mutex_unlock(&zonelists_mutex);
387 }
minskey guocf234222010-05-24 14:32:41 -0700388#endif
389
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100390 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700391
Max Krasnyanskye761b772008-07-15 04:43:49 -0700392 if (cpu_hotplug_disabled) {
393 err = -EBUSY;
394 goto out;
395 }
396
397 err = _cpu_up(cpu, 0);
398
Max Krasnyanskye761b772008-07-15 04:43:49 -0700399out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100400 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700401 return err;
402}
Paul E. McKenneya513f6b2011-12-11 21:54:45 -0800403EXPORT_SYMBOL_GPL(cpu_up);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700404
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700405#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +1030406static cpumask_var_t frozen_cpus;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700407
Suresh Siddha3fb82d52010-11-23 16:11:40 -0800408void __weak arch_disable_nonboot_cpus_begin(void)
409{
410}
411
412void __weak arch_disable_nonboot_cpus_end(void)
413{
414}
415
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700416int disable_nonboot_cpus(void)
417{
Rafael J. Wysockie9a5f422010-05-27 22:16:22 +0200418 int cpu, first_cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700419
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100420 cpu_maps_update_begin();
Rusty Russelle0b582e2009-01-01 10:12:28 +1030421 first_cpu = cpumask_first(cpu_online_mask);
Xiaotian Feng9ee349a2009-12-16 18:04:32 +0100422 /*
423 * We take down all of the non-boot CPUs in one shot to avoid races
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700424 * with the userspace trying to use the CPU hotplug at the same time
425 */
Rusty Russelle0b582e2009-01-01 10:12:28 +1030426 cpumask_clear(frozen_cpus);
Suresh Siddha3fb82d52010-11-23 16:11:40 -0800427 arch_disable_nonboot_cpus_begin();
Peter Zijlstra6ad4c182009-11-25 13:31:39 +0100428
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700429 printk("Disabling non-boot CPUs ...\n");
430 for_each_online_cpu(cpu) {
431 if (cpu == first_cpu)
432 continue;
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700433 error = _cpu_down(cpu, 1);
Mike Travisfeae3202009-11-17 18:22:13 -0600434 if (!error)
Rusty Russelle0b582e2009-01-01 10:12:28 +1030435 cpumask_set_cpu(cpu, frozen_cpus);
Mike Travisfeae3202009-11-17 18:22:13 -0600436 else {
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700437 printk(KERN_ERR "Error taking CPU%d down: %d\n",
438 cpu, error);
439 break;
440 }
441 }
Joseph Cihula86886e52009-06-30 19:31:07 -0700442
Suresh Siddha3fb82d52010-11-23 16:11:40 -0800443 arch_disable_nonboot_cpus_end();
444
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700445 if (!error) {
446 BUG_ON(num_online_cpus() > 1);
447 /* Make sure the CPUs won't be enabled by someone else */
448 cpu_hotplug_disabled = 1;
449 } else {
Ingo Molnare1d9fd22006-12-23 16:55:29 +0100450 printk(KERN_ERR "Non-boot CPUs are not disabled\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700451 }
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100452 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700453 return error;
454}
455
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700456void __weak arch_enable_nonboot_cpus_begin(void)
457{
458}
459
460void __weak arch_enable_nonboot_cpus_end(void)
461{
462}
463
Sam Ravnborgfa7303e2008-02-08 04:21:55 -0800464void __ref enable_nonboot_cpus(void)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700465{
466 int cpu, error;
467
468 /* Allow everyone to use the CPU hotplug again */
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100469 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700470 cpu_hotplug_disabled = 0;
Rusty Russelle0b582e2009-01-01 10:12:28 +1030471 if (cpumask_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700472 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700473
Michael Rodriguez4d519852011-03-22 16:34:07 -0700474 printk(KERN_INFO "Enabling non-boot CPUs ...\n");
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700475
476 arch_enable_nonboot_cpus_begin();
477
Rusty Russelle0b582e2009-01-01 10:12:28 +1030478 for_each_cpu(cpu, frozen_cpus) {
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700479 error = _cpu_up(cpu, 1);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700480 if (!error) {
Michael Rodriguez4d519852011-03-22 16:34:07 -0700481 printk(KERN_INFO "CPU%d is up\n", cpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700482 continue;
483 }
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700484 printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700485 }
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700486
487 arch_enable_nonboot_cpus_end();
488
Rusty Russelle0b582e2009-01-01 10:12:28 +1030489 cpumask_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700490out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100491 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700492}
Rusty Russelle0b582e2009-01-01 10:12:28 +1030493
Fenghua Yud7268a32011-11-15 21:59:31 +0100494static int __init alloc_frozen_cpus(void)
Rusty Russelle0b582e2009-01-01 10:12:28 +1030495{
496 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
497 return -ENOMEM;
498 return 0;
499}
500core_initcall(alloc_frozen_cpus);
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +0100501
502/*
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +0100503 * When callbacks for CPU hotplug notifications are being executed, we must
504 * ensure that the state of the system with respect to the tasks being frozen
505 * or not, as reported by the notification, remains unchanged *throughout the
506 * duration* of the execution of the callbacks.
507 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
508 *
509 * This synchronization is implemented by mutually excluding regular CPU
510 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
511 * Hibernate notifications.
512 */
513static int
514cpu_hotplug_pm_callback(struct notifier_block *nb,
515 unsigned long action, void *ptr)
516{
517 switch (action) {
518
519 case PM_SUSPEND_PREPARE:
520 case PM_HIBERNATION_PREPARE:
Srivatsa S. Bhatb3cba472013-06-12 14:04:36 -0700521 cpu_hotplug_disable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +0100522 break;
523
524 case PM_POST_SUSPEND:
525 case PM_POST_HIBERNATION:
Srivatsa S. Bhatb3cba472013-06-12 14:04:36 -0700526 cpu_hotplug_enable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +0100527 break;
528
529 default:
530 return NOTIFY_DONE;
531 }
532
533 return NOTIFY_OK;
534}
535
536
Fenghua Yud7268a32011-11-15 21:59:31 +0100537static int __init cpu_hotplug_pm_sync_init(void)
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +0100538{
539 pm_notifier(cpu_hotplug_pm_callback, 0);
540 return 0;
541}
542core_initcall(cpu_hotplug_pm_sync_init);
543
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700544#endif /* CONFIG_PM_SLEEP_SMP */
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -0700545
Manfred Spraule545a612008-09-07 16:57:22 +0200546/**
547 * notify_cpu_starting(cpu) - call the CPU_STARTING notifiers
548 * @cpu: cpu that just started
549 *
550 * This function calls the cpu_chain notifiers with CPU_STARTING.
551 * It must be called by the arch code on the new cpu, before the new cpu
552 * enables interrupts and before the "boot" cpu returns from __cpu_up().
553 */
Al Viro84196412008-11-22 17:36:44 +0000554void __cpuinit notify_cpu_starting(unsigned int cpu)
Manfred Spraule545a612008-09-07 16:57:22 +0200555{
556 unsigned long val = CPU_STARTING;
557
558#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +1030559 if (frozen_cpus != NULL && cpumask_test_cpu(cpu, frozen_cpus))
Manfred Spraule545a612008-09-07 16:57:22 +0200560 val = CPU_STARTING_FROZEN;
561#endif /* CONFIG_PM_SLEEP_SMP */
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700562 cpu_notify(val, (void *)(long)cpu);
Manfred Spraule545a612008-09-07 16:57:22 +0200563}
564
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -0700565#endif /* CONFIG_SMP */
Mike Travisb8d317d2008-07-24 18:21:29 -0700566
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700567/*
568 * cpu_bit_bitmap[] is a special, "compressed" data structure that
569 * represents all NR_CPUS bits binary values of 1<<nr.
570 *
Rusty Russelle0b582e2009-01-01 10:12:28 +1030571 * It is used by cpumask_of() to get a constant address to a CPU
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700572 * mask value that has a single bit set only.
573 */
Mike Travisb8d317d2008-07-24 18:21:29 -0700574
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700575/* cpu_bit_bitmap[0] is empty - so we can back into it */
Michael Rodriguez4d519852011-03-22 16:34:07 -0700576#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700577#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
578#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
579#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
Mike Travisb8d317d2008-07-24 18:21:29 -0700580
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700581const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
Mike Travisb8d317d2008-07-24 18:21:29 -0700582
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700583 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
584 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
585#if BITS_PER_LONG > 32
586 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
587 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
Mike Travisb8d317d2008-07-24 18:21:29 -0700588#endif
589};
Linus Torvaldse56b3bc2008-07-28 11:32:33 -0700590EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100591
592const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
593EXPORT_SYMBOL(cpu_all_bits);
Rusty Russellb3199c02008-12-30 09:05:14 +1030594
595#ifdef CONFIG_INIT_ALL_POSSIBLE
596static DECLARE_BITMAP(cpu_possible_bits, CONFIG_NR_CPUS) __read_mostly
597 = CPU_BITS_ALL;
598#else
599static DECLARE_BITMAP(cpu_possible_bits, CONFIG_NR_CPUS) __read_mostly;
600#endif
601const struct cpumask *const cpu_possible_mask = to_cpumask(cpu_possible_bits);
602EXPORT_SYMBOL(cpu_possible_mask);
603
604static DECLARE_BITMAP(cpu_online_bits, CONFIG_NR_CPUS) __read_mostly;
605const struct cpumask *const cpu_online_mask = to_cpumask(cpu_online_bits);
606EXPORT_SYMBOL(cpu_online_mask);
607
608static DECLARE_BITMAP(cpu_present_bits, CONFIG_NR_CPUS) __read_mostly;
609const struct cpumask *const cpu_present_mask = to_cpumask(cpu_present_bits);
610EXPORT_SYMBOL(cpu_present_mask);
611
612static DECLARE_BITMAP(cpu_active_bits, CONFIG_NR_CPUS) __read_mostly;
613const struct cpumask *const cpu_active_mask = to_cpumask(cpu_active_bits);
614EXPORT_SYMBOL(cpu_active_mask);
Rusty Russell3fa41522008-12-30 09:05:16 +1030615
616void set_cpu_possible(unsigned int cpu, bool possible)
617{
618 if (possible)
619 cpumask_set_cpu(cpu, to_cpumask(cpu_possible_bits));
620 else
621 cpumask_clear_cpu(cpu, to_cpumask(cpu_possible_bits));
622}
623
624void set_cpu_present(unsigned int cpu, bool present)
625{
626 if (present)
627 cpumask_set_cpu(cpu, to_cpumask(cpu_present_bits));
628 else
629 cpumask_clear_cpu(cpu, to_cpumask(cpu_present_bits));
630}
631
632void set_cpu_online(unsigned int cpu, bool online)
633{
634 if (online)
635 cpumask_set_cpu(cpu, to_cpumask(cpu_online_bits));
636 else
637 cpumask_clear_cpu(cpu, to_cpumask(cpu_online_bits));
638}
639
640void set_cpu_active(unsigned int cpu, bool active)
641{
642 if (active)
643 cpumask_set_cpu(cpu, to_cpumask(cpu_active_bits));
644 else
645 cpumask_clear_cpu(cpu, to_cpumask(cpu_active_bits));
646}
647
648void init_cpu_present(const struct cpumask *src)
649{
650 cpumask_copy(to_cpumask(cpu_present_bits), src);
651}
652
653void init_cpu_possible(const struct cpumask *src)
654{
655 cpumask_copy(to_cpumask(cpu_possible_bits), src);
656}
657
658void init_cpu_online(const struct cpumask *src)
659{
660 cpumask_copy(to_cpumask(cpu_online_bits), src);
661}