Re: [PATCH] init/main.c: Print all command line when boot

From: Masami Hiramatsu
Date: Wed May 20 2020 - 10:01:14 EST


On Tue, 19 May 2020 11:29:46 +0800
ççå <wangchenggang@xxxxxxxx> wrote:

> Function pr_notice print max length maybe less than the command line length,
> need more times to print all.
> For example, arm64 has 2048 bytes command line length, but printk maximum
> length is only 1024 bytes.

Good catch, and if you use bootconfig, you can expand it longer than that.

>
> Signed-off-by: Chenggang Wang <wangchenggang@xxxxxxxx>
> ---
> init/main.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/init/main.c b/init/main.c
> index 03371976d387..4cf676cc3305 100644
> --- a/init/main.c
> +++ b/init/main.c
> @@ -825,6 +825,16 @@ void __init __weak arch_call_rest_init(void)
> rest_init();
> }
>
> +static void __init print_cmdline(void)
> +{
> + const char *prefix = "Kernel command line: ";
> + int len = -strlen(prefix);
> +
> + len += pr_notice("%s%s\n", prefix, boot_command_line);

Why don't you use saved_command_line here? Those can be different
and the effective one is saved_command_line.

> + while (boot_command_line[len])
> + len += pr_notice("%s\n", &boot_command_line[len]);

Also, don't append "\n" unless you are sure there is an actual
option separator (not a space, because the option can be quoted.)

Thank you,

--
Masami Hiramatsu <mhiramat@xxxxxxxxxx>