The patch titled Subject: crash_dump: fix boolreturn.cocci warning has been removed from the -mm tree. Its filename was crash_dump-fix-boolreturncocci-warning.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Changcheng Deng <deng.changcheng@xxxxxxxxxx> Subject: crash_dump: fix boolreturn.cocci warning ./include/linux/crash_dump.h: 119: 50-51: WARNING: return of 0/1 in function 'is_kdump_kernel' with return type bool Return statements in functions returning bool should use true/false instead of 1/0. Link: https://lkml.kernel.org/r/20211020083905.1037952-1-deng.changcheng@xxxxxxxxxx Signed-off-by: Changcheng Deng <deng.changcheng@xxxxxxxxxx> Reported-by: Zeal Robot <zealci@xxxxxxxxxx> Reviewed-by: Simon Horman <horms@xxxxxxxxxx> Acked-by: Baoquan He <bhe@xxxxxxxxxx> Cc: Dave Young <dyoung@xxxxxxxxxx> Cc: Mike Rapoport <rppt@xxxxxxxxxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Cc: Ye Guojin <ye.guojin@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/crash_dump.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/crash_dump.h~crash_dump-fix-boolreturncocci-warning +++ a/include/linux/crash_dump.h @@ -116,7 +116,7 @@ extern void register_vmcore_cb(struct vm extern void unregister_vmcore_cb(struct vmcore_cb *cb); #else /* !CONFIG_CRASH_DUMP */ -static inline bool is_kdump_kernel(void) { return 0; } +static inline bool is_kdump_kernel(void) { return false; } #endif /* CONFIG_CRASH_DUMP */ /* Device Dump information to be filled by drivers */ _ Patches currently in -mm which might be from deng.changcheng@xxxxxxxxxx are