cpu.c 46.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/* 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>
13 14
#include <linux/oom.h>
#include <linux/rcupdate.h>
15
#include <linux/export.h>
16
#include <linux/bug.h>
L
Linus Torvalds 已提交
17 18
#include <linux/kthread.h>
#include <linux/stop_machine.h>
19
#include <linux/mutex.h>
20
#include <linux/gfp.h>
21
#include <linux/suspend.h>
22
#include <linux/lockdep.h>
23
#include <linux/tick.h>
24
#include <linux/irq.h>
25
#include <linux/smpboot.h>
26

27
#include <trace/events/power.h>
28 29
#define CREATE_TRACE_POINTS
#include <trace/events/cpuhp.h>
L
Linus Torvalds 已提交
30

31 32
#include "smpboot.h"

33 34 35 36
/**
 * cpuhp_cpu_state - Per cpu hotplug state storage
 * @state:	The current cpu state
 * @target:	The target state
37 38
 * @thread:	Pointer to the hotplug thread
 * @should_run:	Thread should execute
39
 * @rollback:	Perform a rollback
40 41 42
 * @single:	Single callback invocation
 * @bringup:	Single callback bringup or teardown selector
 * @cb_state:	The state for a single callback (install/uninstall)
43 44
 * @result:	Result of the operation
 * @done:	Signal completion to the issuer of the task
45 46 47 48
 */
struct cpuhp_cpu_state {
	enum cpuhp_state	state;
	enum cpuhp_state	target;
49 50 51
#ifdef CONFIG_SMP
	struct task_struct	*thread;
	bool			should_run;
52
	bool			rollback;
53 54
	bool			single;
	bool			bringup;
55
	struct hlist_node	*node;
56 57 58 59
	enum cpuhp_state	cb_state;
	int			result;
	struct completion	done;
#endif
60 61 62 63 64 65 66 67 68 69 70
};

static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state);

/**
 * cpuhp_step - Hotplug state machine step
 * @name:	Name of the step
 * @startup:	Startup function of the step
 * @teardown:	Teardown function of the step
 * @skip_onerr:	Do not invoke the functions on error rollback
 *		Will go away once the notifiers	are gone
71
 * @cant_stop:	Bringup/teardown can't be stopped at this step
72 73
 */
struct cpuhp_step {
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
	const char		*name;
	union {
		int		(*startup)(unsigned int cpu);
		int		(*startup_multi)(unsigned int cpu,
						 struct hlist_node *node);
	};
	union {
		int		(*teardown)(unsigned int cpu);
		int		(*teardown_multi)(unsigned int cpu,
						  struct hlist_node *node);
	};
	struct hlist_head	list;
	bool			skip_onerr;
	bool			cant_stop;
	bool			multi_instance;
89 90
};

91
static DEFINE_MUTEX(cpuhp_state_mutex);
92
static struct cpuhp_step cpuhp_bp_states[];
93
static struct cpuhp_step cpuhp_ap_states[];
94

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
static bool cpuhp_is_ap_state(enum cpuhp_state state)
{
	/*
	 * The extra check for CPUHP_TEARDOWN_CPU is only for documentation
	 * purposes as that state is handled explicitly in cpu_down.
	 */
	return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU;
}

static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state)
{
	struct cpuhp_step *sp;

	sp = cpuhp_is_ap_state(state) ? cpuhp_ap_states : cpuhp_bp_states;
	return sp + state;
}

112 113 114 115
/**
 * cpuhp_invoke_callback _ Invoke the callbacks for a given state
 * @cpu:	The cpu for which the callback should be invoked
 * @step:	The step in the state machine
116
 * @bringup:	True if the bringup callback should be invoked
117
 *
118
 * Called from cpu hotplug and from the state register machinery.
119
 */
120
static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state,
121
				 bool bringup, struct hlist_node *node)
122 123
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
124
	struct cpuhp_step *step = cpuhp_get_step(state);
125 126 127 128 129 130 131 132
	int (*cbm)(unsigned int cpu, struct hlist_node *node);
	int (*cb)(unsigned int cpu);
	int ret, cnt;

	if (!step->multi_instance) {
		cb = bringup ? step->startup : step->teardown;
		if (!cb)
			return 0;
133
		trace_cpuhp_enter(cpu, st->target, state, cb);
134
		ret = cb(cpu);
135
		trace_cpuhp_exit(cpu, st->state, state, ret);
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		return ret;
	}
	cbm = bringup ? step->startup_multi : step->teardown_multi;
	if (!cbm)
		return 0;

	/* Single invocation for instance add/remove */
	if (node) {
		trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
		ret = cbm(cpu, node);
		trace_cpuhp_exit(cpu, st->state, state, ret);
		return ret;
	}

	/* State transition. Invoke on all instances */
	cnt = 0;
	hlist_for_each(node, &step->list) {
		trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
		ret = cbm(cpu, node);
		trace_cpuhp_exit(cpu, st->state, state, ret);
		if (ret)
			goto err;
		cnt++;
	}
	return 0;
err:
	/* Rollback the instances if one failed */
	cbm = !bringup ? step->startup_multi : step->teardown_multi;
	if (!cbm)
		return ret;

	hlist_for_each(node, &step->list) {
		if (!cnt--)
			break;
		cbm(cpu, node);
171 172 173 174
	}
	return ret;
}

175
#ifdef CONFIG_SMP
176
/* Serializes the updates to cpu_online_mask, cpu_present_mask */
177
static DEFINE_MUTEX(cpu_add_remove_lock);
178 179
bool cpuhp_tasks_frozen;
EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen);
L
Linus Torvalds 已提交
180

181
/*
182 183 184 185 186
 * The following two APIs (cpu_maps_update_begin/done) must be used when
 * attempting to serialize the updates to cpu_online_mask & cpu_present_mask.
 * The APIs cpu_notifier_register_begin/done() must be used to protect CPU
 * hotplug callback (un)registration performed using __register_cpu_notifier()
 * or __unregister_cpu_notifier().
187 188 189 190 191
 */
void cpu_maps_update_begin(void)
{
	mutex_lock(&cpu_add_remove_lock);
}
192
EXPORT_SYMBOL(cpu_notifier_register_begin);
193 194 195 196 197

void cpu_maps_update_done(void)
{
	mutex_unlock(&cpu_add_remove_lock);
}
198
EXPORT_SYMBOL(cpu_notifier_register_done);
199

200
static RAW_NOTIFIER_HEAD(cpu_chain);
L
Linus Torvalds 已提交
201

202 203 204 205 206
/* If set, cpu_up and cpu_down will return -EBUSY and do nothing.
 * Should always be manipulated under cpu_add_remove_lock
 */
static int cpu_hotplug_disabled;

207 208
#ifdef CONFIG_HOTPLUG_CPU

209 210
static struct {
	struct task_struct *active_writer;
211 212 213 214
	/* wait queue to wake up the active_writer */
	wait_queue_head_t wq;
	/* verifies that no writer will get active while readers are active */
	struct mutex lock;
215 216 217 218
	/*
	 * Also blocks the new readers during
	 * an ongoing cpu hotplug operation.
	 */
219
	atomic_t refcount;
220 221 222 223

#ifdef CONFIG_DEBUG_LOCK_ALLOC
	struct lockdep_map dep_map;
#endif
224 225
} cpu_hotplug = {
	.active_writer = NULL,
226
	.wq = __WAIT_QUEUE_HEAD_INITIALIZER(cpu_hotplug.wq),
227
	.lock = __MUTEX_INITIALIZER(cpu_hotplug.lock),
228 229 230
#ifdef CONFIG_DEBUG_LOCK_ALLOC
	.dep_map = {.name = "cpu_hotplug.lock" },
#endif
231
};
232

233 234
/* Lockdep annotations for get/put_online_cpus() and cpu_hotplug_begin/end() */
#define cpuhp_lock_acquire_read() lock_map_acquire_read(&cpu_hotplug.dep_map)
235 236
#define cpuhp_lock_acquire_tryread() \
				  lock_map_acquire_tryread(&cpu_hotplug.dep_map)
