mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
fs/proc: remove redundant comments from /proc/bootconfig
commitfbbdc255fb
upstream. commit717c7c894d
("fs/proc: Add boot loader arguments as comment to /proc/bootconfig") adds bootloader argument comments into /proc/bootconfig. /proc/bootconfig shows boot_command_line[] multiple times following every xbc key value pair, that's duplicated and not necessary. Remove redundant ones. Output before and after the fix is like: key1 = value1 *bootloader argument comments* key2 = value2 *bootloader argument comments* key3 = value3 *bootloader argument comments* ... key1 = value1 key2 = value2 key3 = value3 *bootloader argument comments* ... Link: https://lore.kernel.org/all/20240409044358.1156477-1-paulmck@kernel.org/ Fixes:717c7c894d
("fs/proc: Add boot loader arguments as comment to /proc/bootconfig") Signed-off-by: Zhenhua Huang <quic_zhenhuah@quicinc.com> Signed-off-by: Paul E. McKenney <paulmck@kernel.org> Cc: <linux-trace-kernel@vger.kernel.org> Cc: <linux-fsdevel@vger.kernel.org> Cc: stable@vger.kernel.org Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
36b57c7d2f
commit
0f33fd80e8
@ -62,12 +62,12 @@ static int __init copy_xbc_key_value_list(char *dst, size_t size)
|
||||
break;
|
||||
dst += ret;
|
||||
}
|
||||
if (ret >= 0 && boot_command_line[0]) {
|
||||
ret = snprintf(dst, rest(dst, end), "# Parameters from bootloader:\n# %s\n",
|
||||
boot_command_line);
|
||||
if (ret > 0)
|
||||
dst += ret;
|
||||
}
|
||||
}
|
||||
if (ret >= 0 && boot_command_line[0]) {
|
||||
ret = snprintf(dst, rest(dst, end), "# Parameters from bootloader:\n# %s\n",
|
||||
boot_command_line);
|
||||
if (ret > 0)
|
||||
dst += ret;
|
||||
}
|
||||
out:
|
||||
kfree(key);
|
||||
|
Loading…
Reference in New Issue
Block a user