The patch titled Subject: mm/page-flags: make __PageMovable return bool has been added to the -mm mm-unstable branch. Its filename is mm-page-flags-make-__pagemovable-return-bool.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-page-flags-make-__pagemovable-return-bool.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Hao Ge <gehao@xxxxxxxxxx> Subject: mm/page-flags: make __PageMovable return bool Date: Thu, 21 Mar 2024 11:22:56 +0800 Make __PageMovable() return bool like __folio_test_movable(). Link: https://lkml.kernel.org/r/20240321032256.82063-1-gehao@xxxxxxxxxx Signed-off-by: Hao Ge <gehao@xxxxxxxxxx> Cc: Hao Ge <gehao@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-__pagemovable-return-bool +++ a/include/linux/page-flags.h @@ -707,7 +707,7 @@ static __always_inline bool __folio_test PAGE_MAPPING_MOVABLE; } -static __always_inline int __PageMovable(const struct page *page) +static __always_inline bool __PageMovable(const struct page *page) { return ((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) == PAGE_MAPPING_MOVABLE; _ Patches currently in -mm which might be from gehao@xxxxxxxxxx are mm-page-flags-make-__pagemovable-return-bool.patch