237 238 239
#define cpuhp_lock_acquire()      lock_map_acquire(&cpu_hotplug.dep_map)
#define cpuhp_lock_release()      lock_map_release(&cpu_hotplug.dep_map)

240

241
void get_online_cpus(void)
242
{
243 244
	might_sleep();
	if (cpu_hotplug.active_writer == current)
245
		return;
246
	cpuhp_lock_acquire_read();
247
	mutex_lock(&cpu_hotplug.lock);
248
	atomic_inc(&cpu_hotplug.refcount);
249
	mutex_unlock(&cpu_hotplug.lock);
250
}
251
EXPORT_SYMBOL_GPL(get_online_cpus);
252

253
void put_online_cpus(void)
254
{
255 256
	int refcount;

257
	if (cpu_hotplug.active_writer == current)
258
		return;
259

260 261 262 263 264 265
	refcount = atomic_dec_return(&cpu_hotplug.refcount);
	if (WARN_ON(refcount < 0)) /* try to fix things up */
		atomic_inc(&cpu_hotplug.refcount);

	if (refcount <= 0 && waitqueue_active(&cpu_hotplug.wq))
		wake_up(&cpu_hotplug.wq);
266

267
	cpuhp_lock_release();
268

269
}
270
EXPORT_SYMBOL_GPL(put_online_cpus);
271

272 273 274 275 276 277 278
/*
 * This ensures that the hotplug operation can begin only when the
 * refcount goes to zero.
 *
 * Note that during a cpu-hotplug operation, the new readers, if any,
 * will be blocked by the cpu_hotplug.lock
 *
279 280
 * Since cpu_hotplug_begin() is always called after invoking
 * cpu_maps_update_begin(), we can be sure that only one writer is active.
281 282 283 284 285 286 287 288 289 290
 *
 * Note that theoretically, there is a possibility of a livelock:
 * - Refcount goes to zero, last reader wakes up the sleeping
 *   writer.
 * - Last reader unlocks the cpu_hotplug.lock.
 * - A new reader arrives at this moment, bumps up the refcount.
 * - The writer acquires the cpu_hotplug.lock finds the refcount
 *   non zero and goes to sleep again.
 *
 * However, this is very difficult to achieve in practice since
291
 * get_online_cpus() not an api which is called all that often.
292 293
 *
 */
294
void cpu_hotplug_begin(void)
295
{
296
	DEFINE_WAIT(wait);
297

298
	cpu_hotplug.active_writer = current;
299
	cpuhp_lock_acquire();
300

301 302
	for (;;) {
		mutex_lock(&cpu_hotplug.lock);
303 304 305
		prepare_to_wait(&cpu_hotplug.wq, &wait, TASK_UNINTERRUPTIBLE);
		if (likely(!atomic_read(&cpu_hotplug.refcount)))
				break;
306 307 308
		mutex_unlock(&cpu_hotplug.lock);
		schedule();
	}
309
	finish_wait(&cpu_hotplug.wq, &wait);
310 311
}

312
void cpu_hotplug_done(void)
313 314 315
{
	cpu_hotplug.active_writer = NULL;
	mutex_unlock(&cpu_hotplug.lock);
316
	cpuhp_lock_release();
317
}
318

319 320 321 322 323 324 325 326 327 328
/*
 * Wait for currently running CPU hotplug operations to complete (if any) and
 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
 * hotplug path before performing hotplug operations. So acquiring that lock
 * guarantees mutual exclusion from any currently running hotplug operations.
 */
void cpu_hotplug_disable(void)
{
	cpu_maps_update_begin();
329
	cpu_hotplug_disabled++;
330 331
	cpu_maps_update_done();
}
332
EXPORT_SYMBOL_GPL(cpu_hotplug_disable);
333

334 335 336 337 338 339 340
static void __cpu_hotplug_enable(void)
{
	if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n"))
		return;
	cpu_hotplug_disabled--;
}

341 342 343
void cpu_hotplug_enable(void)
{
	cpu_maps_update_begin();
344
	__cpu_hotplug_enable();
345 346
	cpu_maps_update_done();
}
347
EXPORT_SYMBOL_GPL(cpu_hotplug_enable);
348
#endif	/* CONFIG_HOTPLUG_CPU */
349

L
Linus Torvalds 已提交
350
/* Need to know about CPUs going up/down? */
351
int register_cpu_notifier(struct notifier_block *nb)
L
Linus Torvalds 已提交
352
{
353
	int ret;
354
	cpu_maps_update_begin();
355
	ret = raw_notifier_chain_register(&cpu_chain, nb);
356
	cpu_maps_update_done();
357
	return ret;
L
Linus Torvalds 已提交
358
}
359

360
int __register_cpu_notifier(struct notifier_block *nb)
361 362 363 364
{
	return raw_notifier_chain_register(&cpu_chain, nb);
}

365
static int __cpu_notify(unsigned long val, unsigned int cpu, int nr_to_call,
366 367
			int *nr_calls)
{
368 369 370
	unsigned long mod = cpuhp_tasks_frozen ? CPU_TASKS_FROZEN : 0;
	void *hcpu = (void *)(long)cpu;

371 372
	int ret;

373
	ret = __raw_notifier_call_chain(&cpu_chain, val | mod, hcpu, nr_to_call,
374
					nr_calls);
375 376

	return notifier_to_errno(ret);
377 378
}

379
static int cpu_notify(unsigned long val, unsigned int cpu)
380
{
381
	return __cpu_notify(val, cpu, -1, NULL);
382 383
}

384 385 386 387 388
static void cpu_notify_nofail(unsigned long val, unsigned int cpu)
{
	BUG_ON(cpu_notify(val, cpu));
}

389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
/* Notifier wrappers for transitioning to state machine */
static int notify_prepare(unsigned int cpu)
{
	int nr_calls = 0;
	int ret;

	ret = __cpu_notify(CPU_UP_PREPARE, cpu, -1, &nr_calls);
	if (ret) {
		nr_calls--;
		printk(KERN_WARNING "%s: attempt to bring up CPU %u failed\n",
				__func__, cpu);
		__cpu_notify(CPU_UP_CANCELED, cpu, nr_calls, NULL);
	}
	return ret;
}

static int notify_online(unsigned int cpu)
{
	cpu_notify(CPU_ONLINE, cpu);
	return 0;
}

411 412 413 414 415 416
static int notify_starting(unsigned int cpu)
{
	cpu_notify(CPU_STARTING, cpu);
	return 0;
}

417 418 419 420 421 422 423 424
static int bringup_wait_for_ap(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);

	wait_for_completion(&st->done);
	return st->result;
}

425 426 427 428 429
static int bringup_cpu(unsigned int cpu)
{
	struct task_struct *idle = idle_thread_get(cpu);
	int ret;

430 431 432 433 434 435 436
	/*
	 * Some architectures have to walk the irq descriptors to
	 * setup the vector space for the cpu which comes online.
	 * Prevent irq alloc/free across the bringup.
	 */
	irq_lock_sparse();

437 438
	/* Arch-specific enabling code. */
	ret = __cpu_up(cpu, idle);
439
	irq_unlock_sparse();
440 441 442 443
	if (ret) {
		cpu_notify(CPU_UP_CANCELED, cpu);
		return ret;
	}
444
	ret = bringup_wait_for_ap(cpu);
445
	BUG_ON(!cpu_online(cpu));
446
	return ret;
447 448
}

449 450 451
/*
 * Hotplug state machine related functions
 */
452
static void undo_cpu_down(unsigned int cpu, struct cpuhp_cpu_state *st)
453 454
{
	for (st->state++; st->state < st->target; st->state++) {
455
		struct cpuhp_step *step = cpuhp_get_step(st->state);
456 457

		if (!step->skip_onerr)
458
			cpuhp_invoke_callback(cpu, st->state, true, NULL);
459 460 461 462
	}
}

static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
463
				enum cpuhp_state target)
