From: Kefeng Wang <wangkefeng.wang@huawei.com>
To: <jane.chu@oracle.com>, Andrew Morton <akpm@linux-foundation.org>,
Muchun Song <muchun.song@linux.dev>,
Oscar Salvador <osalvador@suse.de>,
David Hildenbrand <david@redhat.com>
Cc: <linux-mm@kvack.org>
Subject: Re: [PATCH 6/7] mm: hugeltb: check NUMA_NO_NODE in only_alloc_fresh_hugetlb_folio()
Date: Tue, 12 Aug 2025 20:13:10 +0800 [thread overview]
Message-ID: <330622c0-1ef5-4b61-a3dc-a8f5717e12c3@huawei.com> (raw)
In-Reply-To: <dd8a3a65-a9c1-41e0-90c6-99c2ea6d9f6a@oracle.com>
On 2025/8/7 4:43, jane.chu@oracle.com wrote:
>
>
> On 8/2/2025 12:31 AM, Kefeng Wang wrote:
>> Move the NUMA_NO_NODE check out of buddy and gigantic folio allocation
>> to cleanup code a bit.
>>
>> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
>> ---
>> mm/hugetlb.c | 7 +++----
>> 1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
>> index b16011c9645d..4f73b74a2cff 100644
>> --- a/mm/hugetlb.c
>> +++ b/mm/hugetlb.c
>> @@ -1479,8 +1479,6 @@ static struct folio *alloc_gigantic_folio(int
>> order, gfp_t gfp_mask,
>> struct folio *folio;
>> bool retried = false;
>> - if (nid == NUMA_NO_NODE)
>> - nid = numa_mem_id();
>> retry:
>> folio = hugetlb_cma_alloc_folio(order, gfp_mask, nid, nodemask);
>> if (!folio) {
>> @@ -1942,8 +1940,6 @@ static struct folio
>> *alloc_buddy_hugetlb_folio(int order, gfp_t gfp_mask,
>> alloc_try_hard = false;
>> if (alloc_try_hard)
>> gfp_mask |= __GFP_RETRY_MAYFAIL;
>> - if (nid == NUMA_NO_NODE)
>> - nid = numa_mem_id();
>
> Looks like you're also fixing a bug, because the code block was
> if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
> <--
> alloc_try_hard = false;
> if (alloc_try_hard)
> gfp_mask |= __GFP_RETRY_MAYFAIL;
> if (nid == NUMA_NO_NODE)
> nid = numa_mem_id();
> in theory, NUMA_NO_NODE (-1) could be passed as 'nid' to node_isset().
alloc_surplus_hugetlb_folio/hugetlb_hstate_alloc_pages_onenode call
alloc_buddy_hugetlb_folio with node_alloc_noretry = NULL, and
alloc_pool_huge_folio call alloc_buddy_hugetlb_folio with nid !=
NUMA_NO_NODE, so no issue for now, but we move it ahead which avoid
the possible issue in the future.
>
>> folio = (struct folio *)__alloc_frozen_pages(gfp_mask, order,
>> nid, nmask);
>> if (folio) {
>> @@ -1976,6 +1972,9 @@ static struct folio
>> *only_alloc_fresh_hugetlb_folio(struct hstate *h,
>> struct folio *folio;
>> int order = huge_page_order(h);
>> + if (nid == NUMA_NO_NODE)
>> + nid = numa_mem_id();
>> +
>> if (order > MAX_PAGE_ORDER)
>> folio = alloc_gigantic_folio(order, gfp_mask, nid, nmask);
>> else
> Looks good, thanks!
>
> Reviewed-by: Jane Chu <jane.chu@oracle.com>
Thanks.
next prev parent reply other threads:[~2025-08-12 12:13 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-02 7:31 [PATCH 0/7] mm: hugetlb: cleanup and allocate frozen hugetlb folio Kefeng Wang
2025-08-02 7:31 ` [PATCH 1/7] mm: hugetlb: convert to alloc_fresh_hugetlb_hvo_folio() Kefeng Wang
2025-08-04 15:41 ` Sidhartha Kumar
2025-08-04 20:27 ` Vishal Moola (Oracle)
2025-08-05 14:21 ` Kefeng Wang
2025-08-05 17:56 ` Vishal Moola (Oracle)
2025-08-05 22:18 ` jane.chu
2025-08-06 0:33 ` jane.chu
2025-08-06 0:56 ` Kefeng Wang
2025-08-06 18:16 ` jane.chu
2025-08-02 7:31 ` [PATCH 2/7] mm: hugetlb: convert to prep_account_new_hugetlb_folio() Kefeng Wang
2025-08-04 15:54 ` Sidhartha Kumar
2025-08-04 20:36 ` Vishal Moola (Oracle)
2025-08-05 14:21 ` Kefeng Wang
2025-08-06 0:53 ` jane.chu
2025-08-02 7:31 ` [PATCH 3/7] mm; hugetlb: simpify alloc_buddy_hugetlb_folio() Kefeng Wang
2025-08-04 15:57 ` Sidhartha Kumar
2025-08-04 20:56 ` Vishal Moola (Oracle)
2025-08-05 14:22 ` Kefeng Wang
2025-08-02 7:31 ` [PATCH 4/7] mm: hugetlb: directly pass order when allocate a hugetlb folio Kefeng Wang
2025-08-04 16:22 ` Sidhartha Kumar
2025-08-06 20:05 ` jane.chu
2025-08-06 20:17 ` jane.chu
2025-08-02 7:31 ` [PATCH 5/7] mm: hugetlb: remove struct hstate from init_new_hugetlb_folio() Kefeng Wang
2025-08-04 16:13 ` Sidhartha Kumar
2025-08-06 20:08 ` jane.chu
2025-08-02 7:31 ` [PATCH 6/7] mm: hugeltb: check NUMA_NO_NODE in only_alloc_fresh_hugetlb_folio() Kefeng Wang
2025-08-04 19:09 ` Sidhartha Kumar
2025-08-06 20:43 ` jane.chu
2025-08-12 12:13 ` Kefeng Wang [this message]
2025-08-02 7:31 ` [PATCH 7/7] mm: hugetlb: allocate frozen pages in alloc_gigantic_folio() Kefeng Wang
2025-08-07 1:22 ` jane.chu
2025-08-12 12:11 ` Kefeng Wang
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=330622c0-1ef5-4b61-a3dc-a8f5717e12c3@huawei.com \
--to=wangkefeng.wang@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=jane.chu@oracle.com \
--cc=linux-mm@kvack.org \
--cc=muchun.song@linux.dev \
--cc=osalvador@suse.de \
/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