Commit 5b77fe2e authored by Russell King (Oracle)'s avatar Russell King (Oracle) Committed by liwei
Browse files

LoongArch: convert to use arch_cpu_is_hotpluggable()

mainline inclusion
from mainline-v6.8-rc1
commit 13f9f0361c2e64f0dadb7964bfad11bf0a6fb7ab
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I8XMTL


CVE: NA

----------------------------------

Convert loongarch to use the arch_cpu_is_hotpluggable() helper rather
than arch_register_cpu(). Also remove the export as nothing should be
using arch_register_cpu() outside of the core kernel/acpi code.

Reviewed-by: default avatarGavin Shan <gshan@redhat.com>
Signed-off-by: default avatar"Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/E1r5R4B-00Ct0G-Kk@rmk-PC.armlinux.org.uk


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarliwei <liwei728@huawei.com>
parent 90f5e8c5
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -11,11 +11,8 @@
#include <acpi/processor.h>

#ifdef CONFIG_HOTPLUG_CPU
int arch_register_cpu(int cpu)
bool arch_cpu_is_hotpluggable(int cpu)
{
	struct cpu *c = &per_cpu(cpu_devices, cpu);

	c->hotpluggable = !io_master(cpu);
	return register_cpu(c, cpu);
	return !io_master(cpu);
}
#endif