464 465 466 467 468
{
	enum cpuhp_state prev_state = st->state;
	int ret = 0;

	for (; st->state > target; st->state--) {
469
		ret = cpuhp_invoke_callback(cpu, st->state, false, NULL);
470 471
		if (ret) {
			st->target = prev_state;
472
			undo_cpu_down(cpu, st);
473 474 475 476 477 478
			break;
		}
	}
	return ret;
}

479
static void undo_cpu_up(unsigned int cpu, struct cpuhp_cpu_state *st)
480 481
{
	for (st->state--; st->state > st->target; st->state--) {
482
		struct cpuhp_step *step = cpuhp_get_step(st->state);
483 484

		if (!step->skip_onerr)
485
			cpuhp_invoke_callback(cpu, st->state, false, NULL);
486 487 488 489
	}
}

static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
490
			      enum cpuhp_state target)
491 492 493 494 495 496
{
	enum cpuhp_state prev_state = st->state;
	int ret = 0;

	while (st->state < target) {
		st->state++;
497
		ret = cpuhp_invoke_callback(cpu, st->state, true, NULL);
498 499
		if (ret) {
			st->target = prev_state;
500
			undo_cpu_up(cpu, st);
501 502 503 504 505 506
			break;
		}
	}
	return ret;
}

507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
/*
 * The cpu hotplug threads manage the bringup and teardown of the cpus
 */
static void cpuhp_create(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);

	init_completion(&st->done);
}

static int cpuhp_should_run(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);

	return st->should_run;
}

/* Execute the teardown callbacks. Used to be CPU_DOWN_PREPARE */
static int cpuhp_ap_offline(unsigned int cpu, struct cpuhp_cpu_state *st)
{
527
	enum cpuhp_state target = max((int)st->target, CPUHP_TEARDOWN_CPU);
528

529
	return cpuhp_down_callbacks(cpu, st, target);
530 531 532 533 534
}

/* Execute the online startup callbacks. Used to be CPU_ONLINE */
static int cpuhp_ap_online(unsigned int cpu, struct cpuhp_cpu_state *st)
{
535
	return cpuhp_up_callbacks(cpu, st, st->target);
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
}

/*
 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
 * callbacks when a state gets [un]installed at runtime.
 */
static void cpuhp_thread_fun(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
	int ret = 0;

	/*
	 * Paired with the mb() in cpuhp_kick_ap_work and
	 * cpuhp_invoke_ap_callback, so the work set is consistent visible.
	 */
	smp_mb();
	if (!st->should_run)
		return;

	st->should_run = false;

	/* Single callback invocation for [un]install ? */
558
	if (st->single) {
559 560
		if (st->cb_state < CPUHP_AP_ONLINE) {
			local_irq_disable();
561
			ret = cpuhp_invoke_callback(cpu, st->cb_state,
562
						    st->bringup, st->node);
563 564
			local_irq_enable();
		} else {
565
			ret = cpuhp_invoke_callback(cpu, st->cb_state,
566
						    st->bringup, st->node);
567
		}
568 569 570
	} else if (st->rollback) {
		BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);

571
		undo_cpu_down(cpu, st);
572 573 574 575 576 577
		/*
		 * This is a momentary workaround to keep the notifier users
		 * happy. Will go away once we got rid of the notifiers.
		 */
		cpu_notify_nofail(CPU_DOWN_FAILED, cpu);
		st->rollback = false;
578
	} else {
579
		/* Cannot happen .... */
580
		BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);
581

582 583 584 585 586 587 588 589 590 591 592
		/* Regular hotplug work */
		if (st->state < st->target)
			ret = cpuhp_ap_online(cpu, st);
		else if (st->state > st->target)
			ret = cpuhp_ap_offline(cpu, st);
	}
	st->result = ret;
	complete(&st->done);
}

/* Invoke a single callback on a remote cpu */
593
static int
594 595
cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
			 struct hlist_node *node)
596 597 598 599 600 601
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);

	if (!cpu_online(cpu))
		return 0;

602 603 604 605 606
	/*
	 * If we are up and running, use the hotplug thread. For early calls
	 * we invoke the thread function directly.
	 */
	if (!st->thread)
607
		return cpuhp_invoke_callback(cpu, state, bringup, node);
608

609
	st->cb_state = state;
610 611
	st->single = true;
	st->bringup = bringup;
612
	st->node = node;
613

614 615 616 617 618 619 620 621 622 623 624 625
	/*
	 * Make sure the above stores are visible before should_run becomes
	 * true. Paired with the mb() above in cpuhp_thread_fun()
	 */
	smp_mb();
	st->should_run = true;
	wake_up_process(st->thread);
	wait_for_completion(&st->done);
	return st->result;
}

/* Regular hotplug invocation of the AP hotplug thread */
626
static void __cpuhp_kick_ap_work(struct cpuhp_cpu_state *st)
627 628
{
	st->result = 0;
629
	st->single = false;
630 631 632 633 634 635 636
	/*
	 * Make sure the above stores are visible before should_run becomes
	 * true. Paired with the mb() above in cpuhp_thread_fun()
	 */
	smp_mb();
	st->should_run = true;
	wake_up_process(st->thread);
637 638 639 640 641 642 643 644 645
}

static int cpuhp_kick_ap_work(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
	enum cpuhp_state state = st->state;

	trace_cpuhp_enter(cpu, st->target, state, cpuhp_kick_ap_work);
	__cpuhp_kick_ap_work(st);
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
	wait_for_completion(&st->done);
	trace_cpuhp_exit(cpu, st->state, state, st->result);
	return st->result;
}

static struct smp_hotplug_thread cpuhp_threads = {
	.store			= &cpuhp_state.thread,
	.create			= &cpuhp_create,
	.thread_should_run	= cpuhp_should_run,
	.thread_fn		= cpuhp_thread_fun,
	.thread_comm		= "cpuhp/%u",
	.selfparking		= true,
};

void __init cpuhp_threads_init(void)
{
	BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
	kthread_unpark(this_cpu_read(cpuhp_state.thread));
}

666
#ifdef CONFIG_HOTPLUG_CPU
L
Linus Torvalds 已提交
667
EXPORT_SYMBOL(register_cpu_notifier);
668
EXPORT_SYMBOL(__register_cpu_notifier);
669
void unregister_cpu_notifier(struct notifier_block *nb)
L
Linus Torvalds 已提交
670
{
671
	cpu_maps_update_begin();
672
	raw_notifier_chain_unregister(&cpu_chain, nb);
673
	cpu_maps_update_done();
L
Linus Torvalds 已提交
674 675 676
}
EXPORT_SYMBOL(unregister_cpu_notifier);

677
void __unregister_cpu_notifier(struct notifier_block *nb)
678 679 680 681 682
{
	raw_notifier_chain_unregister(&cpu_chain, nb);
}
EXPORT_SYMBOL(__unregister_cpu_notifier);

683 684 685 686 687 688 689 690 691 692 693 694
/**
 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
 * @cpu: a CPU id
 *
 * This function walks all processes, finds a valid mm struct for each one and
 * then clears a corresponding bit in mm's cpumask.  While this all sounds
 * trivial, there are various non-obvious corner cases, which this function
 * tries to solve in a safe manner.
 *
 * Also note that the function uses a somewhat relaxed locking scheme, so it may
 * be called only for an already offlined CPU.
 */
695 696 697 698 699 700 701 702 703 704 705
void clear_tasks_mm_cpumask(int cpu)
{
	struct task_struct *p;

	/*
	 * This function is called after the cpu is taken down and marked
	 * offline, so its not like new tasks will ever get this cpu set in
	 * their mm mask. -- Peter Zijlstra
	 * Thus, we may use rcu_read_lock() here, instead of grabbing
	 * full-fledged tasklist_lock.
	 */
706
	WARN_ON(cpu_online(cpu));
707 708 709 710
	rcu_read_lock();
	for_each_process(p) {
		struct task_struct *t;

711 712 713 714
		/*
		 * Main thread might exit, but other threads may still have
		 * a valid mm. Find one.
		 */
715 716 717 718 719 720 721 722 723
		t = find_lock_task_mm(p);
		if (!t)
			continue;
		cpumask_clear_cpu(cpu, mm_cpumask(t->mm));
		task_unlock(t);
	}
	rcu_read_unlock();
}

