2 * (C) 2001, 2002, 2003, 2004 Rusty Russell
4 * This code is licenced under the GPL.
6 #include <linux/proc_fs.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>
16 #include <linux/mutex.h>
18 /* This protects CPUs going up and down... */
19 static DEFINE_MUTEX(cpu_add_remove_lock);
20 static DEFINE_MUTEX(cpu_bitmask_lock);
22 static __cpuinitdata RAW_NOTIFIER_HEAD(cpu_chain);
24 /* If set, cpu_up and cpu_down will return -EBUSY and do nothing.
25 * Should always be manipulated under cpu_add_remove_lock
27 static int cpu_hotplug_disabled;
29 #ifdef CONFIG_HOTPLUG_CPU
31 /* Crappy recursive lock-takers in cpufreq! Complain loudly about idiots */
32 static struct task_struct *recursive;
33 static int recursive_depth;
35 void lock_cpu_hotplug(void)
37 struct task_struct *tsk = current;
39 if (tsk == recursive) {
40 static int warnings = 10;
42 printk(KERN_ERR "Lukewarm IQ detected in hotplug locking\n");
49 mutex_lock(&cpu_bitmask_lock);
52 EXPORT_SYMBOL_GPL(lock_cpu_hotplug);
54 void unlock_cpu_hotplug(void)
56 WARN_ON(recursive != current);
57 if (recursive_depth) {
62 mutex_unlock(&cpu_bitmask_lock);
64 EXPORT_SYMBOL_GPL(unlock_cpu_hotplug);
66 #endif /* CONFIG_HOTPLUG_CPU */
68 /* Need to know about CPUs going up/down? */
69 int __cpuinit register_cpu_notifier(struct notifier_block *nb)
72 mutex_lock(&cpu_add_remove_lock);
73 ret = raw_notifier_chain_register(&cpu_chain, nb);
74 mutex_unlock(&cpu_add_remove_lock);
78 #ifdef CONFIG_HOTPLUG_CPU
80 EXPORT_SYMBOL(register_cpu_notifier);
82 void unregister_cpu_notifier(struct notifier_block *nb)
84 mutex_lock(&cpu_add_remove_lock);
85 raw_notifier_chain_unregister(&cpu_chain, nb);
86 mutex_unlock(&cpu_add_remove_lock);
88 EXPORT_SYMBOL(unregister_cpu_notifier);
90 static inline void check_for_tasks(int cpu)
92 struct task_struct *p;
94 write_lock_irq(&tasklist_lock);
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\
100 (state = %ld, flags = %lx) \n",
101 p->comm, p->pid, cpu, p->state, p->flags);
103 write_unlock_irq(&tasklist_lock);
106 /* Take this CPU down. */
107 static int take_cpu_down(void *unused)
111 /* Ensure this CPU doesn't handle any more interrupts. */
112 err = __cpu_disable();
116 /* Force idle task to run as soon as we yield: it should
117 immediately notice cpu is offline and die quickly. */
122 /* Requires cpu_add_remove_lock to be held */
123 static int _cpu_down(unsigned int cpu)
126 struct task_struct *p;
127 cpumask_t old_allowed, tmp;
129 if (num_online_cpus() == 1)
132 if (!cpu_online(cpu))
135 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE,
137 err = raw_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE,
139 if (err == NOTIFY_BAD) {
140 printk("%s: attempt to take down CPU %u failed\n",
146 /* Ensure that we are not runnable on dying cpu */
147 old_allowed = current->cpus_allowed;
150 set_cpus_allowed(current, tmp);
152 mutex_lock(&cpu_bitmask_lock);
153 p = __stop_machine_run(take_cpu_down, NULL, cpu);
154 mutex_unlock(&cpu_bitmask_lock);
156 if (IS_ERR(p) || cpu_online(cpu)) {
157 /* CPU didn't die: tell everyone. Can't complain. */
158 if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED,
159 (void *)(long)cpu) == NOTIFY_BAD)
169 /* Wait for it to sleep (leaving idle task). */
170 while (!idle_cpu(cpu))
173 /* This actually kills the CPU. */
176 /* Move it here so it can run. */
177 kthread_bind(p, get_cpu());
180 /* CPU is completely dead: tell everyone. Too late to complain. */
181 if (raw_notifier_call_chain(&cpu_chain, CPU_DEAD,
182 (void *)(long)cpu) == NOTIFY_BAD)
185 check_for_tasks(cpu);
188 err = kthread_stop(p);
190 set_cpus_allowed(current, old_allowed);
192 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE,
197 int cpu_down(unsigned int cpu)
201 mutex_lock(&cpu_add_remove_lock);
202 if (cpu_hotplug_disabled)
205 err = _cpu_down(cpu);
207 mutex_unlock(&cpu_add_remove_lock);
210 #endif /*CONFIG_HOTPLUG_CPU*/
212 /* Requires cpu_add_remove_lock to be held */
213 static int __cpuinit _cpu_up(unsigned int cpu)
215 int ret, nr_calls = 0;
216 void *hcpu = (void *)(long)cpu;
218 if (cpu_online(cpu) || !cpu_present(cpu))
221 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_ACQUIRE, hcpu);
222 ret = __raw_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE, hcpu,
224 if (ret == NOTIFY_BAD) {
225 printk("%s: attempt to bring up CPU %u failed\n",
231 /* Arch-specific enabling code. */
232 mutex_lock(&cpu_bitmask_lock);
234 mutex_unlock(&cpu_bitmask_lock);
237 BUG_ON(!cpu_online(cpu));
239 /* Now call notifier in preparation. */
240 raw_notifier_call_chain(&cpu_chain, CPU_ONLINE, hcpu);
244 __raw_notifier_call_chain(&cpu_chain,
245 CPU_UP_CANCELED, hcpu, nr_calls, NULL);
246 raw_notifier_call_chain(&cpu_chain, CPU_LOCK_RELEASE, hcpu);
251 int __cpuinit cpu_up(unsigned int cpu)
255 mutex_lock(&cpu_add_remove_lock);
256 if (cpu_hotplug_disabled)
261 mutex_unlock(&cpu_add_remove_lock);
265 #ifdef CONFIG_SUSPEND_SMP
266 /* Needed to prevent the microcode driver from requesting firmware in its CPU
267 * hotplug notifier during the suspend/resume.
269 int suspend_cpu_hotplug;
270 EXPORT_SYMBOL(suspend_cpu_hotplug);
272 static cpumask_t frozen_cpus;
274 int disable_nonboot_cpus(void)
276 int cpu, first_cpu, error = 0;
278 mutex_lock(&cpu_add_remove_lock);
279 suspend_cpu_hotplug = 1;
280 first_cpu = first_cpu(cpu_online_map);
281 /* We take down all of the non-boot CPUs in one shot to avoid races
282 * with the userspace trying to use the CPU hotplug at the same time
284 cpus_clear(frozen_cpus);
285 printk("Disabling non-boot CPUs ...\n");
286 for_each_online_cpu(cpu) {
287 if (cpu == first_cpu)
289 error = _cpu_down(cpu);
291 cpu_set(cpu, frozen_cpus);
292 printk("CPU%d is down\n", cpu);
294 printk(KERN_ERR "Error taking CPU%d down: %d\n",
300 BUG_ON(num_online_cpus() > 1);
301 /* Make sure the CPUs won't be enabled by someone else */
302 cpu_hotplug_disabled = 1;
304 printk(KERN_ERR "Non-boot CPUs are not disabled\n");
306 suspend_cpu_hotplug = 0;
307 mutex_unlock(&cpu_add_remove_lock);
311 void enable_nonboot_cpus(void)
315 /* Allow everyone to use the CPU hotplug again */
316 mutex_lock(&cpu_add_remove_lock);
317 cpu_hotplug_disabled = 0;
318 if (cpus_empty(frozen_cpus))
321 suspend_cpu_hotplug = 1;
322 printk("Enabling non-boot CPUs ...\n");
323 for_each_cpu_mask(cpu, frozen_cpus) {
324 error = _cpu_up(cpu);
326 printk("CPU%d is up\n", cpu);
329 printk(KERN_WARNING "Error taking CPU%d up: %d\n", cpu, error);
331 cpus_clear(frozen_cpus);
332 suspend_cpu_hotplug = 0;
334 mutex_unlock(&cpu_add_remove_lock);