diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-04-02 20:38:05 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-04-03 02:44:37 -0400 |
commit | a49b116dcb1265f238f3169507424257b0519069 (patch) | |
tree | 948a98d4adcc47a89d1148033c7c130619eb2b06 /kernel/cpu.c | |
parent | 52c063d1adbc16c76e70fffa20727fcd4e9343b3 (diff) |
clockevents: Cleanup dead cpu explicitely
clockevents_notify() is a leftover from the early design of the
clockevents facility. It's really not a notification mechanism,
it's a multiplex call. We are way better off to have explicit
calls instead of this monstrosity.
Split out the cleanup function for a dead cpu and invoke it
directly from the cpu down code. Make it conditional on
CPU_HOTPLUG as well.
Temporary change, will be refined in the future.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
[ Rebased, added clockevents_notify() removal ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1735025.raBZdQHM3m@vostro.rjw.lan
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r-- | kernel/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c index eba7eaa1341d..82eea9c5af61 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
@@ -419,6 +419,7 @@ static int __ref _cpu_down(unsigned int cpu, int tasks_frozen) | |||
419 | __cpu_die(cpu); | 419 | __cpu_die(cpu); |
420 | 420 | ||
421 | /* CPU is completely dead: tell everyone. Too late to complain. */ | 421 | /* CPU is completely dead: tell everyone. Too late to complain. */ |
422 | tick_cleanup_dead_cpu(cpu); | ||
422 | cpu_notify_nofail(CPU_DEAD | mod, hcpu); | 423 | cpu_notify_nofail(CPU_DEAD | mod, hcpu); |
423 | 424 | ||
424 | check_for_tasks(cpu); | 425 | check_for_tasks(cpu); |