linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ardb@kernel.org>
To: Daniel Walker <danielwa@cisco.com>
Cc: Rob Herring <robh@kernel.org>,
	Ruslan Ruslichenko <rruslich@cisco.com>,
	linux-efi <linux-efi@vger.kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>,
	"open list:LINUX FOR POWERPC \(32-BIT AND 64-BIT\)"
	<linuxppc-dev@lists.ozlabs.org>, X86 ML <x86@kernel.org>,
	"open list:MIPS" <linux-mips@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Ruslan Bilovol <ruslan.bilovol@gmail.com>,
	xe-linux-external@cisco.com,
	Andrew Morton <akpm@linux-foundation.org>,
	Will Deacon <will@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH v2 7/7] CMDLINE: x86: convert to generic builtin command line
Date: Tue, 9 Mar 2021 07:43:01 +0100	[thread overview]
Message-ID: <CAMj1kXF9k2J5eZdn6R6bn4ChRVyuGYHM7bOtycf1QKrakrua_g@mail.gmail.com> (raw)
In-Reply-To: <20210309000247.2989531-8-danielwa@cisco.com>

On Tue, 9 Mar 2021 at 01:03, Daniel Walker <danielwa@cisco.com> wrote:
>
> This updates the x86 code to use the CONFIG_GENERIC_CMDLINE
> option.
>
> Cc: xe-linux-external@cisco.com
> Signed-off-by: Ruslan Ruslichenko <rruslich@cisco.com>
> Signed-off-by: Ruslan Bilovol <ruslan.bilovol@gmail.com>
> Signed-off-by: Daniel Walker <danielwa@cisco.com>
> ---
>  arch/x86/Kconfig                        | 44 +------------------------
>  arch/x86/kernel/setup.c                 | 18 ++--------
>  drivers/firmware/efi/libstub/x86-stub.c |  2 +-
>  3 files changed, 4 insertions(+), 60 deletions(-)
>
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index 21f851179ff0..3950f9bf9855 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -115,6 +115,7 @@ config X86
>         select EDAC_SUPPORT
>         select GENERIC_CLOCKEVENTS_BROADCAST    if X86_64 || (X86_32 && X86_LOCAL_APIC)
>         select GENERIC_CLOCKEVENTS_MIN_ADJUST
> +       select GENERIC_CMDLINE
>         select GENERIC_CMOS_UPDATE
>         select GENERIC_CPU_AUTOPROBE
>         select GENERIC_CPU_VULNERABILITIES
> @@ -2368,49 +2369,6 @@ choice
>
>  endchoice
>
> -config CMDLINE_BOOL
> -       bool "Built-in kernel command line"
> -       help
> -         Allow for specifying boot arguments to the kernel at
> -         build time.  On some systems (e.g. embedded ones), it is
> -         necessary or convenient to provide some or all of the
> -         kernel boot arguments with the kernel itself (that is,
> -         to not rely on the boot loader to provide them.)
> -
> -         To compile command line arguments into the kernel,
> -         set this option to 'Y', then fill in the
> -         boot arguments in CONFIG_CMDLINE.
> -
> -         Systems with fully functional boot loaders (i.e. non-embedded)
> -         should leave this option set to 'N'.
> -
> -config CMDLINE
> -       string "Built-in kernel command string"
> -       depends on CMDLINE_BOOL
> -       default ""
> -       help
> -         Enter arguments here that should be compiled into the kernel
> -         image and used at boot time.  If the boot loader provides a
> -         command line at boot time, it is appended to this string to
> -         form the full kernel command line, when the system boots.
> -
> -         However, you can use the CONFIG_CMDLINE_OVERRIDE option to
> -         change this behavior.
> -
> -         In most cases, the command line (whether built-in or provided
> -         by the boot loader) should specify the device for the root
> -         file system.
> -
> -config CMDLINE_OVERRIDE
> -       bool "Built-in command line overrides boot loader arguments"
> -       depends on CMDLINE_BOOL && CMDLINE != ""
> -       help
> -         Set this option to 'Y' to have the kernel ignore the boot loader
> -         command line, and use ONLY the built-in command line.
> -
> -         This is used to work around broken boot loaders.  This should
> -         be set to 'N' under normal conditions.
> -
>  config MODIFY_LDT_SYSCALL
>         bool "Enable the LDT (local descriptor table)" if EXPERT
>         default y
> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
> index 740f3bdb3f61..e748c3e5c1ae 100644
> --- a/arch/x86/kernel/setup.c
> +++ b/arch/x86/kernel/setup.c
> @@ -48,6 +48,7 @@
>  #include <asm/unwind.h>
>  #include <asm/vsyscall.h>
>  #include <linux/vmalloc.h>
> +#include <linux/cmdline.h>
>
>  /*
>   * max_low_pfn_mapped: highest directly mapped pfn < 4 GB
> @@ -162,9 +163,6 @@ unsigned long saved_video_mode;
>  #define RAMDISK_LOAD_FLAG              0x4000
>
>  static char __initdata command_line[COMMAND_LINE_SIZE];
> -#ifdef CONFIG_CMDLINE_BOOL
> -static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
> -#endif
>
>  #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
>  struct edd edd;
> @@ -884,19 +882,7 @@ void __init setup_arch(char **cmdline_p)
>         bss_resource.start = __pa_symbol(__bss_start);
>         bss_resource.end = __pa_symbol(__bss_stop)-1;
>
> -#ifdef CONFIG_CMDLINE_BOOL
> -#ifdef CONFIG_CMDLINE_OVERRIDE
> -       strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
> -#else
> -       if (builtin_cmdline[0]) {
> -               /* append boot loader cmdline to builtin */
> -               strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE);
> -               strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE);
> -               strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
> -       }
> -#endif
> -#endif
> -
> +       cmdline_add_builtin(boot_command_line, NULL, COMMAND_LINE_SIZE);
>         strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
>         *cmdline_p = command_line;
>
> diff --git a/drivers/firmware/efi/libstub/x86-stub.c b/drivers/firmware/efi/libstub/x86-stub.c
> index f14c4ff5839f..9538c9d4a0bc 100644
> --- a/drivers/firmware/efi/libstub/x86-stub.c
> +++ b/drivers/firmware/efi/libstub/x86-stub.c
> @@ -736,7 +736,7 @@ unsigned long efi_main(efi_handle_t handle,
>         }
>
>  #ifdef CONFIG_CMDLINE_BOOL

