public inbox for linux-doc@vger.kernel.org
 help / color / mirror / Atom feed
From: "Windl, Ulrich" <u.windl@ukr.de>
To: "H. Peter Anvin" <hpa@zytor.com>,
	Alexander Viro <viro@zeniv.linux.org.uk>,
	Christian Brauner <brauner@kernel.org>, Jan Kara <jack@suse.cz>,
	Jonathan Corbet <corbet@lwn.net>
Cc: "linux-fsdevel@vger.kernel.org" <linux-fsdevel@vger.kernel.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Lennart Poettering" <lennart@poettering.net>,
	"systemd-devel@lists.freedesktop.org"
	<systemd-devel@lists.freedesktop.org>
Subject: RE: [EXT] [systemd-devel] [PATCH 0/3] Add the ability to mount filesystems during initramfs expansion
Date: Mon, 2 Feb 2026 07:38:23 +0000	[thread overview]
Message-ID: <51265a7170d7408a92192c5112c1e613@ukr.de> (raw)
In-Reply-To: <20260124003939.426931-1-hpa@zytor.com>

Hi!

I wonder: wouldn't it be nicer to use a subdirectory like ".systemd-magic" to place such magic files there that are interpreted by systemd? Then "!!!MOUNT!!!" would become a simple "mount" or maybe "fstab" or "mountttab", ...

Kind regards,
Ulrich Windl

> -----Original Message-----
> From: systemd-devel <systemd-devel-bounces@lists.freedesktop.org> On
> Behalf Of H. Peter Anvin
> Sent: Saturday, January 24, 2026 1:40 AM
> To: Alexander Viro <viro@zeniv.linux.org.uk>; Christian Brauner
> <brauner@kernel.org>; Jan Kara <jack@suse.cz>; Jonathan Corbet
> <corbet@lwn.net>; H. Peter Anvin <hpa@zytor.com>
> Cc: linux-fsdevel@vger.kernel.org; linux-doc@vger.kernel.org; linux-
> kernel@vger.kernel.org; Lennart Poettering <lennart@poettering.net>;
> systemd-devel@lists.freedesktop.org
> Subject: [EXT] [systemd-devel] [PATCH 0/3] Add the ability to mount
> filesystems during initramfs expansion
> 
> 
> At Plumber's 2024, Lennart Poettering of the systemd project requested
> the ability to overmount the rootfs with a separate tmpfs before
> initramfs expansion, so the populated tmpfs can be unmounted.
> 
> This patchset takes this request and goes one step further: it allows
> (mostly) arbitrary filesystems mounts during initramfs processing.
> 
> This is done by having the initramfs expansion code detect the special
> filename "!!!MOUNT!!!" which is then parsed into a simplified
> fstab-type mount specification and the directory in which the
> !!!MOUNT!!! entry is used as the mount point.
> 
> This specific method was chosen for the following reasons:
> 
> 1. This information is specific to the expectations of the initramfs;
>    therefore using kernel command line options is not
>    appropriate. This way the information is fully contained within the
>    initramfs itself.
> 2. The sequence !!! is already special in cpio, due to the "TRAILER!!!"
>    entries.
> 3. The filename "!!!MOUNT!!!" will typically be sorted first, which
>    means using standard find+cpio tools to create the initramfs still
>    work.
> 4. Similarly, standard cpio can still expand the initramfs.
> 5. If run on a legacy kernel, the !!!MOUNT!!! file is created, which
>    is easy to detect in the initramfs code which can then activate
>    some fallback code.
> 6. It allows for multiple filesystems to be mounted, possibly of
>    different types and in different locations, e.g. the initramfs can
>    get started with /dev, /proc, and /sys already booted.
> 
> The patches are:
> 
>     1/3: fs/init: move creating the mount data_page into init_mount()
>     2/3: initramfs: support mounting filesystems during initramfs expansion
>     3/3: Documentation/initramfs: document mount points in initramfs
> 
> ---
>  .../driver-api/early-userspace/buffer-format.rst   | 60 +++++++++++++-
>  fs/init.c                                          | 23 +++++-
>  include/linux/init_syscalls.h                      |  3 +-
>  init/do_mounts.c                                   | 17 +---
>  init/initramfs.c                                   | 95 +++++++++++++++++++++-
>  5 files changed, 175 insertions(+), 23 deletions(-)

  parent reply	other threads:[~2026-02-02  7:39 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-24  0:39 [PATCH 0/3] Add the ability to mount filesystems during initramfs expansion H. Peter Anvin
2026-01-24  0:39 ` [RFC PATCH 1/3] fs/init: move creating the mount data_page into init_mount() H. Peter Anvin
2026-01-24  0:39 ` [RFC PATCH 2/3] initramfs: support mounting filesystems during initramfs expansion H. Peter Anvin
2026-01-24  0:39 ` [RFC PATCH 3/3] Documentation/initramfs: document mount points in initramfs H. Peter Anvin
2026-01-24 17:41 ` [PATCH 0/3] Add the ability to mount filesystems during initramfs expansion Askar Safin
2026-01-24 18:33   ` H. Peter Anvin
2026-01-25  0:07   ` H. Peter Anvin
2026-02-02  7:38 ` Windl, Ulrich [this message]
2026-02-03 16:11   ` [EXT] [systemd-devel] " H. Peter Anvin

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=51265a7170d7408a92192c5112c1e613@ukr.de \
    --to=u.windl@ukr.de \
    --cc=brauner@kernel.org \
    --cc=corbet@lwn.net \
    --cc=hpa@zytor.com \
    --cc=jack@suse.cz \
    --cc=lennart@poettering.net \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=systemd-devel@lists.freedesktop.org \
    --cc=viro@zeniv.linux.org.uk \
    /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