Commit 1ea21ba2 authored by Michael Ellerman's avatar Michael Ellerman
Browse files

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: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200819015634.1974478-1-mpe@ellerman.id.au
parent d10ebe79
Loading
Loading
Loading
Loading
+0 −8
Original line number Original line Diff line number Diff line
@@ -41,14 +41,6 @@ static int __init powersave_off(char *arg)
}
}
__setup("powersave=off", powersave_off);
__setup("powersave=off", powersave_off);


#ifdef CONFIG_HOTPLUG_CPU
void arch_cpu_idle_dead(void)
{
	sched_preempt_enable_no_resched();
	cpu_die();
}
#endif

void arch_cpu_idle(void)
void arch_cpu_idle(void)
{
{
	ppc64_runlatch_off();
	ppc64_runlatch_off();
+6 −0
Original line number Original line Diff line number Diff line
@@ -1489,6 +1489,12 @@ void __cpu_die(unsigned int cpu)
		smp_ops->cpu_die(cpu);
		smp_ops->cpu_die(cpu);
}
}


void arch_cpu_idle_dead(void)
{
	sched_preempt_enable_no_resched();
	cpu_die();
}

void cpu_die(void)
void cpu_die(void)
{
{
	/*
	/*