All of lore.kernel.org
 help / color / mirror / Atom feed
From: Breno Leitao <leitao@debian.org>
To: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	 Nathan Chancellor <nathan@kernel.org>,
	paulmck@kernel.org, Nicolas Schier <nsc@kernel.org>,
	 Thomas Gleixner <tglx@kernel.org>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	 Dave Hansen <dave.hansen@linux.intel.com>,
	x86@kernel.org, "H. Peter Anvin" <hpa@zytor.com>,
	 linux-kernel@vger.kernel.org,
	linux-trace-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org,
	 bpf@vger.kernel.org, kernel-team@meta.com
Subject: Re: [PATCH v4 6/7] Documentation: bootconfig: document build-time cmdline rendering
Date: Mon, 22 Jun 2026 05:30:53 -0700	[thread overview]
Message-ID: <ajkfTQwmmVo0DvFx@gmail.com> (raw)
In-Reply-To: <20260618094719.17bf5448351adc2e56c267fb@kernel.org>

On Thu, Jun 18, 2026 at 09:47:19AM +0900, Masami Hiramatsu wrote:
> On Wed, 17 Jun 2026 02:56:23 -0700
> Breno Leitao <leitao@debian.org> wrote:
> 
> > On Wed, Jun 10, 2026 at 07:58:10AM -0700, Breno Leitao wrote:
> > > On Wed, Jun 10, 2026 at 11:37:20PM +0900, Masami Hiramatsu wrote:
> > > > To avoid confusion, when this option is used, shouldn't we treat it
> > > > the same way as if embedded command lines were enabled, and either
> > > > not display it in /proc/bootconfig (or always display it, by merging
> > > > the rendered string)?
> > > 
> > > You're right that EMBED_CMDLINE breaks it: the embedded kernel.* keys
> > > are already in boot_command_line before setup_boot_config() ever sees
> > > the initrd bconf, so a user reading /proc/bootconfig would see only
> > > the initrd keys while parse_early_param() acted on the embedded ones.
> > > That's exactly the split-state Sashiko was circling around.
> > > 
> > > Both options you suggest work for me, but they pull in opposite
> > > directions and I'd rather not guess wrong on the user-facing
> > > contract.  Which do you prefer for v5?
> > > 
> > >   (a) Don't display embedded in /proc/bootconfig -- keep the current
> > >       "file shows the active bootconfig source" behavior and document
> > >       that with EMBED_CMDLINE=y, the kernel.* subtree may have been
> > >       applied separately via the cmdline.
> > > 
> > >   (b) Always display embedded by merging the rendered string into
> > >       /proc/bootconfig when EMBED_CMDLINE=y, so the file reflects
> > >       what was actually applied.
> > > 
> > > Happy to go either way
> > 
> > Following up on my own mail rather than leaving it fully open: after
> > looking at the code more, I'd like to recommend (a).
> 
> Agreed. Sorry for replying late.

No problem, thanks. Quick heads-up: v5 already went out and crossed with
this mail. It takes (a) and extends bootconfig.rst to walk through the
four sources (bootloader cmdline, embedded cmdline, initrd bootconfig,
embedded bootconfig), so that part is already in flight:

  https://lore.kernel.org/r/20260617-bootconfig_using_tools-v5-0-fd589a9cc5e3@debian.org

The naming/mutual-exclusion rework below I'll fold into v6.

> Indeed. So I think this EMBED_CMDLINE is more like CMDLINE set by
> bootconfig file, instead of embedded string. That is useful for reusing
> the boot options. We need to change the explanation and clarify it.

Agreed, that's a much clearer model. v6 will reframe the Kconfig help and
bootconfig.rst around "this is CONFIG_CMDLINE, sourced from a bootconfig
file at build time" rather than "an embedded bootconfig that also feeds
the cmdline".

It also matches what the code already does precedence-wise: the rendered
"kernel" string is prepended to boot_command_line in setup_arch(), so it
sits in front of the bootloader args and parse_args() last-wins lets the
bootloader override it -- i.e. exactly CONFIG_CMDLINE without _OVERRIDE.
So this is mostly a rename + dependency + docs change, not a behavioral
one. (A _FORCE/_EXTEND-style variant could come later if there's demand;
the current behavior is the plain "overridable default" one.)

> Thus we should those configs mutual exclusive. If user already sets the
> CONFIG_CMDLINE, EMBED_CMDLINE should not be enabled.

Makes sense -- two built-in cmdline sources at once is confusing. I'll
make them mutually exclusive in v6. I'm thinking:

  depends on CMDLINE = ""

on the new symbol. On x86 CONFIG_CMDLINE is a string that depends on
CMDLINE_BOOL and defaults to "", so this reads as "only offer the
bootconfig-rendered cmdline when no static CONFIG_CMDLINE is configured",
and it works the same on other arches that define CMDLINE as a string.
Does that match what you had in mind, or would you rather gate it the
other way (CMDLINE depends on !the-new-symbol)?

> So you can see CONFIG_BOOT_CONFIG_EMBED_CMDLINE is a bit special.
> I think it maybe natual that we call it CONFIG_CMDLINE_BOOT_CONFIG.
> In this case, we render the cmdline string from bootconfig build-time
> and set CONFIG_CMDLINE with the rendered cmdline string.
> So you can see CONFIG_BOOT_CONFIG_EMBED_CMDLINE is a bit special.
> I think it maybe natual that we call it CONFIG_CMDLINE_BOOT_CONFIG.
> In this case, we render the cmdline string from bootconfig build-time
> and set CONFIG_CMDLINE with the rendered cmdline string.