K
Kirill Tkhai 已提交
724
static inline void check_for_tasks(int dead_cpu)
L
Linus Torvalds 已提交
725
{
K
Kirill Tkhai 已提交
726
	struct task_struct *g, *p;
L
Linus Torvalds 已提交
727

728 729
	read_lock(&tasklist_lock);
	for_each_process_thread(g, p) {
K
Kirill Tkhai 已提交
730 731 732 733 734 735 736 737 738 739 740 741 742 743
		if (!p->on_rq)
			continue;
		/*
		 * We do the check with unlocked task_rq(p)->lock.
		 * Order the reading to do not warn about a task,
		 * which was running on this cpu in the past, and
		 * it's just been woken on another cpu.
		 */
		rmb();
		if (task_cpu(p) != dead_cpu)
			continue;

		pr_warn("Task %s (pid=%d) is on cpu %d (state=%ld, flags=%x)\n",
			p->comm, task_pid_nr(p), dead_cpu, p->state, p->flags);
744 745
	}
	read_unlock(&tasklist_lock);
L
Linus Torvalds 已提交
746 747
}

748 749 750 751 752 753 754 755 756 757 758 759 760 761
static int notify_down_prepare(unsigned int cpu)
{
	int err, nr_calls = 0;

	err = __cpu_notify(CPU_DOWN_PREPARE, cpu, -1, &nr_calls);
	if (err) {
		nr_calls--;
		__cpu_notify(CPU_DOWN_FAILED, cpu, nr_calls, NULL);
		pr_warn("%s: attempt to take down CPU %u failed\n",
				__func__, cpu);
	}
	return err;
}

762 763 764 765 766 767
static int notify_dying(unsigned int cpu)
{
	cpu_notify(CPU_DYING, cpu);
	return 0;
}

L
Linus Torvalds 已提交
768
/* Take this CPU down. */
769
static int take_cpu_down(void *_param)
L
Linus Torvalds 已提交
770
{
771 772
	struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
	enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
773
	int err, cpu = smp_processor_id();
L
Linus Torvalds 已提交
774 775 776 777

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

780 781 782 783 784 785
	/*
	 * We get here while we are in CPUHP_TEARDOWN_CPU state and we must not
	 * do this step again.
	 */
	WARN_ON(st->state != CPUHP_TEARDOWN_CPU);
	st->state--;
786
	/* Invoke the former CPU_DYING callbacks */
787
	for (; st->state > target; st->state--)
788
		cpuhp_invoke_callback(cpu, st->state, false, NULL);
789

790 791
	/* Give up timekeeping duties */
	tick_handover_do_timer();
792
	/* Park the stopper thread */
793
	stop_machine_park(cpu);
Z
Zwane Mwaikambo 已提交
794
	return 0;
L
Linus Torvalds 已提交
795 796
}

797
static int takedown_cpu(unsigned int cpu)
L
Linus Torvalds 已提交
798
{
799
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
800
	int err;
L
Linus Torvalds 已提交
801

802
	/* Park the smpboot threads */
803
	kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread);
804
	smpboot_park_threads(cpu);
805

806
	/*
807 808
	 * Prevent irq alloc/free while the dying cpu reorganizes the
	 * interrupt affinities.
809
	 */
810
	irq_lock_sparse();
811

812 813 814
	/*
	 * So now all preempt/rcu users must observe !cpu_active().
	 */
815
	err = stop_machine(take_cpu_down, NULL, cpumask_of(cpu));
816
	if (err) {
817
		/* CPU refused to die */
818
		irq_unlock_sparse();
819 820
		/* Unpark the hotplug thread so we can rollback there */
		kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread);
821
		return err;
822
	}
823
	BUG_ON(cpu_online(cpu));
L
Linus Torvalds 已提交
824

825 826 827 828
	/*
	 * The migration_call() CPU_DYING callback will have removed all
	 * runnable tasks from the cpu, there's only the idle task left now
	 * that the migration thread is done doing the stop_machine thing.
P
Peter Zijlstra 已提交
829 830
	 *
	 * Wait for the stop thread to go away.
831
	 */
832 833
	wait_for_completion(&st->done);
	BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
L
Linus Torvalds 已提交
834

835 836 837
	/* Interrupts are moved away from the dying cpu, reenable alloc/free */
	irq_unlock_sparse();

838
	hotplug_cpu__broadcast_tick_pull(cpu);
L
Linus Torvalds 已提交
839 840 841
	/* This actually kills the CPU. */
	__cpu_die(cpu);

842
	tick_cleanup_dead_cpu(cpu);
843 844
	return 0;
}
L
Linus Torvalds 已提交
845

846 847 848
static int notify_dead(unsigned int cpu)
{
	cpu_notify_nofail(CPU_DEAD, cpu);
L
Linus Torvalds 已提交
849
	check_for_tasks(cpu);
850 851 852
	return 0;
}

853 854 855 856 857 858 859
static void cpuhp_complete_idle_dead(void *arg)
{
	struct cpuhp_cpu_state *st = arg;

	complete(&st->done);
}

860 861 862 863 864
void cpuhp_report_idle_dead(void)
{
	struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);

	BUG_ON(st->state != CPUHP_AP_OFFLINE);
865
	rcu_report_dead(smp_processor_id());
866 867 868 869 870 871 872
	st->state = CPUHP_AP_IDLE_DEAD;
	/*
	 * We cannot call complete after rcu_report_dead() so we delegate it
	 * to an online cpu.
	 */
	smp_call_function_single(cpumask_first(cpu_online_mask),
				 cpuhp_complete_idle_dead, st, 0);
873 874
}

875 876 877 878
#else
#define notify_down_prepare	NULL
#define takedown_cpu		NULL
#define notify_dead		NULL
879
#define notify_dying		NULL
880 881 882 883
#endif

#ifdef CONFIG_HOTPLUG_CPU

884
/* Requires cpu_add_remove_lock to be held */
885 886
static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
			   enum cpuhp_state target)
887
{
888 889 890
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
	int prev_state, ret = 0;
	bool hasdied = false;
891 892 893 894

	if (num_online_cpus() == 1)
		return -EBUSY;

895
	if (!cpu_present(cpu))
896 897 898 899 900 901
		return -EINVAL;

	cpu_hotplug_begin();

	cpuhp_tasks_frozen = tasks_frozen;

902
	prev_state = st->state;
903
	st->target = target;
904 905 906 907
	/*
	 * If the current CPU state is in the range of the AP hotplug thread,
	 * then we need to kick the thread.
	 */
908
	if (st->state > CPUHP_TEARDOWN_CPU) {
909 910 911 912 913 914 915 916 917 918 919 920
		ret = cpuhp_kick_ap_work(cpu);
		/*
		 * The AP side has done the error rollback already. Just
		 * return the error code..
		 */
		if (ret)
			goto out;

		/*
		 * We might have stopped still in the range of the AP hotplug
		 * thread. Nothing to do anymore.
		 */
921
		if (st->state > CPUHP_TEARDOWN_CPU)
922 923 924
			goto out;
	}
	/*
925
	 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
926 927
	 * to do the further cleanups.
	 */
928
	ret = cpuhp_down_callbacks(cpu, st, target);
929 930 931 932 933
	if (ret && st->state > CPUHP_TEARDOWN_CPU && st->state < prev_state) {
		st->target = prev_state;
		st->rollback = true;
		cpuhp_kick_ap_work(cpu);
	}
934

935
	hasdied = prev_state != st->state && st->state == CPUHP_OFFLINE;
936
out:
937
	cpu_hotplug_done();
938 939
	/* This post dead nonsense must die */
	if (!ret && hasdied)
940
		cpu_notify_nofail(CPU_POST_DEAD, cpu);
941
	return ret;
942 943
}

