Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hugetlbfs: release subpool on fill_super failure
@ 2026-07-20  2:18 Yichong Chen
  2026-07-20  5:54 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Yichong Chen @ 2026-07-20  2:18 UTC (permalink / raw)
  To: Muchun Song, Oscar Salvador
  Cc: David Hildenbrand, Andrew Morton, Mike Kravetz, linux-mm,
	linux-kernel, Yichong Chen

hugetlbfs_fill_super() allocates a hugepage subpool when size or
min_size mount options are specified.  hugepage_new_subpool() may also
reserve huge pages for min_size.

If root dentry creation fails after the subpool is created, the failure
path frees the subpool with kfree().  This bypasses
hugepage_put_subpool() and can leave min_size reservations charged.

Use hugepage_put_subpool() on the failure path, matching the normal
put_super path.

Fixes: 7ca02d0ae586 ("hugetlbfs: accept subpool min_size mount option and setup accordingly")
Signed-off-by: Yichong Chen <chenyichong@uniontech.com>
---
 fs/hugetlbfs/inode.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
index 216e1a0dd0b2..6a1d7e778cb0 100644
--- a/fs/hugetlbfs/inode.c
+++ b/fs/hugetlbfs/inode.c
@@ -1419,7 +1419,8 @@ hugetlbfs_fill_super(struct super_block *sb, struct fs_context *fc)
 		goto out_free;
 	return 0;
 out_free:
-	kfree(sbinfo->spool);
+	if (sbinfo->spool)
+		hugepage_put_subpool(sbinfo->spool);
 	kfree(sbinfo);
 	return -ENOMEM;
 }
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] hugetlbfs: release subpool on fill_super failure
  2026-07-20  2:18 [PATCH] hugetlbfs: release subpool on fill_super failure Yichong Chen
@ 2026-07-20  5:54 ` Andrew Morton
  2026-07-20  7:19   ` Yichong Chen
  2026-07-20  7:38   ` [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL Yichong Chen
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Morton @ 2026-07-20  5:54 UTC (permalink / raw)
  To: Yichong Chen
  Cc: Muchun Song, Oscar Salvador, David Hildenbrand, Mike Kravetz,
	linux-mm, linux-kernel

On Mon, 20 Jul 2026 10:18:59 +0800 Yichong Chen <chenyichong@uniontech.com> wrote:

> hugetlbfs_fill_super() allocates a hugepage subpool when size or
> min_size mount options are specified.  hugepage_new_subpool() may also
> reserve huge pages for min_size.
> 
> If root dentry creation fails after the subpool is created, the failure
> path frees the subpool with kfree().  This bypasses
> hugepage_put_subpool() and can leave min_size reservations charged.
> 
> Use hugepage_put_subpool() on the failure path, matching the normal
> put_super path.

lgtm, thanks.

This might have led AI review to find a pre-existing bug in
mm/hugetlb.c:unlock_or_release_subpool():

	https://sashiko.dev/#/patchset/20260720021900.1376309-1-chenyichong@uniontech.com

> --- a/fs/hugetlbfs/inode.c
> +++ b/fs/hugetlbfs/inode.c
> @@ -1419,7 +1419,8 @@ hugetlbfs_fill_super(struct super_block *sb, struct fs_context *fc)
>  		goto out_free;
>  	return 0;
>  out_free:
> -	kfree(sbinfo->spool);
> +	if (sbinfo->spool)
> +		hugepage_put_subpool(sbinfo->spool);

Both callers of hugepage_put_subpool do this NULL check.  We could move
that check into hugepage_put_subpool().

>  	kfree(sbinfo);
>  	return -ENOMEM;
>  }



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] hugetlbfs: release subpool on fill_super failure
  2026-07-20  5:54 ` Andrew Morton
