cpu.c 4.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* CPU control.
 * (C) 2001, 2002, 2003, 2004 Rusty Russell
 *
 * This code is licenced under the GPL.
 */
#include <linux/proc_fs.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/notifier.h>
#include <linux/sched.h>
#include <linux/unistd.h>
#include <linux/cpu.h>
#include <linux/module.h>
#include <linux/kthread.h>
#include <linux/stop_machine.h>
16
#include <linux/mutex.h>
L
Linus Torvalds 已提交
17 18

/* This protects CPUs going up and down... */
19 20
static DEFINE_MUTEX(cpu_add_remove_lock);
static DEFINE_MUTEX(cpu_bitmask_lock);
L
Linus Torvalds 已提交
21

22
static __cpuinitdata BLOCKING_NOTIFIER_HEAD(cpu_chain);
L
Linus Torvalds 已提交
23

24
#ifdef CONFIG_HOTPLUG_CPU
25

26 27 28
/* Crappy recursive lock-takers in cpufreq! Complain loudly about idiots */
static struct task_struct *recursive;
static int recursive_depth;
29

30 31
void lock_cpu_hotplug(void)
{
32 33 34 35 36 37 38 39 40 41 42 43 44 45
	struct task_struct *tsk = current;

	if (tsk == recursive) {
		static int warnings = 10;
		if (warnings) {
			printk(KERN_ERR "Lukewarm IQ detected in hotplug locking\n");
			WARN_ON(1);
			warnings--;
		}
		recursive_depth++;
		return;
	}
	mutex_lock(&cpu_bitmask_lock);
	recursive = tsk;
46 47
}
EXPORT_SYMBOL_GPL(lock_cpu_hotplug);
48

49 50
void unlock_cpu_hotplug(void)
{
51 52 53 54
	WARN_ON(recursive != current);
	if (recursive_depth) {
		recursive_depth--;
		return;
55
	}
56 57
	mutex_unlock(&cpu_bitmask_lock);
	recursive = NULL;
58 59 60 61
}
EXPORT_SYMBOL_GPL(unlock_cpu_hotplug);

#endif	/* CONFIG_HOTPLUG_CPU */
62

L
Linus Torvalds 已提交
63
/* Need to know about CPUs going up/down? */
64
int __cpuinit register_cpu_notifier(struct notifier_block *nb)
L
Linus Torvalds 已提交
65
{
66
	return blocking_notifier_chain_register(&cpu_chain, nb);
L
Linus Torvalds 已提交
67
}
68 69 70

#ifdef CONFIG_HOTPLUG_CPU

L
Linus Torvalds 已提交
71 72 73 74
EXPORT_SYMBOL(register_cpu_notifier);

void unregister_cpu_notifier(struct notifier_block *nb)
{
75
	blocking_notifier_chain_unregister(&cpu_chain, nb);
L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
}
EXPORT_SYMBOL(unregister_cpu_notifier);

static inline void check_for_tasks(int cpu)
{
	struct task_struct *p;

	write_lock_irq(&tasklist_lock);
	for_each_process(p) {
		if (task_cpu(p) == cpu &&
		    (!cputime_eq(p->utime, cputime_zero) ||
		     !cputime_eq(p->stime, cputime_zero)))
			printk(KERN_WARNING "Task %s (pid = %d) is on cpu %d\
				(state = %ld, flags = %lx) \n",
				 p->comm, p->pid, cpu, p->state, p->flags);
	}
	write_unlock_irq(&tasklist_lock);
}

/* Take this CPU down. */
static int take_cpu_down(void *unused)
{
	int err;

	/* Ensure this CPU doesn't handle any more interrupts. */
	err = __cpu_disable();
	if (err < 0)
Z
Zwane Mwaikambo 已提交
103
		return err;
L
Linus Torvalds 已提交
104

Z
Zwane Mwaikambo 已提交
105 106 107 108
	/* Force idle task to run as soon as we yield: it should
	   immediately notice cpu is offline and die quickly. */
	sched_idle_next();
	return 0;
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116
}