944
static int do_cpu_down(unsigned int cpu, enum cpuhp_state target)
945
{
946
	int err;
947

948
	cpu_maps_update_begin();
949 950

	if (cpu_hotplug_disabled) {
951
		err = -EBUSY;
952 953 954
		goto out;
	}

955
	err = _cpu_down(cpu, 0, target);
956

957
out:
958
	cpu_maps_update_done();
L
Linus Torvalds 已提交
959 960
	return err;
}
961 962 963 964
int cpu_down(unsigned int cpu)
{
	return do_cpu_down(cpu, CPUHP_OFFLINE);
}
965
EXPORT_SYMBOL(cpu_down);
L
Linus Torvalds 已提交
966 967
#endif /*CONFIG_HOTPLUG_CPU*/

968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
/**
 * notify_cpu_starting(cpu) - call the CPU_STARTING notifiers
 * @cpu: cpu that just started
 *
 * This function calls the cpu_chain notifiers with CPU_STARTING.
 * It must be called by the arch code on the new cpu, before the new cpu
 * enables interrupts and before the "boot" cpu returns from __cpu_up().
 */
void notify_cpu_starting(unsigned int cpu)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
	enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);

	while (st->state < target) {
		st->state++;
983
		cpuhp_invoke_callback(cpu, st->state, true, NULL);
984 985 986
	}
}

987 988
/*
 * Called from the idle task. We need to set active here, so we can kick off
989 990 991
 * the stopper thread and unpark the smpboot threads. If the target state is
 * beyond CPUHP_AP_ONLINE_IDLE we kick cpuhp thread and let it bring up the
 * cpu further.
992
 */
993
void cpuhp_online_idle(enum cpuhp_state state)
994
{
995 996 997 998 999 1000 1001 1002
	struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
	unsigned int cpu = smp_processor_id();

	/* Happens for the boot cpu */
	if (state != CPUHP_AP_ONLINE_IDLE)
		return;

	st->state = CPUHP_AP_ONLINE_IDLE;
1003

1004
	/* Unpark the stopper thread and the hotplug thread of this cpu */
1005
	stop_machine_unpark(cpu);
1006
	kthread_unpark(st->thread);
1007 1008 1009 1010 1011 1012

	/* Should we go further up ? */
	if (st->target > CPUHP_AP_ONLINE_IDLE)
		__cpuhp_kick_ap_work(st);
	else
		complete(&st->done);
1013 1014
}

1015
/* Requires cpu_add_remove_lock to be held */
1016
static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
L
Linus Torvalds 已提交
1017
{
1018
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1019
	struct task_struct *idle;
1020
	int ret = 0;
L
Linus Torvalds 已提交
1021

1022
	cpu_hotplug_begin();
1023

1024
	if (!cpu_present(cpu)) {
1025 1026 1027 1028
		ret = -EINVAL;
		goto out;
	}

1029 1030 1031 1032 1033
	/*
	 * The caller of do_cpu_up might have raced with another
	 * caller. Ignore it for now.
	 */
	if (st->state >= target)
1034
		goto out;
1035 1036 1037 1038 1039 1040 1041 1042

	if (st->state == CPUHP_OFFLINE) {
		/* Let it fail before we try to bring the cpu up */
		idle = idle_thread_get(cpu);
		if (IS_ERR(idle)) {
			ret = PTR_ERR(idle);
			goto out;
		}
1043
	}
1044

1045 1046
	cpuhp_tasks_frozen = tasks_frozen;

1047
	st->target = target;
1048 1049 1050 1051
	/*
	 * If the current CPU state is in the range of the AP hotplug thread,
	 * then we need to kick the thread once more.
	 */
1052
	if (st->state > CPUHP_BRINGUP_CPU) {
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
		ret = cpuhp_kick_ap_work(cpu);
		/*
		 * The AP side has done the error rollback already. Just
		 * return the error code..
		 */
		if (ret)
			goto out;
	}

	/*
	 * Try to reach the target state. We max out on the BP at
1064
	 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
1065 1066
	 * responsible for bringing it up to the target state.
	 */
1067
	target = min((int)target, CPUHP_BRINGUP_CPU);
1068
	ret = cpuhp_up_callbacks(cpu, st, target);
1069
out:
1070
	cpu_hotplug_done();
1071 1072 1073
	return ret;
}

1074
static int do_cpu_up(unsigned int cpu, enum cpuhp_state target)
1075 1076
{
	int err = 0;
1077

R
Rusty Russell 已提交
1078
	if (!cpu_possible(cpu)) {
1079 1080
		pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
		       cpu);
1081
#if defined(CONFIG_IA64)
1082
		pr_err("please check additional_cpus= boot parameter\n");
1083 1084 1085
#endif
		return -EINVAL;
	}
1086

1087 1088 1089
	err = try_online_node(cpu_to_node(cpu));
	if (err)
		return err;
1090

1091
	cpu_maps_update_begin();
1092 1093

	if (cpu_hotplug_disabled) {
1094
		err = -EBUSY;
1095 1096 1097
		goto out;
	}

1098
	err = _cpu_up(cpu, 0, target);
1099
out:
1100
	cpu_maps_update_done();
1101 1102
	return err;
}
1103 1104 1105 1106 1107

int cpu_up(unsigned int cpu)
{
	return do_cpu_up(cpu, CPUHP_ONLINE);
}
P
Paul E. McKenney 已提交
1108
EXPORT_SYMBOL_GPL(cpu_up);
1109

1110
#ifdef CONFIG_PM_SLEEP_SMP
R
Rusty Russell 已提交
1111
static cpumask_var_t frozen_cpus;
1112 1113 1114

int disable_nonboot_cpus(void)
{
1115
	int cpu, first_cpu, error = 0;
1116

1117
	cpu_maps_update_begin();
R
Rusty Russell 已提交
1118
	first_cpu = cpumask_first(cpu_online_mask);
1119 1120
	/*
	 * We take down all of the non-boot CPUs in one shot to avoid races
1121 1122
	 * with the userspace trying to use the CPU hotplug at the same time
	 */
R
Rusty Russell 已提交
1123
	cpumask_clear(frozen_cpus);
1124

1125
	pr_info("Disabling non-boot CPUs ...\n");
1126 1127 1128
	for_each_online_cpu(cpu) {
		if (cpu == first_cpu)
			continue;
1129
		trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
1130
		error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
1131
		trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
1132
		if (!error)
R
Rusty Russell 已提交
1133
			cpumask_set_cpu(cpu, frozen_cpus);
1134
		else {
1135
			pr_err("Error taking CPU%d down: %d\n", cpu, error);
1136 1137 1138
			break;
		}
	}
1139

1140
	if (!error)
1141
		BUG_ON(num_online_cpus() > 1);
1142
	else
1143
		pr_err("Non-boot CPUs are not disabled\n");
1144 1145 1146 1147 1148 1149 1150 1151

	/*
	 * Make sure the CPUs won't be enabled by someone else. We need to do
	 * this even in case of failure as all disable_nonboot_cpus() users are
	 * supposed to do enable_nonboot_cpus() on the failure path.
	 */
	cpu_hotplug_disabled++;

1152
	cpu_maps_update_done();
1153 1154 1155
	return error;
}

1156 1157 1158 1159 1160 1161 1162 1163
void __weak arch_enable_nonboot_cpus_begin(void)
{
}

void __weak arch_enable_nonboot_cpus_end(void)
{
}