@ 2026-07-20  7:19   ` Yichong Chen
  2026-07-20  7:38   ` [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL Yichong Chen
  1 sibling, 0 replies; 5+ messages in thread
From: Yichong Chen @ 2026-07-20  7:19 UTC (permalink / raw)
  To: akpm
  Cc: chenyichong, david, linux-kernel, linux-mm, mike.kravetz,
	muchun.song, osalvador

Thanks, Andrew.

Yes, moving the NULL check into hugepage_put_subpool() makes sense.  I'll
send a follow-up cleanup patch for that.

The Sashiko comment about unlock_or_release_subpool() also looks like a
separate pre-existing race to me, so I'll look at that as an independent
fix.

Thanks,
Yichong


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL
  2026-07-20  5:54 ` Andrew Morton
  2026-07-20  7:19   ` Yichong Chen
@ 2026-07-20  7:38   ` Yichong Chen
  2026-07-21  3:02     ` Muchun Song
  1 sibling, 1 reply; 5+ messages in thread
From: Yichong Chen @ 2026-07-20  7:38 UTC (permalink / raw)
  To: akpm
  Cc: muchun.song, osalvador, david, mike.kravetz, linux-mm,
	linux-kernel, Yichong Chen

Both callers of hugepage_put_subpool() check whether the subpool pointer
is NULL before calling it.  Move the NULL check into
hugepage_put_subpool() so callers can use the helper unconditionally.

This is a follow-up cleanup after using hugepage_put_subpool() from the
hugetlbfs_fill_super() failure path.

Signed-off-by: Yichong Chen <chenyichong@uniontech.com>
---
 fs/hugetlbfs/inode.c | 6 ++----
 mm/hugetlb.c         | 3 +++
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
index 6a1d7e778cb0..0c125eda16fd 100644
--- a/fs/hugetlbfs/inode.c
+++ b/fs/hugetlbfs/inode.c
@@ -1129,8 +1129,7 @@ static void hugetlbfs_put_super(struct super_block *sb)
 	if (sbi) {
 		sb->s_fs_info = NULL;
 
-		if (sbi->spool)
-			hugepage_put_subpool(sbi->spool);
+		hugepage_put_subpool(sbi->spool);
 
 		kfree(sbi);
 	}
@@ -1419,8 +1418,7 @@ hugetlbfs_fill_super(struct super_block *sb, struct fs_context *fc)
 		goto out_free;
 	return 0;
 out_free:
-	if (sbinfo->spool)
-		hugepage_put_subpool(sbinfo->spool);
+	hugepage_put_subpool(sbinfo->spool);
 	kfree(sbinfo);
 	return -ENOMEM;
 }
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 571212b80835..e319c6a00555 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -181,6 +181,9 @@ void hugepage_put_subpool(struct hugepage_subpool *spool)
 {
 	unsigned long flags;
 
+	if (!spool)
+		return;
+
 	spin_lock_irqsave(&spool->lock, flags);
 	BUG_ON(!spool->count);
 	spool->count--;
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL
  2026-07-20  7:38   ` [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL Yichong Chen
@ 2026-07-21  3:02     ` Muchun Song
  0 siblings, 0 replies; 5+ messages in thread
From: Muchun Song @ 2026-07-21  3:02 UTC (permalink / raw)
  To: Yichong Chen; +Cc: akpm, osalvador, david, mike.kravetz, linux-mm, linux-kernel



> On Jul 20, 2026, at 15:38, Yichong Chen <chenyichong@uniontech.com> wrote:
> 
> Both callers of hugepage_put_subpool() check whether the subpool pointer
> is NULL before calling it.  Move the NULL check into
> hugepage_put_subpool() so callers can use the helper unconditionally.
> 
> This is a follow-up cleanup after using hugepage_put_subpool() from the
> hugetlbfs_fill_super() failure path.
> 
> Signed-off-by: Yichong Chen <chenyichong@uniontech.com>

Reviewed-by: Muchun Song <muchun.song@linux.dev>




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-07-21  3:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-20  2:18 [PATCH] hugetlbfs: release subpool on fill_super failure Yichong Chen
2026-07-20  5:54 ` Andrew Morton
2026-07-20  7:19   ` Yichong Chen
2026-07-20  7:38   ` [PATCH] hugetlb: make hugepage_put_subpool() tolerate NULL Yichong Chen
2026-07-21  3:02     ` Muchun Song

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox