Re: [PATCH 09/21] drivers: base: add arch_cpu_is_hotpluggable()

2023-11-30 Thread Gavin Shan
On 11/22/23 00:44, Russell King (Oracle) wrote: The differences between architecture specific implementations of arch_register_cpu() are down to whether the CPU is hotpluggable or not. Rather than overriding the weak version of arch_register_cpu(), provide a function that can be used to provide t

Re: [PATCH 09/21] drivers: base: add arch_cpu_is_hotpluggable()

2023-11-30 Thread Jonathan Cameron
On Tue, 21 Nov 2023 13:44:36 + "Russell King (Oracle)" wrote: > The differences between architecture specific implementations of > arch_register_cpu() are down to whether the CPU is hotpluggable or not. > Rather than overriding the weak version of arch_register_cpu(), provide > a function tha

[PATCH 09/21] drivers: base: add arch_cpu_is_hotpluggable()

2023-11-21 Thread Russell King (Oracle)
The differences between architecture specific implementations of arch_register_cpu() are down to whether the CPU is hotpluggable or not. Rather than overriding the weak version of arch_register_cpu(), provide a function that can be used to provide this detail instead. Reviewed-by: Shaoqin Huang S