The patch titled Subject: crash: remove header files which are included more than once has been added to the -mm mm-nonmm-unstable branch. Its filename is crash-remove-header-files-which-are-included-more-than-once.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/crash-remove-header-files-which-are-included-more-than-once.patch This patch will later appear in the mm-nonmm-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: Wenchao Hao <haowenchao22@xxxxxxxxx> Subject: crash: remove header files which are included more than once Date: Thu, 6 Jun 2024 17:14:27 +0800 Following warning is reported, so remove these duplicated header including: ./kernel/crash_reserve.c: linux/kexec.h is included more than once. This is just a clean code, no logic changed. Link: https://lkml.kernel.org/r/20240606091427.3512314-1-haowenchao22@xxxxxxxxx Signed-off-by: Wenchao Hao <haowenchao22@xxxxxxxxx> Acked-by: Baoquan He <bhe@xxxxxxxxxx> Cc: Dave Young <dyoung@xxxxxxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/crash_reserve.c | 1 - 1 file changed, 1 deletion(-) --- a/kernel/crash_reserve.c~crash-remove-header-files-which-are-included-more-than-once +++ a/kernel/crash_reserve.c @@ -13,7 +13,6 @@ #include <linux/memory.h> #include <linux/cpuhotplug.h> #include <linux/memblock.h> -#include <linux/kexec.h> #include <linux/kmemleak.h> #include <asm/page.h> _ Patches currently in -mm which might be from haowenchao22@xxxxxxxxx are crash-remove-header-files-which-are-included-more-than-once.patch