linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/pseries/cpuhp: fix non-NUMA build
@ 2021-08-16 15:17 Nathan Lynch
  2021-08-16 15:19 ` Christophe Leroy
  0 siblings, 1 reply; 3+ messages in thread
From: Nathan Lynch @ 2021-08-16 15:17 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: ldufour

With CONFIG_NUMA unset, direct references to node_to_cpumask_map don't
work:

   arch/powerpc/platforms/pseries/hotplug-cpu.c: In function 'pseries_cpu_hotplug_init':
>> arch/powerpc/platforms/pseries/hotplug-cpu.c:1022:8: error: 'node_to_cpumask_map' undeclared (first use in this
>> function)
    1022 |        node_to_cpumask_map[node]);
	 |        ^~~~~~~~~~~~~~~~~~~

Use cpumask_of_node() here instead.

Fixes: bd1dd4c5f528 ("powerpc/pseries: Prevent free CPU ids being reused on another node")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Nathan Lynch <nathanl@linux.ibm.com>
---
 arch/powerpc/platforms/pseries/hotplug-cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/pseries/hotplug-cpu.c b/arch/powerpc/platforms/pseries/hotplug-cpu.c
index 1ef40ef699a6..d646c22e94ab 100644
--- a/arch/powerpc/platforms/pseries/hotplug-cpu.c
+++ b/arch/powerpc/platforms/pseries/hotplug-cpu.c
@@ -1021,7 +1021,7 @@ static int __init pseries_cpu_hotplug_init(void)
 			/* Record ids of CPU added at boot time */
 			cpumask_or(node_recorded_ids_map[node],
 				   node_recorded_ids_map[node],
-				   node_to_cpumask_map[node]);
+				   cpumask_of_node(node));
 		}
 
 		of_reconfig_notifier_register(&pseries_smp_nb);
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] powerpc/pseries/cpuhp: fix non-NUMA build
  2021-08-16 15:17 [PATCH] powerpc/pseries/cpuhp: fix non-NUMA build Nathan Lynch
@ 2021-08-16 15:19 ` Christophe Leroy
  2021-08-16 15:25   ` Nathan Lynch
  0 siblings, 1 reply; 3+ messages in thread
From: Christophe Leroy @ 2021-08-16 15:19 UTC (permalink / raw)
  To: Nathan Lynch, linuxppc-dev; +Cc: ldufour

Le 16/08/2021 à 17:17, Nathan Lynch a écrit :
> With CONFIG_NUMA unset, direct references to node_to_cpumask_map don't
> work:
> 
>     arch/powerpc/platforms/pseries/hotplug-cpu.c: In function 'pseries_cpu_hotplug_init':
>>> arch/powerpc/platforms/pseries/hotplug-cpu.c:1022:8: error: 'node_to_cpumask_map' undeclared (first use in this
>>> function)
>      1022 |        node_to_cpumask_map[node]);
> 	 |        ^~~~~~~~~~~~~~~~~~~
> 
> Use cpumask_of_node() here instead.


Isn't it the same as 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20210816041032.2839343-1-mpe@ellerman.id.au/ ?

Christophe

> 
> Fixes: bd1dd4c5f528 ("powerpc/pseries: Prevent free CPU ids being reused on another node")
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Nathan Lynch <nathanl@linux.ibm.com>
> ---
>   arch/powerpc/platforms/pseries/hotplug-cpu.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/platforms/pseries/hotplug-cpu.c b/arch/powerpc/platforms/pseries/hotplug-cpu.c
> index 1ef40ef699a6..d646c22e94ab 100644
> --- a/arch/powerpc/platforms/pseries/hotplug-cpu.c
> +++ b/arch/powerpc/platforms/pseries/hotplug-cpu.c
> @@ -1021,7 +1021,7 @@ static int __init pseries_cpu_hotplug_init(void)
>   			/* Record ids of CPU added at boot time */
>   			cpumask_or(node_recorded_ids_map[node],
>   				   node_recorded_ids_map[node],
> -				   node_to_cpumask_map[node]);
> +				   cpumask_of_node(node));
>   		}
>   
>   		of_reconfig_notifier_register(&pseries_smp_nb);
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] powerpc/pseries/cpuhp: fix non-NUMA build
  2021-08-16 15:19 ` Christophe Leroy
@ 2021-08-16 15:25   ` Nathan Lynch
  0 siblings, 0 replies; 3+ messages in thread
From: Nathan Lynch @ 2021-08-16 15:25 UTC (permalink / raw)
  To: Christophe Leroy, linuxppc-dev; +Cc: ldufour

Christophe Leroy <christophe.leroy@csgroup.eu> writes:

> Le 16/08/2021 à 17:17, Nathan Lynch a écrit :
>> With CONFIG_NUMA unset, direct references to node_to_cpumask_map don't
>> work:
>> 
>>     arch/powerpc/platforms/pseries/hotplug-cpu.c: In function 'pseries_cpu_hotplug_init':
>>>> arch/powerpc/platforms/pseries/hotplug-cpu.c:1022:8: error: 'node_to_cpumask_map' undeclared (first use in this
>>>> function)
>>      1022 |        node_to_cpumask_map[node]);
>> 	 |        ^~~~~~~~~~~~~~~~~~~
>> 
>> Use cpumask_of_node() here instead.
>
>
> Isn't it the same as 
> https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20210816041032.2839343-1-mpe@ellerman.id.au/ ?

Yes, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-16 15:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-16 15:17 [PATCH] powerpc/pseries/cpuhp: fix non-NUMA build Nathan Lynch
2021-08-16 15:19 ` Christophe Leroy
2021-08-16 15:25   ` Nathan Lynch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).