From: David Hildenbrand <david@redhat.com>
To: Usama Arif <usamaarif642@gmail.com>,
muchun.song@linux.dev, osalvador@suse.de,
Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mm@kvack.org, hannes@cmpxchg.org, riel@surriel.com,
kas@kernel.org, linux-kernel@vger.kernel.org,
kernel-team@meta.com
Subject: Re: [PATCH] mm/hugetlb: allow overcommitting gigantic hugepages
Date: Wed, 8 Oct 2025 11:02:34 +0200 [thread overview]
Message-ID: <df3566e4-82dd-4e1f-b043-e9de4879b5a0@redhat.com> (raw)
In-Reply-To: <20251006185607.3257340-1-usamaarif642@gmail.com>
On 06.10.25 20:56, Usama Arif wrote:
> Currently, gigantic hugepages cannot use the overcommit mechanism
> (nr_overcommit_hugepages), forcing users to permanently reserve memory via
> nr_hugepages even when pages might not be actively used.
>
> Remove this blanket restriction on gigantic hugepage overcommit.
> This will bring the same benefits to gigantic pages as hugepages:
>
> - Memory is only taken out of regular use when actually needed
> - Unused surplus pages can be returned to the system
> - Better memory utilization, especially with CMA backing which can
> significantly increase the changes of hugepage allocation
>
> Without this patch:
> echo 3 > /sys/kernel/mm/hugepages/hugepages-1048576kB/nr_overcommit_hugepages
> bash: echo: write error: Invalid argument
>
> With this patch:
> echo 3 > /sys/kernel/mm/hugepages/hugepages-1048576kB/nr_overcommit_hugepages
> ./mmap_hugetlb_test
> Successfully allocated huge pages at address: 0x7f9d40000000
>
> cat mmap_hugetlb_test.c
> ...
> unsigned long ALLOC_SIZE = 3 * (unsigned long) HUGE_PAGE_SIZE;
> addr = mmap(NULL,
> ALLOC_SIZE, // 3GB
> PROT_READ | PROT_WRITE,
> MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB | MAP_HUGE_1GB,
> -1,
> 0);
>
> if (addr == MAP_FAILED) {
> fprintf(stderr, "mmap failed: %s\n", strerror(errno));
> return 1;
> }
> printf("Successfully allocated huge pages at address: %p\n", addr);
> ...
>
> Signed-off-by: Usama Arif <usamaarif642@gmail.com>
> ---
No opinion from my side. I guess it won't harm anybody (but people
should be aware that "overcommit" with huge pages where we have no
allocation guarantees is a flawed concept).
--
Cheers
David / dhildenb
prev parent reply other threads:[~2025-10-08 9:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-06 18:56 Usama Arif
2025-10-07 22:24 ` Andrew Morton
2025-10-07 22:52 ` Usama Arif
2025-10-08 9:02 ` David Hildenbrand [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=df3566e4-82dd-4e1f-b043-e9de4879b5a0@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=hannes@cmpxchg.org \
--cc=kas@kernel.org \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=muchun.song@linux.dev \
--cc=osalvador@suse.de \
--cc=riel@surriel.com \
--cc=usamaarif642@gmail.com \
/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