The quilt patch titled Subject: mm/page-flags: make PageMappingFlags return bool has been removed from the -mm tree. Its filename was mm-page-flags-make-pagemappingflags-return-bool.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Hao Ge <gehao@xxxxxxxxxx> Subject: mm/page-flags: make PageMappingFlags return bool Date: Thu, 21 Mar 2024 11:07:12 +0800 Make PageMappingFlags() return bool like folio_mapping_flags(). Link: https://lkml.kernel.org/r/20240321030712.80618-1-gehao@xxxxxxxxxx Signed-off-by: Hao Ge <gehao@xxxxxxxxxx> Reviewed-by: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Reviewed-by: David Hildenbrand <david@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/page-flags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/page-flags.h~mm-page-flags-make-pagemappingflags-return-bool +++ a/include/linux/page-flags.h @@ -686,7 +686,7 @@ static __always_inline bool folio_mappin return ((unsigned long)folio->mapping & PAGE_MAPPING_FLAGS) != 0; } -static __always_inline int PageMappingFlags(const struct page *page) +static __always_inline bool PageMappingFlags(const struct page *page) { return ((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) != 0; } _ Patches currently in -mm which might be from gehao@xxxxxxxxxx are mm-mmap-make-vma_wants_writenotify-return-bool.patch mm-mmap-make-accountable_mapping-return-bool.patch mm-page-flags-make-pageuptodate-return-bool.patch