diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2020-08-19 03:56:32 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-09-18 11:59:43 +0200 |
commit | 1ea21ba231f248034e8c794aa675869ca2b97d42 (patch) | |
tree | e5a7f46657901c06600521f505158cf1b85b3b50 /arch/powerpc/kernel/smp.c | |
parent | powerpc/perf: Add declarations to fix sparse warnings (diff) | |
download | linux-1ea21ba231f248034e8c794aa675869ca2b97d42.tar.xz linux-1ea21ba231f248034e8c794aa675869ca2b97d42.zip |
powerpc: Move arch_cpu_idle_dead() into smp.c
arch_cpu_idle_dead() is in idle.c, which makes sense, but it's inside
a CONFIG_HOTPLUG_CPU block.
It would be more at home in smp.c, inside the existing
CONFIG_HOTPLUG_CPU block. Note that CONFIG_HOTPLUG_CPU depends on
CONFIG_SMP so even though smp.c is not built for SMP=n builds, that's
fine.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200819015634.1974478-1-mpe@ellerman.id.au
Diffstat (limited to 'arch/powerpc/kernel/smp.c')
-rw-r--r-- | arch/powerpc/kernel/smp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index 3d96752d6570..24b0476c1d4f 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c @@ -1489,6 +1489,12 @@ void __cpu_die(unsigned int cpu) smp_ops->cpu_die(cpu); } +void arch_cpu_idle_dead(void) +{ + sched_preempt_enable_no_resched(); + cpu_die(); +} + void cpu_die(void) { /* |