I'll rename it for v6. One nit: the arch opt-in symbol is already
ARCH_SUPPORTS_CMDLINE_FROM_BOOTCONFIG, so CONFIG_CMDLINE_FROM_BOOTCONFIG would
pair with it verbatim. I'll use CONFIG_CMDLINE_FROM_BOOTCONFIG I'll rename it
for v6.

Another nit: the arch opt-in symbol is already
ARCH_SUPPORTS_CMDLINE_FROM_BOOTCONFIG, so CONFIG_CMDLINE_FROM_BOOTCONFIG would
pair with it verbatim. I'll use CONFIG_CMDLINE_FROM_BOOTCONFIG unless you'd
rather keep CONFIG_CMDLINE_BOOT_CONFIG -- either is fine by me.

One clarification on "set CONFIG_CMDLINE with the rendered string":
CONFIG_CMDLINE is a Kconfig string fixed when .config is read, while the
render happens later during the build, so we can't literally store the
rendered text into CONFIG_CMDLINE. The mechanism stays "render into
.init.rodata, merge into boot_command_line in setup_arch()"; what changes
is how we name and document it, plus the mutual exclusion above. Let me

> So you can see CONFIG_BOOT_CONFIG_EMBED_CMDLINE is a bit special.
> I think it maybe natual that we call it CONFIG_CMDLINE_BOOT_CONFIG.

I'll rename it for v6. One nit: the arch opt-in symbol is already
ARCH_SUPPORTS_CMDLINE_FROM_BOOTCONFIG, so CONFIG_CMDLINE_FROM_BOOTCONFIG
would pair with it verbatim. I'll use CONFIG_CMDLINE_FROM_BOOTCONFIG

> In this case, we render the cmdline string from bootconfig build-time
> and set CONFIG_CMDLINE with the rendered cmdline string.

CONFIG_CMDLINE is a Kconfig string fixed when .config is read, while the
render happens later during the build, so we can't literally store the
rendered text into CONFIG_CMDLINE?  let me know if you can envision a way to
get it done.

> I think we can proceed it without rendering it in /proc/bootconfig
> at this point. And later we find the way to detect early parameters
> correctly, we can fix it.

Sounds good. I'll document the sharp edge (with both an embedded cmdline and an
initrd bootconfig, early params reflect the embedded values because the initrd
isn't parsed yet) and leave the early-param-aware override detection as the
follow-up you describe.

> (BTW, early parameter problem is a bit complicated. It is not hard
> to distinguish early parameters, but kernel accepts the same key
> for early parameter and normal parameter. e.g. "console=")

Right, console= being both is the awkward case. Agreed that's better as
its own series once we have a reliable way to detect early params.

So the v6 plan:
  - rename CONFIG_BOOT_CONFIG_EMBED_CMDLINE -> CONFIG_CMDLINE_FROM_BOOTCONFIG
    (or _BOOT_CONFIG, your call)
  - make it mutually exclusive with CONFIG_CMDLINE (depends on CMDLINE = "")
  - reframe the Kconfig help + bootconfig.rst as "CONFIG_CMDLINE from a
    bootconfig file"
  - keep (a): no rendering in /proc/bootconfig; document the early-param
    sharp edge
  - defer early-param-aware override detection to a follow-up

Thanks for the direction,
--breno


  reply	other threads:[~2026-06-22 12:31 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-09 10:28 [PATCH v4 0/7] bootconfig: embed kernel.* cmdline at build time Breno Leitao
2026-06-09 10:28 ` [PATCH v4 1/7] bootconfig: fix NULL-pointer arithmetic in xbc_snprint_cmdline() Breno Leitao
2026-06-09 10:28 ` [PATCH v4 2/7] bootconfig: render descendant keys when xbc_snprint_cmdline() root has a value Breno Leitao
2026-06-09 10:28 ` [PATCH v4 3/7] bootconfig: render embedded bootconfig as a kernel cmdline at build time Breno Leitao
2026-06-10 13:44   ` Julian Braha
2026-06-10 14:50     ` Breno Leitao
2026-06-09 10:28 ` [PATCH v4 4/7] bootconfig: clean build-time tools/bootconfig from make clean Breno Leitao
2026-06-09 10:28 ` [PATCH v4 5/7] bootconfig: add xbc_prepend_embedded_cmdline() helper Breno Leitao
2026-06-09 10:28 ` [PATCH v4 6/7] Documentation: bootconfig: document build-time cmdline rendering Breno Leitao
2026-06-10 14:37   ` Masami Hiramatsu
2026-06-10 14:58     ` Breno Leitao
2026-06-17  9:56       ` Breno Leitao
2026-06-18  0:47         ` Masami Hiramatsu
2026-06-22 12:30           ` Breno Leitao [this message]
2026-06-09 10:28 ` [PATCH v4 7/7] x86/setup: prepend embedded bootconfig cmdline before parse_early_param Breno Leitao
2026-06-09 10:48   ` sashiko-bot

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=ajkfTQwmmVo0DvFx@gmail.com \
    --to=leitao@debian.org \
    --cc=akpm@linux-foundation.org \
    --cc=bp@alien8.de \
    --cc=bpf@vger.kernel.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=kernel-team@meta.com \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mingo@redhat.com \
    --cc=nathan@kernel.org \
    --cc=nsc@kernel.org \
    --cc=paulmck@kernel.org \
    --cc=tglx@kernel.org \
    --cc=x86@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.