]> git.hungrycats.org Git - linux/commitdiff
kernel/panic.c: add missing \n
authorJiri Slaby <jslaby@suse.cz>
Tue, 24 Jan 2017 23:18:29 +0000 (15:18 -0800)
committerSasha Levin <alexander.levin@verizon.com>
Mon, 31 Jul 2017 17:37:51 +0000 (13:37 -0400)
[ Upstream commit ff7a28a074ccbea999dadbb58c46212cf90984c6 ]

When a system panics, the "Rebooting in X seconds.." message is never
printed because it lacks a new line.  Fix it.

Link: http://lkml.kernel.org/r/20170119114751.2724-1-jslaby@suse.cz
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
kernel/panic.c

index a4f7820f59302feb4fcb340c77b4e5751403b144..10e28b8d1ac9006f4f258a7d8f55bf654685e30c 100644 (file)
@@ -166,7 +166,7 @@ void panic(const char *fmt, ...)
                 * Delay timeout seconds before rebooting the machine.
                 * We can't use the "normal" timers since we just panicked.
                 */
-               pr_emerg("Rebooting in %d seconds..", panic_timeout);
+               pr_emerg("Rebooting in %d seconds..\n", panic_timeout);
 
                for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
                        touch_nmi_watchdog();