1164
void enable_nonboot_cpus(void)
1165 1166 1167 1168
{
	int cpu, error;

	/* Allow everyone to use the CPU hotplug again */
1169
	cpu_maps_update_begin();
1170
	__cpu_hotplug_enable();
R
Rusty Russell 已提交
1171
	if (cpumask_empty(frozen_cpus))
1172
		goto out;
1173

1174
	pr_info("Enabling non-boot CPUs ...\n");
1175 1176 1177

	arch_enable_nonboot_cpus_begin();

R
Rusty Russell 已提交
1178
	for_each_cpu(cpu, frozen_cpus) {
1179
		trace_suspend_resume(TPS("CPU_ON"), cpu, true);
1180
		error = _cpu_up(cpu, 1, CPUHP_ONLINE);
1181
		trace_suspend_resume(TPS("CPU_ON"), cpu, false);
1182
		if (!error) {
1183
			pr_info("CPU%d is up\n", cpu);
1184 1185
			continue;
		}
1186
		pr_warn("Error taking CPU%d up: %d\n", cpu, error);
1187
	}
1188 1189 1190

	arch_enable_nonboot_cpus_end();

R
Rusty Russell 已提交
1191
	cpumask_clear(frozen_cpus);
1192
out:
1193
	cpu_maps_update_done();
L
Linus Torvalds 已提交
1194
}
R
Rusty Russell 已提交
1195

1196
static int __init alloc_frozen_cpus(void)
R
Rusty Russell 已提交
1197 1198 1199 1200 1201 1202
{
	if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
		return -ENOMEM;
	return 0;
}
core_initcall(alloc_frozen_cpus);
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222

/*
 * When callbacks for CPU hotplug notifications are being executed, we must
 * ensure that the state of the system with respect to the tasks being frozen
 * or not, as reported by the notification, remains unchanged *throughout the
 * duration* of the execution of the callbacks.
 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
 *
 * This synchronization is implemented by mutually excluding regular CPU
 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
 * Hibernate notifications.
 */
static int
cpu_hotplug_pm_callback(struct notifier_block *nb,
			unsigned long action, void *ptr)
{
	switch (action) {

	case PM_SUSPEND_PREPARE:
	case PM_HIBERNATION_PREPARE:
1223
		cpu_hotplug_disable();
1224 1225 1226 1227
		break;

	case PM_POST_SUSPEND:
	case PM_POST_HIBERNATION:
1228
		cpu_hotplug_enable();
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
		break;

	default:
		return NOTIFY_DONE;
	}

	return NOTIFY_OK;
}


1239
static int __init cpu_hotplug_pm_sync_init(void)
1240
{
1241 1242 1243 1244 1245
	/*
	 * cpu_hotplug_pm_callback has higher priority than x86
	 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
	 * to disable cpu hotplug to avoid cpu hotplug race.
	 */
1246 1247 1248 1249 1250
	pm_notifier(cpu_hotplug_pm_callback, 0);
	return 0;
}
core_initcall(cpu_hotplug_pm_sync_init);

1251
#endif /* CONFIG_PM_SLEEP_SMP */
1252 1253

#endif /* CONFIG_SMP */
1254

1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
/* Boot processor state steps */
static struct cpuhp_step cpuhp_bp_states[] = {
	[CPUHP_OFFLINE] = {
		.name			= "offline",
		.startup		= NULL,
		.teardown		= NULL,
	},
#ifdef CONFIG_SMP
	[CPUHP_CREATE_THREADS]= {
		.name			= "threads:create",
		.startup		= smpboot_create_threads,
		.teardown		= NULL,
1267
		.cant_stop		= true,
1268
	},
1269 1270 1271 1272 1273
	[CPUHP_PERF_PREPARE] = {
		.name = "perf prepare",
		.startup = perf_event_init_cpu,
		.teardown = perf_event_exit_cpu,
	},
1274 1275 1276 1277 1278
	[CPUHP_WORKQUEUE_PREP] = {
		.name = "workqueue prepare",
		.startup = workqueue_prepare_cpu,
		.teardown = NULL,
	},
1279 1280 1281 1282 1283
	[CPUHP_HRTIMERS_PREPARE] = {
		.name = "hrtimers prepare",
		.startup = hrtimers_prepare_cpu,
		.teardown = hrtimers_dead_cpu,
	},
1284 1285 1286 1287 1288
	[CPUHP_SMPCFD_PREPARE] = {
		.name = "SMPCFD prepare",
		.startup = smpcfd_prepare_cpu,
		.teardown = smpcfd_dead_cpu,
	},
1289 1290 1291 1292 1293
	[CPUHP_RCUTREE_PREP] = {
		.name = "RCU-tree prepare",
		.startup = rcutree_prepare_cpu,
		.teardown = rcutree_dead_cpu,
	},
1294 1295 1296 1297
	/*
	 * Preparatory and dead notifiers. Will be replaced once the notifiers
	 * are converted to states.
	 */
1298 1299 1300 1301 1302
	[CPUHP_NOTIFY_PREPARE] = {
		.name			= "notify:prepare",
		.startup		= notify_prepare,
		.teardown		= notify_dead,
		.skip_onerr		= true,
1303
		.cant_stop		= true,
1304
	},
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
	/*
	 * On the tear-down path, timers_dead_cpu() must be invoked
	 * before blk_mq_queue_reinit_notify() from notify_dead(),
	 * otherwise a RCU stall occurs.
	 */
	[CPUHP_TIMERS_DEAD] = {
		.name = "timers dead",
		.startup = NULL,
		.teardown = timers_dead_cpu,
	},
1315
	/* Kicks the plugged cpu into life */
1316 1317 1318
	[CPUHP_BRINGUP_CPU] = {
		.name			= "cpu:bringup",
		.startup		= bringup_cpu,
1319
		.teardown		= NULL,
1320
		.cant_stop		= true,
1321
	},
1322 1323 1324 1325
	[CPUHP_AP_SMPCFD_DYING] = {
		.startup = NULL,
		.teardown = smpcfd_dying_cpu,
	},
1326 1327 1328 1329
	/*
	 * Handled on controll processor until the plugged processor manages
	 * this itself.
	 */
1330 1331 1332
	[CPUHP_TEARDOWN_CPU] = {
		.name			= "cpu:teardown",
		.startup		= NULL,
1333
		.teardown		= takedown_cpu,
1334
		.cant_stop		= true,
1335
	},
1336 1337
#else
	[CPUHP_BRINGUP_CPU] = { },
1338 1339 1340
#endif
};

1341 1342 1343
/* Application processor state steps */
static struct cpuhp_step cpuhp_ap_states[] = {
#ifdef CONFIG_SMP
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
	/* Final state before CPU kills itself */
	[CPUHP_AP_IDLE_DEAD] = {
		.name			= "idle:dead",
	},
	/*
	 * Last state before CPU enters the idle loop to die. Transient state
	 * for synchronization.
	 */
	[CPUHP_AP_OFFLINE] = {
		.name			= "ap:offline",
		.cant_stop		= true,
	},
1356 1357 1358 1359
	/* First state is scheduler control. Interrupts are disabled */
	[CPUHP_AP_SCHED_STARTING] = {
		.name			= "sched:starting",
		.startup		= sched_cpu_starting,
1360
		.teardown		= sched_cpu_dying,
1361
	},
1362 1363 1364 1365
	[CPUHP_AP_RCUTREE_DYING] = {
		.startup = NULL,
		.teardown = rcutree_dying_cpu,
	},
1366 1367 1368 1369 1370
	/*
	 * Low level startup/teardown notifiers. Run with interrupts
	 * disabled. Will be removed once the notifiers are converted to
	 * states.
	 */
1371 1372 1373 1374 1375
	[CPUHP_AP_NOTIFY_STARTING] = {
		.name			= "notify:starting",
		.startup		= notify_starting,
		.teardown		= notify_dying,
		.skip_onerr		= true,
1376
		.cant_stop		= true,
1377
	},
1378 1379 1380 1381 1382 1383
	/* Entry state on starting. Interrupts enabled from here on. Transient
	 * state for synchronsization */
	[CPUHP_AP_ONLINE] = {
		.name			= "ap:online",
	},
	/* Handle smpboot threads park/unpark */
1384 1385 1386
	[CPUHP_AP_SMPBOOT_THREADS] = {
		.name			= "smpboot:threads",
		.startup		= smpboot_unpark_threads,
1387
		.teardown		= NULL,
1388
	},
1389 1390 1391 1392 1393
	[CPUHP_AP_PERF_ONLINE] = {
		.name = "perf online",
		.startup = perf_event_init_cpu,
		.teardown = perf_event_exit_cpu,
	},
1394 1395 1396 1397 1398
	[CPUHP_AP_WORKQUEUE_ONLINE] = {
		.name = "workqueue online",
		.startup = workqueue_online_cpu,
		.teardown = workqueue_offline_cpu,
	},
1399 1400 1401 1402 1403
	[CPUHP_AP_RCUTREE_ONLINE] = {
		.name = "RCU-tree online",
		.startup = rcutree_online_cpu,
		.teardown = rcutree_offline_cpu,
	},
1404

1405 1406 1407 1408
	/*
	 * Online/down_prepare notifiers. Will be removed once the notifiers
	 * are converted to states.
	 */
1409 1410 1411 1412
	[CPUHP_AP_NOTIFY_ONLINE] = {
		.name			= "notify:online",
		.startup		= notify_online,
		.teardown		= notify_down_prepare,
1413
		.skip_onerr		= true,
1414
	},
1415
#endif
1416 1417 1418 1419
	/*
	 * The dynamically registered state space is here
	 */

1420 1421 1422 1423 1424 1425 1426 1427 1428
#ifdef CONFIG_SMP
	/* Last state is scheduler control setting the cpu active */
	[CPUHP_AP_ACTIVE] = {
		.name			= "sched:active",
		.startup		= sched_cpu_activate,
		.teardown		= sched_cpu_deactivate,
	},
#endif

1429
	/* CPU is fully up and running. */
1430 1431 1432 1433 1434 1435 1436
	[CPUHP_ONLINE] = {
		.name			= "online",
		.startup		= NULL,
		.teardown		= NULL,
	},
};