int cpu_down(unsigned int cpu)
{
	int err;
	struct task_struct *p;
	cpumask_t old_allowed, tmp;

117
	mutex_lock(&cpu_add_remove_lock);
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127
	if (num_online_cpus() == 1) {
		err = -EBUSY;
		goto out;
	}

	if (!cpu_online(cpu)) {
		err = -EINVAL;
		goto out;
	}

128
	err = blocking_notifier_call_chain(&cpu_chain, CPU_DOWN_PREPARE,
L
Linus Torvalds 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142
						(void *)(long)cpu);
	if (err == NOTIFY_BAD) {
		printk("%s: attempt to take down CPU %u failed\n",
				__FUNCTION__, cpu);
		err = -EINVAL;
		goto out;
	}

	/* Ensure that we are not runnable on dying cpu */
	old_allowed = current->cpus_allowed;
	tmp = CPU_MASK_ALL;
	cpu_clear(cpu, tmp);
	set_cpus_allowed(current, tmp);

143
	mutex_lock(&cpu_bitmask_lock);
L
Linus Torvalds 已提交
144
	p = __stop_machine_run(take_cpu_down, NULL, cpu);
145 146
	mutex_unlock(&cpu_bitmask_lock);

L
Linus Torvalds 已提交
147 148
	if (IS_ERR(p)) {
		/* CPU didn't die: tell everyone.  Can't complain. */
149
		if (blocking_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED,
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
				(void *)(long)cpu) == NOTIFY_BAD)
			BUG();

		err = PTR_ERR(p);
		goto out_allowed;
	}

	if (cpu_online(cpu))
		goto out_thread;

	/* Wait for it to sleep (leaving idle task). */
	while (!idle_cpu(cpu))
		yield();

	/* This actually kills the CPU. */
	__cpu_die(cpu);

	/* Move it here so it can run. */
	kthread_bind(p, get_cpu());
	put_cpu();

	/* CPU is completely dead: tell everyone.  Too late to complain. */
172 173
	if (blocking_notifier_call_chain(&cpu_chain, CPU_DEAD,
			(void *)(long)cpu) == NOTIFY_BAD)
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182
		BUG();

	check_for_tasks(cpu);

out_thread:
	err = kthread_stop(p);
out_allowed:
	set_cpus_allowed(current, old_allowed);
out:
183
	mutex_unlock(&cpu_add_remove_lock);
L
Linus Torvalds 已提交
184 185 186 187 188 189 190 191 192
	return err;
}
#endif /*CONFIG_HOTPLUG_CPU*/

int __devinit cpu_up(unsigned int cpu)
{
	int ret;
	void *hcpu = (void *)(long)cpu;

193
	mutex_lock(&cpu_add_remove_lock);
L
Linus Torvalds 已提交
194 195 196 197
	if (cpu_online(cpu) || !cpu_present(cpu)) {
		ret = -EINVAL;
		goto out;
	}
198

199
	ret = blocking_notifier_call_chain(&cpu_chain, CPU_UP_PREPARE, hcpu);
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207
	if (ret == NOTIFY_BAD) {
		printk("%s: attempt to bring up CPU %u failed\n",
				__FUNCTION__, cpu);
		ret = -EINVAL;
		goto out_notify;
	}

	/* Arch-specific enabling code. */
208
	mutex_lock(&cpu_bitmask_lock);
L
Linus Torvalds 已提交
209
	ret = __cpu_up(cpu);
210
	mutex_unlock(&cpu_bitmask_lock);
L
Linus Torvalds 已提交
211 212
	if (ret != 0)
		goto out_notify;
213
	BUG_ON(!cpu_online(cpu));
L
Linus Torvalds 已提交
214 215

	/* Now call notifier in preparation. */
216
	blocking_notifier_call_chain(&cpu_chain, CPU_ONLINE, hcpu);
L
Linus Torvalds 已提交
217 218 219

out_notify:
	if (ret != 0)
220 221
		blocking_notifier_call_chain(&cpu_chain,
				CPU_UP_CANCELED, hcpu);
L
Linus Torvalds 已提交
222
out:
223
	mutex_unlock(&cpu_add_remove_lock);
L
Linus Torvalds 已提交
224 225
	return ret;
}