Re: [PATCH v2 7/9] mm: Calc the right pfn if page size is not 4K
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
- To: Anshuman Khandual <anshuman.khandual@xxxxxxx>, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
- Subject: Re: [PATCH v2 7/9] mm: Calc the right pfn if page size is not 4K
- From: Ard Biesheuvel <ardb@xxxxxxxxxx>
- Date: Tue, 19 Apr 2022 20:29:27 +0200
- Cc: Wupeng Ma <mawupeng1@xxxxxxxxxx>, Catalin Marinas <catalin.marinas@xxxxxxx>, Will Deacon <will@xxxxxxxxxx>, Jonathan Corbet <corbet@xxxxxxx>, Thomas Gleixner <tglx@xxxxxxxxxxxxx>, Ingo Molnar <mingo@xxxxxxxxxx>, Borislav Petkov <bp@xxxxxxxxx>, Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>, X86 ML <x86@xxxxxxxxxx>, hpa@xxxxxxxxx, Darren Hart <dvhart@xxxxxxxxxxxxx>, Andy Shevchenko <andy@xxxxxxxxxxxxx>, Mike Rapoport <rppt@xxxxxxxxxx>, "Paul E. McKenney" <paulmck@xxxxxxxxxx>, Peter Zijlstra <peterz@xxxxxxxxxxxxx>, Joerg Roedel <jroedel@xxxxxxx>, songmuchun@xxxxxxxxxxxxx, macro@xxxxxxxxxxx, Frederic Weisbecker <frederic@xxxxxxxxxx>, W_Armin@xxxxxx, John Garry <john.garry@xxxxxxxxxx>, Sean Christopherson <seanjc@xxxxxxxxxx>, Thomas Bogendoerfer <tsbogend@xxxxxxxxxxxxxxxx>, chenhuacai@xxxxxxxxxx, David Hildenbrand <david@xxxxxxxxxx>, gpiccoli@xxxxxxxxxx, Mark Rutland <mark.rutland@xxxxxxx>, Kefeng Wang <wangkefeng.wang@xxxxxxxxxx>, Linux Doc Mailing List <linux-doc@xxxxxxxxxxxxxxx>, Linux Kernel Mailing List <linux-kernel@xxxxxxxxxxxxxxx>, Linux ARM <linux-arm-kernel@xxxxxxxxxxxxxxxxxxx>, linux-efi <linux-efi@xxxxxxxxxxxxxxx>, linux-ia64@xxxxxxxxxxxxxxx, platform-driver-x86@xxxxxxxxxxxxxxx, Linux Memory Management List <linux-mm@xxxxxxxxx>
- In-reply-to: <672ff459-81bd-38ef-882d-e718992d295c@arm.com>
- References: <20220414101314.1250667-1-mawupeng1@huawei.com> <20220414101314.1250667-8-mawupeng1@huawei.com> <672ff459-81bd-38ef-882d-e718992d295c@arm.com>
On Tue, 19 Apr 2022 at 13:13, Anshuman Khandual
<anshuman.khandual@xxxxxxx> wrote:
>
>
>
> On 4/14/22 15:43, Wupeng Ma wrote:
> > From: Ma Wupeng <mawupeng1@xxxxxxxxxx>
> >
> > Previous 0x100000 is used to check the 4G limit in
> > find_zone_movable_pfns_for_nodes(). This is right in x86 because
> > the page size can only be 4K. But 16K and 64K are available in
> > arm64. So replace it with PHYS_PFN(SZ_4G).
> >
> > Signed-off-by: Ma Wupeng <mawupeng1@xxxxxxxxxx>
> > ---
> > mm/page_alloc.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index 6e5b4488a0c5..570d0ebf98df 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -7870,7 +7870,7 @@ static void __init find_zone_movable_pfns_for_nodes(void)
> >
> > usable_startpfn = memblock_region_memory_base_pfn(r);
> >
> > - if (usable_startpfn < 0x100000) {
> > + if (usable_startpfn < PHYS_PFN(SZ_4G)) {
> > mem_below_4gb_not_mirrored = true;
> > continue;
> > }
>
> Regardless PFN value should never be encoded directly.
>
> Reviewed-by: Anshuman Khandual <anshuman.khandual@xxxxxxx>
Acked-by: Ard Biesheuvel <ardb@xxxxxxxxxx>
Andrew, can you please take this one through the -mm tree? The rest of
the series needs a bit more work, but is an obvious fix and there is
no point in holding it up.
Thanks,
Ard.
[Index of Archives]
[Linux Kernel]
[Sparc Linux]
[DCCP]
[Linux ARM]
[Yosemite News]
[Linux SCSI]
[Linux x86_64]
[Linux for Ham Radio]