The patch titled Subject: kexec-implementation-of-new-syscall-kexec_file_load-checkpatch-fixes has been removed from the -mm tree. Its filename was kexec-implementation-of-new-syscall-kexec_file_load-checkpatch-fixes.patch This patch was dropped because it was folded into kexec-implementation-of-new-syscall-kexec_file_load.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: kexec-implementation-of-new-syscall-kexec_file_load-checkpatch-fixes WARNING: else is not generally useful after a break or return #673: FILE: kernel/kexec.c:2024: + return locate_mem_hole_top_down(start, end, kbuf); + else total: 0 errors, 1 warnings, 677 lines checked ./patches/kexec-implementation-of-new-syscall-kexec_file_load.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kexec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN kernel/kexec.c~kexec-implementation-of-new-syscall-kexec_file_load-checkpatch-fixes kernel/kexec.c --- a/kernel/kexec.c~kexec-implementation-of-new-syscall-kexec_file_load-checkpatch-fixes +++ a/kernel/kexec.c @@ -2025,8 +2025,7 @@ static int locate_mem_hole_callback(u64 */ if (kbuf->top_down) return locate_mem_hole_top_down(start, end, kbuf); - else - return locate_mem_hole_bottom_up(start, end, kbuf); + return locate_mem_hole_bottom_up(start, end, kbuf); } /* _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch rtc-add-pcf85063-support.patch proc-remove-proc_tty_ldisc-variable.patch mmap_vmcore-skip-non-ram-pages-reported-by-hypervisors.patch panic-add-taint_softlockup.patch kexec-implementation-of-new-syscall-kexec_file_load.patch kexec-support-kexec-kdump-on-efi-systems-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html