mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
kernel/panic.c: reduce 1 byte usage for print tainted buffer
sizeof("Tainted: ") already counts '\0', and after first sprintf(), 's' will start from the current string end (its' value is '\0'). So need not add additional 1 byte for maximized usage of 'buf' in print_tainted(). Signed-off-by: Chen Gang <gang.chen@asianux.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1931d433d7
commit
0128476471
@ -233,7 +233,7 @@ static const struct tnt tnts[] = {
|
|||||||
*/
|
*/
|
||||||
const char *print_tainted(void)
|
const char *print_tainted(void)
|
||||||
{
|
{
|
||||||
static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ") + 1];
|
static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ")];
|
||||||
|
|
||||||
if (tainted_mask) {
|
if (tainted_mask) {
|
||||||
char *s;
|
char *s;
|
||||||
|
Loading…
Reference in New Issue
Block a user