lkml.org 
[lkml]   [2022]   [Mar]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH 3/3] MIPS: Use memblock_add_node() in early_parse_mem() under CONFIG_NUMA
From


在 2022/3/18 15:05, Tiezhu Yang 写道:
> Use memblock_add_node to add new memblock region within a NUMA node
> in early_parse_mem() under CONFIG_NUMA, otherwise the mem parameter
> can not work well.

Hi Tiezhu,

pa_to_nid doesn't exist when CONFIG_NUME is disabled.
So probably you want #ifdef macro instead ?

Thanks.
- Jiaxun

>
> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
> ---
> arch/mips/kernel/setup.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
> index c8c8f60..50cdc08 100644
> --- a/arch/mips/kernel/setup.c
> +++ b/arch/mips/kernel/setup.c
> @@ -37,6 +37,7 @@
> #include <asm/cdmm.h>
> #include <asm/cpu.h>
> #include <asm/debug.h>
> +#include <asm/mmzone.h>
> #include <asm/sections.h>
> #include <asm/setup.h>
> #include <asm/smp-ops.h>
> @@ -378,7 +379,10 @@ static int __init early_parse_mem(char *p)
> memblock_end_of_DRAM() - memblock_start_of_DRAM());
> }
>
> - memblock_add(start, size);
> + if (IS_ENABLED(CONFIG_NUMA))
> + memblock_add_node(start, size, pa_to_nid(start), MEMBLOCK_NONE);
> + else
> + memblock_add(start, size);
>
> return 0;
> }

\
 
 \ /
  Last update: 2022-03-22 14:19    [W:0.094 / U:0.568 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site