1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
/* Sanity check for callbacks */
static int cpuhp_cb_check(enum cpuhp_state state)
{
	if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
		return -EINVAL;
	return 0;
}

static void cpuhp_store_callbacks(enum cpuhp_state state,
				  const char *name,
				  int (*startup)(unsigned int cpu),
1448 1449
				  int (*teardown)(unsigned int cpu),
				  bool multi_instance)
1450 1451 1452 1453 1454 1455 1456 1457 1458
{
	/* (Un)Install the callbacks for further cpu hotplug operations */
	struct cpuhp_step *sp;

	mutex_lock(&cpuhp_state_mutex);
	sp = cpuhp_get_step(state);
	sp->startup = startup;
	sp->teardown = teardown;
	sp->name = name;
1459 1460
	sp->multi_instance = multi_instance;
	INIT_HLIST_HEAD(&sp->list);
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
	mutex_unlock(&cpuhp_state_mutex);
}

static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
{
	return cpuhp_get_step(state)->teardown;
}

/*
 * Call the startup/teardown function for a step either on the AP or
 * on the current CPU.
 */
1473 1474
static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
			    struct hlist_node *node)
1475
{
1476
	struct cpuhp_step *sp = cpuhp_get_step(state);
1477 1478
	int ret;

1479
	if ((bringup && !sp->startup) || (!bringup && !sp->teardown))
1480 1481 1482 1483 1484
		return 0;
	/*
	 * The non AP bound callbacks can fail on bringup. On teardown
	 * e.g. module removal we crash for now.
	 */
1485 1486
#ifdef CONFIG_SMP
	if (cpuhp_is_ap_state(state))
1487
		ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
1488
	else
1489
		ret = cpuhp_invoke_callback(cpu, state, bringup, node);
1490
#else
1491
	ret = cpuhp_invoke_callback(cpu, state, bringup, node);
1492
#endif
1493 1494 1495 1496 1497 1498 1499 1500 1501
	BUG_ON(ret && !bringup);
	return ret;
}

/*
 * Called from __cpuhp_setup_state on a recoverable failure.
 *
 * Note: The teardown callbacks for rollback are not allowed to fail!
 */
1502 1503
static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
				   struct hlist_node *node)
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
{
	int cpu;

	/* Roll back the already executed steps on the other cpus */
	for_each_present_cpu(cpu) {
		struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
		int cpustate = st->state;

		if (cpu >= failedcpu)
			break;

		/* Did we invoke the startup call on that cpu ? */
		if (cpustate >= state)
1517
			cpuhp_issue_call(cpu, state, false, node);
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530
	}
}

/*
 * Returns a free for dynamic slot assignment of the Online state. The states
 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
 * by having no name assigned.
 */
static int cpuhp_reserve_state(enum cpuhp_state state)
{
	enum cpuhp_state i;

	mutex_lock(&cpuhp_state_mutex);
1531 1532
	for (i = CPUHP_AP_ONLINE_DYN; i <= CPUHP_AP_ONLINE_DYN_END; i++) {
		if (cpuhp_ap_states[i].name)
1533 1534
			continue;

1535
		cpuhp_ap_states[i].name = "Reserved";
1536 1537 1538 1539 1540 1541 1542 1543
		mutex_unlock(&cpuhp_state_mutex);
		return i;
	}
	mutex_unlock(&cpuhp_state_mutex);
	WARN(1, "No more dynamic states available for CPU hotplug\n");
	return -ENOSPC;
}

1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
			       bool invoke)
{
	struct cpuhp_step *sp;
	int cpu;
	int ret;

	sp = cpuhp_get_step(state);
	if (sp->multi_instance == false)
		return -EINVAL;

	get_online_cpus();

	if (!invoke || !sp->startup_multi)
		goto add_node;

	/*
	 * Try to call the startup callback for each present cpu
	 * depending on the hotplug state of the cpu.
	 */
	for_each_present_cpu(cpu) {
		struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
		int cpustate = st->state;

		if (cpustate < state)
			continue;

		ret = cpuhp_issue_call(cpu, state, true, node);
		if (ret) {
			if (sp->teardown_multi)
				cpuhp_rollback_install(cpu, state, node);
			goto err;
		}
	}
add_node:
	ret = 0;
	mutex_lock(&cpuhp_state_mutex);
	hlist_add_head(node, &sp->list);
	mutex_unlock(&cpuhp_state_mutex);

err:
	put_online_cpus();
	return ret;
}
EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);

1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
/**
 * __cpuhp_setup_state - Setup the callbacks for an hotplug machine state
 * @state:	The state to setup
 * @invoke:	If true, the startup function is invoked for cpus where
 *		cpu state >= @state
 * @startup:	startup callback function
 * @teardown:	teardown callback function
 *
 * Returns 0 if successful, otherwise a proper error code
 */
int __cpuhp_setup_state(enum cpuhp_state state,
			const char *name, bool invoke,
			int (*startup)(unsigned int cpu),
1603 1604
			int (*teardown)(unsigned int cpu),
			bool multi_instance)
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
{
	int cpu, ret = 0;
	int dyn_state = 0;

	if (cpuhp_cb_check(state) || !name)
		return -EINVAL;

	get_online_cpus();

	/* currently assignments for the ONLINE state are possible */
1615
	if (state == CPUHP_AP_ONLINE_DYN) {
1616 1617 1618 1619 1620 1621 1622
		dyn_state = 1;
		ret = cpuhp_reserve_state(state);
		if (ret < 0)
			goto out;
		state = ret;
	}

1623
	cpuhp_store_callbacks(state, name, startup, teardown, multi_instance);
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638

	if (!invoke || !startup)
		goto out;

	/*
	 * Try to call the startup callback for each present cpu
	 * depending on the hotplug state of the cpu.
	 */
	for_each_present_cpu(cpu) {
		struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
		int cpustate = st->state;

		if (cpustate < state)
			continue;

1639
		ret = cpuhp_issue_call(cpu, state, true, NULL);
1640
		if (ret) {
1641
			if (teardown)
1642 1643
				cpuhp_rollback_install(cpu, state, NULL);
			cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
			goto out;
		}
	}
out:
	put_online_cpus();
	if (!ret && dyn_state)
		return state;
	return ret;
}
EXPORT_SYMBOL(__cpuhp_setup_state);

1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
int __cpuhp_state_remove_instance(enum cpuhp_state state,
				  struct hlist_node *node, bool invoke)
{
	struct cpuhp_step *sp = cpuhp_get_step(state);
	int cpu;

