From: Zhenhua Huang <quic_zhenhuah@quicinc.com>
To: Catalin Marinas <catalin.marinas@arm.com>
Cc: <anshuman.khandual@arm.com>, <will@kernel.org>, <ardb@kernel.org>,
<ryan.roberts@arm.com>, <mark.rutland@arm.com>,
<joey.gouly@arm.com>, <dave.hansen@linux.intel.com>,
<akpm@linux-foundation.org>, <chenfeiyang@loongson.cn>,
<chenhuacai@kernel.org>, <linux-mm@kvack.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <quic_tingweiz@quicinc.com>,
<stable@vger.kernel.org>
Subject: Re: [PATCH v5] arm64: mm: Populate vmemmap/linear at the page level for hotplugged sections
Date: Thu, 13 Feb 2025 15:45:47 +0800 [thread overview]
Message-ID: <dc69cc0e-c3ca-4e2a-8d0e-998643f31ccf@quicinc.com> (raw)
In-Reply-To: <Z6zoWMejCDlN2YF9@arm.com>
On 2025/2/13 2:28, Catalin Marinas wrote:
>> @@ -1339,9 +1349,27 @@ int arch_add_memory(int nid, u64 start, u64 size,
>> struct mhp_params *params)
>> {
>> int ret, flags = NO_EXEC_MAPPINGS;
>> + unsigned long start_pfn = PFN_DOWN(start);
>> + struct mem_section *ms = __pfn_to_section(start_pfn);
>>
>> VM_BUG_ON(!mhp_range_allowed(start, size, true));
>>
>> + /* should not be invoked by early section */
>> + WARN_ON(early_section(ms));
> I don't remember the discussion, do we still need this warning here if
> the sections are not marked as early? I guess we can keep it if one does
> an arch_add_memory() on an early section.
>
> I think I suggested to use a WARN_ON_ONCE(!present_section()) but I
> completely forgot the memory hotplug code paths.
Dear Catalin,
The previous discussion can be found at
https://lore.kernel.org/lkml/aedbbc4f-8f6c-46d8-a8d7-53103675a816@quicinc.com/,
I highlighted the key points from conversation between me and Anshuman
for your reference:
"
>>
>> BTW, shall we remove the check for !early_section since
arch_add_memory is only called during hotplugging case? Correct me
please if I'm mistaken :)
>
> While this is true, still might be a good idea to keep the
early_section()
> check in place just to be extra careful here. Otherwise an WARN_ON()
might
> be needed.
Make sense. I would like to add some comments and WARN_ON() if
early_section().
"
Regarding your suggestion, I believed it was intended for the
vmemmap_populate() function ?(Discussion:
https://lore.kernel.org/linux-mm/Z3_d59kp4CuHQp97@arm.com/), but as
workflow below indicates:
Hot plug:
1. section_activate -> vmemmap_populate
2. mark PRESENT
In contrast, the early flow:
1. memblocks_present -> mark PRESENT
2. __populate_section_memmap -> vmemmap_populate
Could this result in a false warning during hotplugging? I replied with
the doubt in above link before but seems you missed :) Could you please
share your thoughts if you have a different idea ?
I will include your tags, correct capitalization nit and post one new
version.
prev parent reply other threads:[~2025-02-13 7:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 9:38 [PATCH v5] arm64: mm: Populate vmemmap/linear at the page level for hotplugged sections Zhenhua Huang
2025-01-15 2:13 ` Zhenhua Huang
2025-02-06 8:48 ` Zhenhua Huang
2025-02-12 18:28 ` Catalin Marinas
2025-02-13 7:45 ` Zhenhua Huang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dc69cc0e-c3ca-4e2a-8d0e-998643f31ccf@quicinc.com \
--to=quic_zhenhuah@quicinc.com \
--cc=akpm@linux-foundation.org \
--cc=anshuman.khandual@arm.com \
--cc=ardb@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=chenfeiyang@loongson.cn \
--cc=chenhuacai@kernel.org \
--cc=dave.hansen@linux.intel.com \
--cc=joey.gouly@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mark.rutland@arm.com \
--cc=quic_tingweiz@quicinc.com \
--cc=ryan.roberts@arm.com \
--cc=stable@vger.kernel.org \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox