]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mm/huge_memory: do not change split_huge_page*() target order silently
authorZi Yan <ziy@nvidia.com>
Fri, 17 Oct 2025 01:36:30 +0000 (21:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Nov 2025 09:37:50 +0000 (10:37 +0100)
commit 77008e1b2ef73249bceb078a321a3ff6bc087afb upstream.

Page cache folios from a file system that support large block size (LBS)
can have minimal folio order greater than 0, thus a high order folio might
not be able to be split down to order-0.  Commit e220917fa507 ("mm: split
a folio in minimum folio order chunks") bumps the target order of
split_huge_page*() to the minimum allowed order when splitting a LBS
folio.  This causes confusion for some split_huge_page*() callers like
memory failure handling code, since they expect after-split folios all
have order-0 when split succeeds but in reality get min_order_for_split()
order folios and give warnings.

Fix it by failing a split if the folio cannot be split to the target
order.  Rename try_folio_split() to try_folio_split_to_order() to reflect
the added new_order parameter.  Remove its unused list parameter.

[The test poisons LBS folios, which cannot be split to order-0 folios, and
also tries to poison all memory.  The non split LBS folios take more
memory than the test anticipated, leading to OOM.  The patch fixed the
kernel warning and the test needs some change to avoid OOM.]

Link: https://lkml.kernel.org/r/20251017013630.139907-1-ziy@nvidia.com
Fixes: e220917fa507 ("mm: split a folio in minimum folio order chunks")
Signed-off-by: Zi Yan <ziy@nvidia.com>
Reported-by: syzbot+e6367ea2fdab6ed46056@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/all/68d2c943.a70a0220.1b52b.02b3.GAE@google.com/
Reviewed-by: Luis Chamberlain <mcgrof@kernel.org>
Reviewed-by: Pankaj Raghav <p.raghav@samsung.com>
Reviewed-by: Wei Yang <richard.weiyang@gmail.com>
Acked-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Reviewed-by: Miaohe Lin <linmiaohe@huawei.com>
Cc: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Barry Song <baohua@kernel.org>
Cc: David Hildenbrand <david@redhat.com>
Cc: Dev Jain <dev.jain@arm.com>
Cc: Jane Chu <jane.chu@oracle.com>
Cc: Lance Yang <lance.yang@linux.dev>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Mariano Pache <npache@redhat.com>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Naoya Horiguchi <nao.horiguchi@gmail.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/huge_mm.h
mm/huge_memory.c
mm/truncate.c

index 7748489fde1b7af59b3f926233c98e27d26dbac6..6c92f3fc87dc9f890befd6f0b88f66905ef9cff2 100644 (file)
@@ -354,45 +354,30 @@ bool non_uniform_split_supported(struct folio *folio, unsigned int new_order,
 int folio_split(struct folio *folio, unsigned int new_order, struct page *page,
                struct list_head *list);
 /*
- * try_folio_split - try to split a @folio at @page using non uniform split.
+ * try_folio_split_to_order - try to split a @folio at @page to @new_order using
+ * non uniform split.
  * @folio: folio to be split
- * @page: split to order-0 at the given page
- * @list: store the after-split folios
+ * @page: split to @new_order at the given page
+ * @new_order: the target split order
  *
- * Try to split a @folio at @page using non uniform split to order-0, if
- * non uniform split is not supported, fall back to uniform split.
+ * Try to split a @folio at @page using non uniform split to @new_order, if
+ * non uniform split is not supported, fall back to uniform split. After-split
+ * folios are put back to LRU list. Use min_order_for_split() to get the lower
+ * bound of @new_order.
  *
  * Return: 0: split is successful, otherwise split failed.
  */
-static inline int try_folio_split(struct folio *folio, struct page *page,
-               struct list_head *list)
+static inline int try_folio_split_to_order(struct folio *folio,
+               struct page *page, unsigned int new_order)
 {
-       int ret = min_order_for_split(folio);
-
-       if (ret < 0)
-               return ret;
-
-       if (!non_uniform_split_supported(folio, 0, false))
-               return split_huge_page_to_list_to_order(&folio->page, list,
-                               ret);
-       return folio_split(folio, ret, page, list);
+       if (!non_uniform_split_supported(folio, new_order, /* warns= */ false))
+               return split_huge_page_to_list_to_order(&folio->page, NULL,
+                               new_order);
+       return folio_split(folio, new_order, page, NULL);
 }
 static inline int split_huge_page(struct page *page)
 {
-       struct folio *folio = page_folio(page);
-       int ret = min_order_for_split(folio);
-
-       if (ret < 0)
-               return ret;
-
-       /*
-        * split_huge_page() locks the page before splitting and
-        * expects the same page that has been split to be locked when
-        * returned. split_folio(page_folio(page)) cannot be used here
-        * because it converts the page to folio and passes the head
-        * page to be split.
-        */
-       return split_huge_page_to_list_to_order(page, NULL, ret);
+       return split_huge_page_to_list_to_order(page, NULL, 0);
 }
 void deferred_split_folio(struct folio *folio, bool partially_mapped);
 
@@ -560,13 +545,19 @@ static inline int split_huge_page(struct page *page)
        return 0;
 }
 
+static inline int min_order_for_split(struct folio *folio)
+{
+       VM_WARN_ON_ONCE_FOLIO(1, folio);
+       return -EINVAL;
+}
+
 static inline int split_folio_to_list(struct folio *folio, struct list_head *list)
 {
        return 0;
 }
 
-static inline int try_folio_split(struct folio *folio, struct page *page,
-               struct list_head *list)
+static inline int try_folio_split_to_order(struct folio *folio,
+               struct page *page, unsigned int new_order)
 {
        return 0;
 }
index fcefbedf50a6a14afdb333cc7ff0c6cbbde819aa..c5e1ee5668412330b6035760c9a181625e2fa348 100644 (file)
@@ -3680,8 +3680,6 @@ static int __folio_split(struct folio *folio, unsigned int new_order,
 
                min_order = mapping_min_folio_order(folio->mapping);
                if (new_order < min_order) {
-                       VM_WARN_ONCE(1, "Cannot split mapped folio below min-order: %u",
-                                    min_order);
                        ret = -EINVAL;
                        goto out;
                }
@@ -4016,12 +4014,7 @@ int min_order_for_split(struct folio *folio)
 
 int split_folio_to_list(struct folio *folio, struct list_head *list)
 {
-       int ret = min_order_for_split(folio);
-
-       if (ret < 0)
-               return ret;
-
-       return split_huge_page_to_list_to_order(&folio->page, list, ret);
+       return split_huge_page_to_list_to_order(&folio->page, list, 0);
 }
 
 /*
index 91eb92a5ce4fdcf110a3fdbc2abfaefe532a42fa..9210cf808f5ca1515002d778cc1c19f7cfb6fa45 100644 (file)
@@ -194,6 +194,7 @@ bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
        size_t size = folio_size(folio);
        unsigned int offset, length;
        struct page *split_at, *split_at2;
+       unsigned int min_order;
 
        if (pos < start)
                offset = start - pos;
@@ -223,8 +224,9 @@ bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
        if (!folio_test_large(folio))
                return true;
 
+       min_order = mapping_min_folio_order(folio->mapping);
        split_at = folio_page(folio, PAGE_ALIGN_DOWN(offset) / PAGE_SIZE);
-       if (!try_folio_split(folio, split_at, NULL)) {
+       if (!try_folio_split_to_order(folio, split_at, min_order)) {
                /*
                 * try to split at offset + length to make sure folios within
                 * the range can be dropped, especially to avoid memory waste
@@ -254,7 +256,7 @@ bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
                 */
                if (folio_test_large(folio2) &&
                    folio2->mapping == folio->mapping)
-                       try_folio_split(folio2, split_at2, NULL);
+                       try_folio_split_to_order(folio2, split_at2, min_order);
 
                folio_unlock(folio2);
 out: