]> Git Repo - linux.git/commit - kernel/panic.c
kernel/panic.c: filter out a potential trailing newline
authorBorislav Petkov <[email protected]>
Tue, 30 Oct 2018 22:07:17 +0000 (15:07 -0700)
committerLinus Torvalds <[email protected]>
Wed, 31 Oct 2018 15:54:14 +0000 (08:54 -0700)
commitb49dec1cf8ff1e0b204dd2c30b95a92d75591146
tree37133aa2c8be76f3c2ca6552689cfe7f47b64f3e
parent95c4fb78fb23081472465ca20d5d31c4b780ed82
kernel/panic.c: filter out a potential trailing newline

If a call to panic() terminates the string with a \n , the result puts the
closing brace ']---' on a newline because panic() itself adds \n too.

Now, if one goes and removes the newline chars from all panic()
invocations - and the stats right now look like this:

~300 calls with a \n
~500 calls without a \n

one is destined to a neverending game of whack-a-mole because the usual
thing to do is add a newline at the end of a string a function is supposed
to print.

Therefore, simply zap any \n at the end of the panic string to avoid
touching so many places in the kernel.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Borislav Petkov <[email protected]>
Acked-by: Kees Cook <[email protected]>
Reviewed-by: Steven Rostedt (VMware) <[email protected]>
Acked-by: Ingo Molnar <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
kernel/panic.c
This page took 0.049327 seconds and 4 git commands to generate.