The quilt patch titled Subject: mm-convert-destroy_compound_page-to-destroy_large_folio-fix has been removed from the -mm tree. Its filename was mm-convert-destroy_compound_page-to-destroy_large_folio-fix.patch This patch was dropped because it was folded into mm-convert-destroy_compound_page-to-destroy_large_folio.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-convert-destroy_compound_page-to-destroy_large_folio-fix Date: Tue Jun 21 03:24:15 PM PDT 2022 uninline destroy_large_folio() to fix build issue Cc: "Matthew Wilcox (Oracle)" <willy@xxxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm.h | 8 +------- mm/page_alloc.c | 8 ++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) --- a/include/linux/mm.h~mm-convert-destroy_compound_page-to-destroy_large_folio-fix +++ a/include/linux/mm.h @@ -923,13 +923,7 @@ static inline void set_compound_page_dto page[1].compound_dtor = compound_dtor; } -static inline void destroy_large_folio(struct folio *folio) -{ - enum compound_dtor_id dtor = folio_page(folio, 1)->compound_dtor; - - VM_BUG_ON_FOLIO(dtor >= NR_COMPOUND_DTORS, folio); - compound_page_dtors[dtor](&folio->page); -} +void destroy_large_folio(struct folio *folio); static inline int head_compound_pincount(struct page *head) { --- a/mm/page_alloc.c~mm-convert-destroy_compound_page-to-destroy_large_folio-fix +++ a/mm/page_alloc.c @@ -744,6 +744,14 @@ void prep_compound_page(struct page *pag prep_compound_head(page, order); } +void destroy_large_folio(struct folio *folio) +{ + enum compound_dtor_id dtor = folio_page(folio, 1)->compound_dtor; + + VM_BUG_ON_FOLIO(dtor >= NR_COMPOUND_DTORS, folio); + compound_page_dtors[dtor](&folio->page); +} + #ifdef CONFIG_DEBUG_PAGEALLOC unsigned int _debug_guardpage_minorder; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-convert-destroy_compound_page-to-destroy_large_folio.patch mm-madvise-minor-cleanup-for-swapin_walk_pmd_entry-fix.patch mm-docs-fix-comments-that-mention-mem_hotplug_end-fix.patch android-binder-stop-saving-a-pointer-to-the-vma-fix.patch mm-remove-the-vma-linked-list-fix-2-fix.patch mm-drop-oom-code-from-exit_mmap-fix-fix.patch mm-add-merging-after-mremap-resize-checkpatch-fixes.patch mm-handling-non-lru-pages-returned-by-vm_normal_pages-fix.patch mm-factor-helpers-for-memory_failure_dev_pagemap-fix.patch xfs-support-cow-in-fsdax-mode-fix.patch mm-thp-kill-transparent_hugepage_active-fix.patch mm-thp-kill-transparent_hugepage_active-fix-fix.patch x86-mm-move-protection_map-inside-the-platform-fix.patch