Skip to content

Commit 70f4100

Browse files
Jiri Slabygregkh
authored andcommitted
kernel/panic.c: add missing \n
[ 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent e4272eb commit 70f4100

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/panic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ void panic(const char *fmt, ...)
167167
* Delay timeout seconds before rebooting the machine.
168168
* We can't use the "normal" timers since we just panicked.
169169
*/
170-
pr_emerg("Rebooting in %d seconds..", panic_timeout);
170+
pr_emerg("Rebooting in %d seconds..\n", panic_timeout);
171171

172172
for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
173173
touch_nmi_watchdog();

0 commit comments

Comments
 (0)