* [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts
@ 2026-08-24 15:16 Kaitao Cheng
2026-08-24 16:59 ` Joshua Hahn
2026-08-25 2:05 ` Muchun Song
0 siblings, 2 replies; 3+ messages in thread
From: Kaitao Cheng @ 2026-08-24 15:16 UTC (permalink / raw)
To: Muchun Song, Oscar Salvador, David Hildenbrand, Andrew Morton
Cc: linux-mm, linux-kernel, Kaitao Cheng
From: Kaitao Cheng <chengkaitao@kylinos.cn>
The two boot-time sites in hugetlb_hstate_alloc_pages_onenode() and
hugetlb_pages_alloc_boot_node() only need to know whether HVO is
applicable, not the exact optimizable size. Switch them from
hugetlb_vmemmap_optimizable_size() to hugetlb_vmemmap_optimizable()
to make intent explicit.
No functional change intended.
Signed-off-by: Kaitao Cheng <chengkaitao@kylinos.cn>
---
mm/hugetlb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index a03a75fd7fa8..885f721999e6 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -3416,7 +3416,7 @@ static void __init hugetlb_hstate_alloc_pages_onenode(struct hstate *h, int nid)
folio = only_alloc_fresh_hugetlb_folio(h, gfp_mask, nid,
&node_states[N_MEMORY], NULL);
if (!folio && !list_empty(&folio_list) &&
- hugetlb_vmemmap_optimizable_size(h)) {
+ hugetlb_vmemmap_optimizable(h)) {
prep_and_add_allocated_folios(h, &folio_list);
INIT_LIST_HEAD(&folio_list);
folio = only_alloc_fresh_hugetlb_folio(h, gfp_mask, nid,
@@ -3485,7 +3485,7 @@ static void __init hugetlb_pages_alloc_boot_node(unsigned long start, unsigned l
for (i = 0; i < num; ++i) {
struct folio *folio;
- if (hugetlb_vmemmap_optimizable_size(h) &&
+ if (hugetlb_vmemmap_optimizable(h) &&
(si_mem_available() == 0) && !list_empty(&folio_list)) {
prep_and_add_allocated_folios(h, &folio_list);
INIT_LIST_HEAD(&folio_list);
--
2.50.1 (Apple Git-155)
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts
2026-08-24 15:16 [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts Kaitao Cheng
@ 2026-08-24 16:59 ` Joshua Hahn
2026-08-25 2:05 ` Muchun Song
1 sibling, 0 replies; 3+ messages in thread
From: Joshua Hahn @ 2026-08-24 16:59 UTC (permalink / raw)
To: Kaitao Cheng
Cc: Muchun Song, Oscar Salvador, David Hildenbrand, Andrew Morton,
linux-mm, linux-kernel, Kaitao Cheng, Joshua hahn
On Mon, 24 Aug 2026 23:16:55 +0800 Kaitao Cheng <kaitao.cheng@linux.dev> wrote:
> From: Kaitao Cheng <chengkaitao@kylinos.cn>
>
> The two boot-time sites in hugetlb_hstate_alloc_pages_onenode() and
> hugetlb_pages_alloc_boot_node() only need to know whether HVO is
> applicable, not the exact optimizable size. Switch them from
> hugetlb_vmemmap_optimizable_size() to hugetlb_vmemmap_optimizable()
> to make intent explicit.
Hi Kaitao, thank you for the patch.
I think the changes look good. hugetlb_vmemmap_optimizable is just a
oneliner that checks hugetlb_vmemmap_optimizable_size != 0 anyways
so this change seems clean with no side effects.
Notably this leaves the only user of hugetlb_vmemmap_optimizable_size
an inittimepr_info statement. Just thought I would note that here.
Have a great day!
Reviewed-by: Joshua hahn <joshua.hahnjy@gmail.com>
> No functional change intended.
>
> Signed-off-by: Kaitao Cheng <chengkaitao@kylinos.cn>
> ---
> mm/hugetlb.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index a03a75fd7fa8..885f721999e6 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -3416,7 +3416,7 @@ static void __init hugetlb_hstate_alloc_pages_onenode(struct hstate *h, int nid)
> folio = only_alloc_fresh_hugetlb_folio(h, gfp_mask, nid,
> &node_states[N_MEMORY], NULL);
> if (!folio && !list_empty(&folio_list) &&
> - hugetlb_vmemmap_optimizable_size(h)) {
> + hugetlb_vmemmap_optimizable(h)) {
> prep_and_add_allocated_folios(h, &folio_list);
> INIT_LIST_HEAD(&folio_list);
> folio = only_alloc_fresh_hugetlb_folio(h, gfp_mask, nid,
> @@ -3485,7 +3485,7 @@ static void __init hugetlb_pages_alloc_boot_node(unsigned long start, unsigned l
> for (i = 0; i < num; ++i) {
> struct folio *folio;
>
> - if (hugetlb_vmemmap_optimizable_size(h) &&
> + if (hugetlb_vmemmap_optimizable(h) &&
> (si_mem_available() == 0) && !list_empty(&folio_list)) {
> prep_and_add_allocated_folios(h, &folio_list);
> INIT_LIST_HEAD(&folio_list);
> --
> 2.50.1 (Apple Git-155)
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts
2026-08-24 15:16 [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts Kaitao Cheng
2026-08-24 16:59 ` Joshua Hahn
@ 2026-08-25 2:05 ` Muchun Song
1 sibling, 0 replies; 3+ messages in thread
From: Muchun Song @ 2026-08-25 2:05 UTC (permalink / raw)
To: Kaitao Cheng
Cc: Oscar Salvador, David Hildenbrand, Andrew Morton, linux-mm,
linux-kernel, Kaitao Cheng
> On Aug 24, 2026, at 23:16, Kaitao Cheng <kaitao.cheng@linux.dev> wrote:
>
> From: Kaitao Cheng <chengkaitao@kylinos.cn>
>
> The two boot-time sites in hugetlb_hstate_alloc_pages_onenode() and
> hugetlb_pages_alloc_boot_node() only need to know whether HVO is
> applicable, not the exact optimizable size. Switch them from
> hugetlb_vmemmap_optimizable_size() to hugetlb_vmemmap_optimizable()
> to make intent explicit.
>
> No functional change intended.
>
> Signed-off-by: Kaitao Cheng <chengkaitao@kylinos.cn>
Reviewed-by: Muchun Song <muchun.song@linux.dev>
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-25 2:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24 15:16 [PATCH] mm/hugetlb: use hugetlb_vmemmap_optimizable() in boolean contexts Kaitao Cheng
2026-08-24 16:59 ` Joshua Hahn
2026-08-25 2:05 ` Muchun Song
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox