[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <23ed10ee-b88f-8681-35a4-cefc2e3a7800@redhat.com>
Date: Tue, 19 Sep 2023 11:09:30 +1000
From: Gavin Shan <gshan@...hat.com>
To: James Morse <james.morse@....com>, linux-pm@...r.kernel.org,
loongarch@...ts.linux.dev, linux-acpi@...r.kernel.org,
linux-arch@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
linux-riscv@...ts.infradead.org, kvmarm@...ts.linux.dev
Cc: x86@...nel.org, Salil Mehta <salil.mehta@...wei.com>,
Russell King <linux@...linux.org.uk>,
Jean-Philippe Brucker <jean-philippe@...aro.org>,
jianyong.wu@....com, justin.he@....com
Subject: Re: [RFC PATCH v2 25/35] LoongArch: Use the __weak version of
arch_unregister_cpu()
On 9/14/23 02:38, James Morse wrote:
> LoongArch provides its own arch_unregister_cpu(). This clears the
> hotpluggable flag, then unregisters the CPU.
>
> It isn't necessary to clear the hotpluggable flag when unregistering
> a cpu. unregister_cpu() writes NULL to the percpu cpu_sys_devices
> pointer, meaning cpu_is_hotpluggable() will return false, as
> get_cpu_device() has returned NULL.
>
> Remove arch_unregister_cpu() and use the __weak version.
>
> Signed-off-by: James Morse <james.morse@....com>
> ---
> arch/loongarch/kernel/topology.c | 9 ---------
> 1 file changed, 9 deletions(-)
>
I think arch/x86/kernel/topology.c::arch_unregister_cpu() can be dropped either.
Reviewed-by: Gavin Shan <gshan@...hat.com>
> diff --git a/arch/loongarch/kernel/topology.c b/arch/loongarch/kernel/topology.c
> index 8e4441c1ff39..5a75e2cc0848 100644
> --- a/arch/loongarch/kernel/topology.c
> +++ b/arch/loongarch/kernel/topology.c
> @@ -16,13 +16,4 @@ int arch_register_cpu(int cpu)
> return register_cpu(c, cpu);
> }
> EXPORT_SYMBOL(arch_register_cpu);
> -
> -void arch_unregister_cpu(int cpu)
> -{
> - struct cpu *c = &per_cpu(cpu_devices, cpu);
> -
> - c->hotpluggable = 0;
> - unregister_cpu(c);
> -}
> -EXPORT_SYMBOL(arch_unregister_cpu);
> #endif
Thanks,
Gavin
Powered by blists - more mailing lists