The patch titled Subject: kernel/watchdog_hld.c: hard lockup message should end with a newline has been added to the -mm tree. Its filename is watchdog-hard-lockup-message-should-end-with-a-newline.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/watchdog-hard-lockup-message-should-end-with-a-newline.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/watchdog-hard-lockup-message-should-end-with-a-newline.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: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> Subject: kernel/watchdog_hld.c: hard lockup message should end with a newline Separate print_modules() and hard lockup error message. Before the patch: NMI watchdog: Watchdog detected hard LOCKUP on cpu 1Modules linked in: nls_cp437 Link: http://lkml.kernel.org/r/20190412062557.2700-1-sergey.senozhatsky@xxxxxxxxx Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/watchdog_hld.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/kernel/watchdog_hld.c~watchdog-hard-lockup-message-should-end-with-a-newline +++ a/kernel/watchdog_hld.c @@ -135,7 +135,8 @@ static void watchdog_overflow_callback(s if (__this_cpu_read(hard_watchdog_warn) == true) return; - pr_emerg("Watchdog detected hard LOCKUP on cpu %d", this_cpu); + pr_emerg("Watchdog detected hard LOCKUP on cpu %d\n", + this_cpu); print_modules(); print_irqtrace_events(current); if (regs) _ Patches currently in -mm which might be from sergey.senozhatsky.work@xxxxxxxxx are watchdog-hard-lockup-message-should-end-with-a-newline.patch