[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4e312b22-73ba-8d59-b494-b7cb1d7bbb49@huawei.com>
Date: Mon, 13 Jun 2022 18:50:45 +0800
From: mawupeng <mawupeng1@...wei.com>
To: <ardb@...nel.org>, <will@...nel.org>, <catalin.marinas@....com>
CC: <corbet@....net>, <tglx@...utronix.de>, <mingo@...hat.com>,
<bp@...en8.de>, <dave.hansen@...ux.intel.com>, <x86@...nel.org>,
<hpa@...or.com>, <dvhart@...radead.org>, <andy@...radead.org>,
<rppt@...nel.org>, <akpm@...ux-foundation.org>,
<paul.walmsley@...ive.com>, <palmer@...belt.com>,
<aou@...s.berkeley.edu>, <paulmck@...nel.org>,
<keescook@...omium.org>, <songmuchun@...edance.com>,
<rdunlap@...radead.org>, <damien.lemoal@...nsource.wdc.com>,
<swboyd@...omium.org>, <wei.liu@...nel.org>,
<robin.murphy@....com>, <david@...hat.com>,
<anshuman.khandual@....com>, <thunder.leizhen@...wei.com>,
<wangkefeng.wang@...wei.com>, <gpiccoli@...lia.com>,
<chenhuacai@...nel.org>, <geert@...ux-m68k.org>,
<vijayb@...ux.microsoft.com>, <linux-doc@...r.kernel.org>,
<linux-kernel@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-efi@...r.kernel.org>, <platform-driver-x86@...r.kernel.org>,
<linux-mm@...ck.org>, <linux-riscv@...ts.infradead.org>,
<mawupeng1@...wei.com>
Subject: Re: [PATCH v4 5/6] mm: Only remove nomap flag for initrd
On 6/13/2022 5:42 PM, Ard Biesheuvel wrote:
> On Mon, 13 Jun 2022 at 10:00, Wupeng Ma <mawupeng1@...wei.com> wrote:
>>
>> From: Ma Wupeng <mawupeng1@...wei.com>
>>
>> Commit 177e15f0c144 ("arm64: add the initrd region to the linear mapping explicitly")
>> remove all the flags of the memory used by initrd. This is fine since
>> MEMBLOCK_MIRROR is not used in arm64.
>>
>> However with mirrored feature introduced to arm64, this will clear the mirrored
>> flag used by initrd, which will lead to error log printed by
>> find_zone_movable_pfns_for_nodes() if the lower 4G range has some non-mirrored
>> memory.
>>
>> To solve this problem, only MEMBLOCK_NOMAP flag will be removed via
>> memblock_clear_nomap().
>>
>> Signed-off-by: Ma Wupeng <mawupeng1@...wei.com>
>
> Reviewed-by: Ard Biesheuvel <ardb@...nel.org>
>
> This needs and ack from the arm64 maintainers, please?
> And also please fix the subject to include 'arm64'
>
Ok, I will include 'arm64' in my subject in v5.
Thanks for reviewing.
>
>> ---
>> 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 339ee84e5a61..8456dbae9441 100644
>> --- a/arch/arm64/mm/init.c
>> +++ b/arch/arm64/mm/init.c
>> @@ -350,8 +350,8 @@ void __init arm64_memblock_init(void)
>> "initrd not fully accessible via the linear mapping -- please check your bootloader ...\n")) {
>> phys_initrd_size = 0;
>> } else {
>> - memblock_remove(base, size); /* clear MEMBLOCK_ flags */
>> memblock_add(base, size);
>> + memblock_clear_nomap(base, size);
>> memblock_reserve(base, size);
>> }
>> }
>> --
>> 2.25.1
>>
> .
Powered by blists - more mailing lists