	BUG_ON(cpuhp_cb_check(state));

	if (!sp->multi_instance)
		return -EINVAL;

	get_online_cpus();
	if (!invoke || !cpuhp_get_teardown_cb(state))
		goto remove;
	/*
	 * Call the teardown callback for each present cpu depending
	 * on the hotplug state of the cpu. This function is not
	 * allowed to fail currently!
	 */
	for_each_present_cpu(cpu) {
		struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
		int cpustate = st->state;

		if (cpustate >= state)
			cpuhp_issue_call(cpu, state, false, node);
	}

remove:
	mutex_lock(&cpuhp_state_mutex);
	hlist_del(node);
	mutex_unlock(&cpuhp_state_mutex);
	put_online_cpus();

	return 0;
}
EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
/**
 * __cpuhp_remove_state - Remove the callbacks for an hotplug machine state
 * @state:	The state to remove
 * @invoke:	If true, the teardown function is invoked for cpus where
 *		cpu state >= @state
 *
 * The teardown callback is currently not allowed to fail. Think
 * about module removal!
 */
void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
{
1702
	struct cpuhp_step *sp = cpuhp_get_step(state);
1703 1704 1705 1706 1707 1708
	int cpu;

	BUG_ON(cpuhp_cb_check(state));

	get_online_cpus();

1709 1710 1711 1712 1713 1714 1715
	if (sp->multi_instance) {
		WARN(!hlist_empty(&sp->list),
		     "Error: Removing state %d which has instances left.\n",
		     state);
		goto remove;
	}

1716
	if (!invoke || !cpuhp_get_teardown_cb(state))
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
		goto remove;

	/*
	 * Call the teardown callback for each present cpu depending
	 * on the hotplug state of the cpu. This function is not
	 * allowed to fail currently!
	 */
	for_each_present_cpu(cpu) {
		struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
		int cpustate = st->state;

		if (cpustate >= state)
1729
			cpuhp_issue_call(cpu, state, false, NULL);
1730 1731
	}
remove:
1732
	cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
1733 1734 1735 1736
	put_online_cpus();
}
EXPORT_SYMBOL(__cpuhp_remove_state);

1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
static ssize_t show_cpuhp_state(struct device *dev,
				struct device_attribute *attr, char *buf)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);

	return sprintf(buf, "%d\n", st->state);
}
static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL);

1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
static ssize_t write_cpuhp_target(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t count)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
	struct cpuhp_step *sp;
	int target, ret;

	ret = kstrtoint(buf, 10, &target);
	if (ret)
		return ret;

#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
	if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
		return -EINVAL;
#else
	if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
		return -EINVAL;
#endif

	ret = lock_device_hotplug_sysfs();
	if (ret)
		return ret;

	mutex_lock(&cpuhp_state_mutex);
	sp = cpuhp_get_step(target);
	ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
	mutex_unlock(&cpuhp_state_mutex);
	if (ret)
		return ret;

	if (st->state < target)
		ret = do_cpu_up(dev->id, target);
	else
		ret = do_cpu_down(dev->id, target);

	unlock_device_hotplug();
	return ret ? ret : count;
}

1787 1788 1789 1790 1791 1792 1793
static ssize_t show_cpuhp_target(struct device *dev,
				 struct device_attribute *attr, char *buf)
{
	struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);

	return sprintf(buf, "%d\n", st->target);
}
1794
static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target);
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814

static struct attribute *cpuhp_cpu_attrs[] = {
	&dev_attr_state.attr,
	&dev_attr_target.attr,
	NULL
};

static struct attribute_group cpuhp_cpu_attr_group = {
	.attrs = cpuhp_cpu_attrs,
	.name = "hotplug",
	NULL
};

static ssize_t show_cpuhp_states(struct device *dev,
				 struct device_attribute *attr, char *buf)
{
	ssize_t cur, res = 0;
	int i;

	mutex_lock(&cpuhp_state_mutex);
1815
	for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
		struct cpuhp_step *sp = cpuhp_get_step(i);

		if (sp->name) {
			cur = sprintf(buf, "%3d: %s\n", i, sp->name);
			buf += cur;
			res += cur;
		}
	}
	mutex_unlock(&cpuhp_state_mutex);
	return res;
}
static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL);

static struct attribute *cpuhp_cpu_root_attrs[] = {
	&dev_attr_states.attr,
	NULL
};

static struct attribute_group cpuhp_cpu_root_attr_group = {
	.attrs = cpuhp_cpu_root_attrs,
	.name = "hotplug",
	NULL
};

static int __init cpuhp_sysfs_init(void)
{
	int cpu, ret;

	ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
				 &cpuhp_cpu_root_attr_group);
	if (ret)
		return ret;

	for_each_possible_cpu(cpu) {
		struct device *dev = get_cpu_device(cpu);

		if (!dev)
			continue;
		ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
		if (ret)
			return ret;
	}
	return 0;
}
device_initcall(cpuhp_sysfs_init);
#endif

1863 1864 1865 1866
/*
 * cpu_bit_bitmap[] is a special, "compressed" data structure that
 * represents all NR_CPUS bits binary values of 1<<nr.
 *
R
Rusty Russell 已提交
1867
 * It is used by cpumask_of() to get a constant address to a CPU
1868 1869
 * mask value that has a single bit set only.
 */
1870

1871
/* cpu_bit_bitmap[0] is empty - so we can back into it */
1872
#define MASK_DECLARE_1(x)	[x+1][0] = (1UL << (x))
1873 1874 1875
#define MASK_DECLARE_2(x)	MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
#define MASK_DECLARE_4(x)	MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
#define MASK_DECLARE_8(x)	MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
1876

1877 1878 1879 1880 1881 1882 1883
const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {

	MASK_DECLARE_8(0),	MASK_DECLARE_8(8),
	MASK_DECLARE_8(16),	MASK_DECLARE_8(24),
#if BITS_PER_LONG > 32
	MASK_DECLARE_8(32),	MASK_DECLARE_8(40),
	MASK_DECLARE_8(48),	MASK_DECLARE_8(56),
1884 1885
#endif
};
1886
EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
1887 1888 1889

const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
EXPORT_SYMBOL(cpu_all_bits);
1890 1891

#ifdef CONFIG_INIT_ALL_POSSIBLE
1892
struct cpumask __cpu_possible_mask __read_mostly
1893
	= {CPU_BITS_ALL};
1894
#else
1895
struct cpumask __cpu_possible_mask __read_mostly;
1896
#endif
1897
EXPORT_SYMBOL(__cpu_possible_mask);
1898

1899 1900
struct cpumask __cpu_online_mask __read_mostly;
EXPORT_SYMBOL(__cpu_online_mask);
1901

1902 1903
struct cpumask __cpu_present_mask __read_mostly;
EXPORT_SYMBOL(__cpu_present_mask);
1904

1905 1906
struct cpumask __cpu_active_mask __read_mostly;
EXPORT_SYMBOL(__cpu_active_mask);
1907 1908 1909

void init_cpu_present(const struct cpumask *src)
{
1910
	cpumask_copy(&__cpu_present_mask, src);
1911 1912 1913 1914
}

void init_cpu_possible(const struct cpumask *src)
{
1915
	cpumask_copy(&__cpu_possible_mask, src);
1916 1917 1918 1919
}

void init_cpu_online(const struct cpumask *src)
{
1920
	cpumask_copy(&__cpu_online_mask, src);
1921
}
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943

/*
 * Activate the first processor.
 */
void __init boot_cpu_init(void)
{
	int cpu = smp_processor_id();

	/* Mark the boot cpu "present", "online" etc for SMP and UP case */
	set_cpu_online(cpu, true);
	set_cpu_active(cpu, true);
	set_cpu_present(cpu, true);
	set_cpu_possible(cpu, true);
}

/*
 * Must be called _AFTER_ setting up the per_cpu areas
 */
void __init boot_cpu_state_init(void)
{
	per_cpu_ptr(&cpuhp_state, smp_processor_id())->state = CPUHP_ONLINE;
}