This is a note to let you know that I've just added the patch titled debugfs show actual source in /proc/mounts to the 6.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: debugfs-show-actual-source-in-proc-mounts.patch and it can be found in the queue-6.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit f0b5b89d0a0c152c4e411edfbc647e8ad98b179e Author: Marc Aurèle La France <tsi@xxxxxxxxxx> Date: Sat Aug 10 13:25:27 2024 -0600 debugfs show actual source in /proc/mounts [ Upstream commit 3a987b88a42593875f6345188ca33731c7df728c ] After its conversion to the new mount API, debugfs displays "none" in /proc/mounts instead of the actual source. Fix this by recognising its "source" mount option. Signed-off-by: Marc Aurèle La France <tsi@xxxxxxxxxx> Link: https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@xxxxxxxxxx Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API") Cc: stable@xxxxxxxxxxxxxxx # 6.10.x: 49abee5991e1: debugfs: Convert to new uid/gid option parsing helpers Signed-off-by: Christian Brauner <brauner@xxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 91521576f5003..66d9b3b4c5881 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -89,12 +89,14 @@ enum { Opt_uid, Opt_gid, Opt_mode, + Opt_source, }; static const struct fs_parameter_spec debugfs_param_specs[] = { fsparam_gid ("gid", Opt_gid), fsparam_u32oct ("mode", Opt_mode), fsparam_uid ("uid", Opt_uid), + fsparam_string ("source", Opt_source), {} }; @@ -126,6 +128,12 @@ static int debugfs_parse_param(struct fs_context *fc, struct fs_parameter *param case Opt_mode: opts->mode = result.uint_32 & S_IALLUGO; break; + case Opt_source: + if (fc->source) + return invalfc(fc, "Multiple sources specified"); + fc->source = param->string; + param->string = NULL; + break; /* * We might like to report bad mount options here; * but traditionally debugfs has ignored all mount options