The quilt patch titled Subject: mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix has been removed from the -mm tree. Its filename was mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix.patch This patch was dropped because it was folded into mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix Date: Tue Jun 18 02:03:56 PM PDT 2024 cleanup and constifications per David and akpm Cc: Baolin Wang <baolin.wang@xxxxxxxxxxxxxxxxx> Cc: Barry Song <v-songbaohua@xxxxxxxx> Cc: Chris Li <chrisl@xxxxxxxxxx> Cc: David Hildenbrand <david@xxxxxxxxxx> Cc: "Huang, Ying" <ying.huang@xxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Ryan Roberts <ryan.roberts@xxxxxxx> Cc: Shuai Yuan <yuanshuai@xxxxxxxx> Cc: Suren Baghdasaryan <surenb@xxxxxxxxxx> Cc: Yang Shi <shy828301@xxxxxxxxx> Cc: Yosry Ahmed <yosryahmed@xxxxxxxxxx> Cc: Yu Zhao <yuzhao@xxxxxxxxxx> Cc: kernel test robot <lkp@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/rmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/rmap.c~mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix +++ a/mm/rmap.c @@ -1411,9 +1411,9 @@ void folio_add_anon_rmap_pmd(struct foli void folio_add_new_anon_rmap(struct folio *folio, struct vm_area_struct *vma, unsigned long address, rmap_t flags) { - int nr = folio_nr_pages(folio); + const int nr = folio_nr_pages(folio); + const bool exclusive = flags & RMAP_EXCLUSIVE; int nr_pmdmapped = 0; - bool exclusive = flags & RMAP_EXCLUSIVE; VM_WARN_ON_FOLIO(folio_test_hugetlb(folio), folio); VM_BUG_ON_VMA(address < vma->vm_start || _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-huge_memoryc-fix-used-uninitialized.patch mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap.patch mm-use-folio_add_new_anon_rmap-if-folio_test_anonfolio==false-fix.patch mm-store-zero-pages-to-be-swapped-out-in-a-bitmap-v7-fix.patch tools-mm-introduce-a-tool-to-assess-swap-entry-allocation-for-thp_swapout-fix.patch mm-gup-introduce-memfd_pin_folios-for-pinning-memfd-folios-fix.patch