Does this CMDLINE_BOOL check need to be dropped as well?

> -       status = efi_parse_options(CONFIG_CMDLINE);
> +       status = efi_parse_options(CONFIG_CMDLINE_PREPEND " " CONFIG_CMDLINE_APPEND);
>         if (status != EFI_SUCCESS) {
>                 efi_err("Failed to parse options\n");
>                 goto fail;
> --
> 2.25.1
>

      reply	other threads:[~2021-03-09  6:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-09  0:02 [PATCH v2 7/7] CMDLINE: x86: convert to generic builtin command line Daniel Walker
2021-03-09  6:43 ` Ard Biesheuvel [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMj1kXF9k2J5eZdn6R6bn4ChRVyuGYHM7bOtycf1QKrakrua_g@mail.gmail.com \
    --to=ardb@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=bp@alien8.de \
    --cc=daniel@gimpelevich.san-francisco.ca.us \
    --cc=danielwa@cisco.com \
    --cc=hpa@zytor.com \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mingo@redhat.com \
    --cc=robh@kernel.org \
    --cc=rruslich@cisco.com \
    --cc=ruslan.bilovol@gmail.com \
    --cc=tglx@linutronix.de \
    --cc=will@kernel.org \
    --cc=x86@kernel.org \
    --cc=xe-linux-external@cisco.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).