Re: [PATCH] arm: mm: use __pfn_to_section() to get mem_section

From: Anshuman Khandual
Date: Thu Apr 30 2020 - 01:02:27 EST




On 04/30/2020 09:34 AM, Guixiong Wei wrote:
> Use __pfn_to_section() to get mem_section, instead of open-coding it.

There is no open coding here. __pfn_to_section() helper which already
wraps around __nr_to_section(pfn_to_section_nr(pfn)), should be used
directly instead.

> No semantic changes.

and functional change. Please reword the commit message.

>
> Signed-off-by: Guixiong Wei <guixiongwei@xxxxxxxxx>
> ---
> arch/arm64/mm/init.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c
> index e42727e3568e..d2df416b840e 100644
> --- a/arch/arm64/mm/init.c
> +++ b/arch/arm64/mm/init.c
> @@ -272,7 +272,7 @@ int pfn_valid(unsigned long pfn)
> if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
> return 0;
>
> - if (!valid_section(__nr_to_section(pfn_to_section_nr(pfn))))
> + if (!valid_section(__pfn_to_section(pfn))
Looks good.

> return 0;
> #endif
> return memblock_is_map_memory(addr);
>