The patch titled Subject: mm: fix boolreturn.cocci warning has been added to the -mm tree. Its filename is mm-fix-boolreturncocci-warning.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-fix-boolreturncocci-warning.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-fix-boolreturncocci-warning.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Changcheng Deng <deng.changcheng@xxxxxxxxxx> Subject: mm: fix boolreturn.cocci warning Return statements in functions returning bool should use true/false instead of 1/0. Link: https://lkml.kernel.org/r/20211126073327.74815-1-deng.changcheng@xxxxxxxxxx Signed-off-by: Changcheng Deng <deng.changcheng@xxxxxxxxxx> Reported-by: Zeal Robot <zealci@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-fix-boolreturncocci-warning +++ a/include/linux/page-flags.h @@ -383,7 +383,7 @@ static __always_inline int TestClearPage TESTCLEARFLAG(uname, lname, policy) #define TESTPAGEFLAG_FALSE(uname, lname) \ -static inline bool folio_test_##lname(const struct folio *folio) { return 0; } \ +static inline bool folio_test_##lname(const struct folio *folio) { return false; } \ static inline int Page##uname(const struct page *page) { return 0; } #define SETPAGEFLAG_NOOP(uname, lname) \ _ Patches currently in -mm which might be from deng.changcheng@xxxxxxxxxx are mm-fix-boolreturncocci-warning.patch