The patch titled Subject: panic: make print_oops_end_marker() static has been added to the -mm tree. Its filename is panic-make-print_oops_end_marker-static.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/panic-make-print_oops_end_marker-static.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/panic-make-print_oops_end_marker-static.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: Yue Hu <huyue2@xxxxxxxxxx> Subject: panic: make print_oops_end_marker() static Since print_oops_end_marker() is not used externally, also remove it in kernel.h at the same time. Link: http://lkml.kernel.org/r/20200724011516.12756-1-zbestahu@xxxxxxxxx Signed-off-by: Yue Hu <huyue2@xxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kernel.h | 1 - kernel/panic.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) --- a/include/linux/kernel.h~panic-make-print_oops_end_marker-static +++ a/include/linux/kernel.h @@ -321,7 +321,6 @@ void panic(const char *fmt, ...) __noret void nmi_panic(struct pt_regs *regs, const char *msg); extern void oops_enter(void); extern void oops_exit(void); -void print_oops_end_marker(void); extern int oops_may_print(void); void do_exit(long error_code) __noreturn; void complete_and_exit(struct completion *, long) __noreturn; --- a/kernel/panic.c~panic-make-print_oops_end_marker-static +++ a/kernel/panic.c @@ -551,7 +551,7 @@ static int init_oops_id(void) } late_initcall(init_oops_id); -void print_oops_end_marker(void) +static void print_oops_end_marker(void) { init_oops_id(); pr_warn("---[ end trace %016llx ]---\n", (unsigned long long)oops_id); _ Patches currently in -mm which might be from huyue2@xxxxxxxxxx are panic-make-print_oops_end_marker-static.patch