* [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages()
@ 2025-10-24 9:42 Shameer Kolothum
2025-10-24 14:51 ` Joshua Hahn
2025-11-24 19:28 ` Jason Gunthorpe
0 siblings, 2 replies; 4+ messages in thread
From: Shameer Kolothum @ 2025-10-24 9:42 UTC (permalink / raw)
To: linux-mm, linux-kernel
Cc: muchun.song, osalvador, vivek.kasireddy, joshua.hahnjy, jgg,
nicolinc, nathanc, mochs
The function hugetlb_reserve_pages() returns the number of pages added
to the reservation map on success and a negative error code on failure
(e.g. -EINVAL, -ENOMEM). However, in some error paths, it may return -1
directly.
For example, a failure at:
if (hugetlb_acct_memory(h, gbl_reserve) < 0)
goto out_put_pages;
results in returning -1 (since add = -1), which may be misinterpreted
in userspace as -EPERM.
Fix this by explicitly capturing and propagating the return values from
helper functions, and using -EINVAL for all other failure cases.
Fixes: 986f5f2b4be3 ("mm/hugetlb: make hugetlb_reserve_pages() return nr of entries updated")
Signed-off-by: Shameer Kolothum <skolothumtho@nvidia.com>
---
Addressed commenst from v1. Thanks!
https://lore.kernel.org/linux-mm/20251022102956.245736-1-skolothumtho@nvidia.com/
---
mm/hugetlb.c | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 795ee393eac0..b6c0024ff5a5 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -7269,6 +7269,7 @@ long hugetlb_reserve_pages(struct inode *inode,
struct resv_map *resv_map;
struct hugetlb_cgroup *h_cg = NULL;
long gbl_reserve, regions_needed = 0;
+ int err;
/* This should never happen */
if (from > to) {
@@ -7308,8 +7309,10 @@ long hugetlb_reserve_pages(struct inode *inode,
} else {
/* Private mapping. */
resv_map = resv_map_alloc();
- if (!resv_map)
+ if (!resv_map) {
+ err = -EINVAL;
goto out_err;
+ }
chg = to - from;
@@ -7317,11 +7320,15 @@ long hugetlb_reserve_pages(struct inode *inode,
set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
}
- if (chg < 0)
+ if (chg < 0) {
+ /* region_chg() above can return -ENOMEM */
+ err = (chg == -ENOMEM) ? -ENOMEM : -EINVAL;
goto out_err;
+ }
- if (hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
- chg * pages_per_huge_page(h), &h_cg) < 0)
+ err = hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
+ chg * pages_per_huge_page(h), &h_cg);
+ if (err < 0)
goto out_err;
if (vma && !(vma->vm_flags & VM_MAYSHARE) && h_cg) {
@@ -7337,14 +7344,17 @@ long hugetlb_reserve_pages(struct inode *inode,
* reservations already in place (gbl_reserve).
*/
gbl_reserve = hugepage_subpool_get_pages(spool, chg);
- if (gbl_reserve < 0)
+ if (gbl_reserve < 0) {
+ err = gbl_reserve;
goto out_uncharge_cgroup;
+ }
/*
* Check enough hugepages are available for the reservation.
* Hand the pages back to the subpool if there are not
*/
- if (hugetlb_acct_memory(h, gbl_reserve) < 0)
+ err = hugetlb_acct_memory(h, gbl_reserve);
+ if (err < 0)
goto out_put_pages;
/*
@@ -7363,6 +7373,7 @@ long hugetlb_reserve_pages(struct inode *inode,
if (unlikely(add < 0)) {
hugetlb_acct_memory(h, -gbl_reserve);
+ err = -EINVAL;
goto out_put_pages;
} else if (unlikely(chg > add)) {
/*
@@ -7423,7 +7434,7 @@ long hugetlb_reserve_pages(struct inode *inode,
kref_put(&resv_map->refs, resv_map_release);
set_vma_resv_map(vma, NULL);
}
- return chg < 0 ? chg : add < 0 ? add : -EINVAL;
+ return err;
}
long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages()
2025-10-24 9:42 [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages() Shameer Kolothum
@ 2025-10-24 14:51 ` Joshua Hahn
2025-11-23 19:40 ` Shameer Kolothum
2025-11-24 19:28 ` Jason Gunthorpe
1 sibling, 1 reply; 4+ messages in thread
From: Joshua Hahn @ 2025-10-24 14:51 UTC (permalink / raw)
To: Shameer Kolothum
Cc: linux-mm, linux-kernel, muchun.song, osalvador, vivek.kasireddy,
joshua.hahnjy, jgg, nicolinc, nathanc, mochs
On Fri, 24 Oct 2025 10:42:40 +0100 Shameer Kolothum <skolothumtho@nvidia.com> wrote:
> The function hugetlb_reserve_pages() returns the number of pages added
> to the reservation map on success and a negative error code on failure
> (e.g. -EINVAL, -ENOMEM). However, in some error paths, it may return -1
> directly.
>
> For example, a failure at:
>
> if (hugetlb_acct_memory(h, gbl_reserve) < 0)
> goto out_put_pages;
>
> results in returning -1 (since add = -1), which may be misinterpreted
> in userspace as -EPERM.
>
> Fix this by explicitly capturing and propagating the return values from
> helper functions, and using -EINVAL for all other failure cases.
>
> Fixes: 986f5f2b4be3 ("mm/hugetlb: make hugetlb_reserve_pages() return nr of entries updated")
> Signed-off-by: Shameer Kolothum <skolothumtho@nvidia.com>
> ---
> Addressed commenst from v1. Thanks!
> https://lore.kernel.org/linux-mm/20251022102956.245736-1-skolothumtho@nvidia.com/
> ---
> mm/hugetlb.c | 25 ++++++++++++++++++-------
> 1 file changed, 18 insertions(+), 7 deletions(-)
Hello Shameer, LGTM, thank you for addressing the comments! Feel free to add:
Reviewed-by: Joshua Hahn <joshua.hahnjy@gmail.com>
[...snip...]
> + /* region_chg() above can return -ENOMEM */
> + err = (chg == -ENOMEM) ? -ENOMEM : -EINVAL;
And this looks much more elegant than the version I wrote : -)
^ permalink raw reply [flat|nested] 4+ messages in thread* RE: [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages()
2025-10-24 14:51 ` Joshua Hahn
@ 2025-11-23 19:40 ` Shameer Kolothum
0 siblings, 0 replies; 4+ messages in thread
From: Shameer Kolothum @ 2025-11-23 19:40 UTC (permalink / raw)
To: Joshua Hahn, linux-mm, linux-kernel
Cc: muchun.song, osalvador, vivek.kasireddy, Jason Gunthorpe,
Nicolin Chen, Nathan Chen, Matt Ochs
A gentle ping...It would be great if this can be picked up if there
are no further comments.
Thanks,
Shameer
> -----Original Message-----
> From: Joshua Hahn <joshua.hahnjy@gmail.com>
> Sent: 24 October 2025 15:51
> To: Shameer Kolothum <skolothumtho@nvidia.com>
> Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org;
> muchun.song@linux.dev; osalvador@suse.de; vivek.kasireddy@intel.com;
> joshua.hahnjy@gmail.com; Jason Gunthorpe <jgg@nvidia.com>; Nicolin
> Chen <nicolinc@nvidia.com>; Nathan Chen <nathanc@nvidia.com>; Matt
> Ochs <mochs@nvidia.com>
> Subject: Re: [PATCH v2] mm/hugetlb: Fix incorrect error return from
> hugetlb_reserve_pages()
> Reviewed-by: Joshua Hahn <joshua.hahnjy@gmail.com>
>
> [...snip...]
>
> > + /* region_chg() above can return -ENOMEM */
> > + err = (chg == -ENOMEM) ? -ENOMEM : -EINVAL;
>
> And this looks much more elegant than the version I wrote : -)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages()
2025-10-24 9:42 [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages() Shameer Kolothum
2025-10-24 14:51 ` Joshua Hahn
@ 2025-11-24 19:28 ` Jason Gunthorpe
1 sibling, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2025-11-24 19:28 UTC (permalink / raw)
To: Shameer Kolothum
Cc: linux-mm, linux-kernel, muchun.song, osalvador, vivek.kasireddy,
joshua.hahnjy, nicolinc, nathanc, mochs
On Fri, Oct 24, 2025 at 10:42:40AM +0100, Shameer Kolothum wrote:
> The function hugetlb_reserve_pages() returns the number of pages added
> to the reservation map on success and a negative error code on failure
> (e.g. -EINVAL, -ENOMEM). However, in some error paths, it may return -1
> directly.
>
> For example, a failure at:
>
> if (hugetlb_acct_memory(h, gbl_reserve) < 0)
> goto out_put_pages;
>
> results in returning -1 (since add = -1), which may be misinterpreted
> in userspace as -EPERM.
>
> Fix this by explicitly capturing and propagating the return values from
> helper functions, and using -EINVAL for all other failure cases.
>
> Fixes: 986f5f2b4be3 ("mm/hugetlb: make hugetlb_reserve_pages() return nr of entries updated")
> Signed-off-by: Shameer Kolothum <skolothumtho@nvidia.com>
> ---
> Addressed commenst from v1. Thanks!
> https://lore.kernel.org/linux-mm/20251022102956.245736-1-skolothumtho@nvidia.com/
> ---
> mm/hugetlb.c | 25 ++++++++++++++++++-------
> 1 file changed, 18 insertions(+), 7 deletions(-)
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Jason
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-11-24 19:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-24 9:42 [PATCH v2] mm/hugetlb: Fix incorrect error return from hugetlb_reserve_pages() Shameer Kolothum
2025-10-24 14:51 ` Joshua Hahn
2025-11-23 19:40 ` Shameer Kolothum
2025-11-24 19:28 ` Jason Gunthorpe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox