public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree
@ 2024-10-01 11:25 gregkh
  2024-10-01 15:02 ` Marc Aurèle La France
  0 siblings, 1 reply; 4+ messages in thread
From: gregkh @ 2024-10-01 11:25 UTC (permalink / raw)
  To: tsi, brauner; +Cc: stable


The patch below does not apply to the 6.10-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.

To reproduce the conflict and resubmit, you may use the following commands:

git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.10.y
git checkout FETCH_HEAD
git cherry-pick -x 3a987b88a42593875f6345188ca33731c7df728c
# <resolve conflicts, build, test, etc.>
git commit -s
git send-email --to '<stable@vger.kernel.org>' --in-reply-to '2024100128-prison-ploy-dfd6@gregkh' --subject-prefix 'PATCH 6.10.y' HEAD^..

Possible dependencies:

3a987b88a425 ("debugfs show actual source in /proc/mounts")
49abee5991e1 ("debugfs: Convert to new uid/gid option parsing helpers")

thanks,

greg k-h

------------------ original commit in Linus's tree ------------------

From 3a987b88a42593875f6345188ca33731c7df728c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marc=20Aur=C3=A8le=20La=20France?= <tsi@tuyoix.net>
Date: Sat, 10 Aug 2024 13:25:27 -0600
Subject: [PATCH] debugfs show actual source in /proc/mounts
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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@tuyoix.net>
Link: https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API")
Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new uid/gid option parsing helpers
Signed-off-by: Christian Brauner <brauner@kernel.org>

diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index 91521576f500..66d9b3b4c588 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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree
  2024-10-01 11:25 FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree gregkh
@ 2024-10-01 15:02 ` Marc Aurèle La France
  2024-10-01 16:38   ` Marc Aurèle La France
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Aurèle La France @ 2024-10-01 15:02 UTC (permalink / raw)
  To: gregkh; +Cc: brauner, stable

On Tue, 2024-Oct-01, gregkh@linuxfoundation.org wrote:

> The patch below does not apply to the 6.10-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.

> To reproduce the conflict and resubmit, you may use the following commands:

> git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.10.y
> git checkout FETCH_HEAD
> git cherry-pick -x 3a987b88a42593875f6345188ca33731c7df728c
> # <resolve conflicts, build, test, etc.>
> git commit -s
> git send-email --to '<stable@vger.kernel.org>' --in-reply-to '2024100128-prison-ploy-dfd6@gregkh' --subject-prefix 'PATCH 6.10.y' HEAD^..

> Possible dependencies:

> 3a987b88a425 ("debugfs show actual source in /proc/mounts")
> 49abee5991e1 ("debugfs: Convert to new uid/gid option parsing helpers")

> thanks,

> greg k-h

> ------------------ original commit in Linus's tree ------------------

> From 3a987b88a42593875f6345188ca33731c7df728c Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Marc=20Aur=C3=A8le=20La=20France?= <tsi@tuyoix.net>
> Date: Sat, 10 Aug 2024 13:25:27 -0600
> Subject: [PATCH] debugfs show actual source in /proc/mounts
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit

> 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@tuyoix.net>
> Link: https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
> Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API")
> Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new uid/gid option parsing helpers
> Signed-off-by: Christian Brauner <brauner@kernel.org>

... elided.

This is because the commit message should have instead read ...

After commit 0c07c273a5fe ("debugfs: continue to ignore unknown mount
options"), 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@tuyoix.net>
Fixes: 0c07c273a5fe ("debugfs: continue to ignore unknown mount options")
Cc: stable@vger.kernel.org # 6.10.x: 9f111059e725: fs_parse: add uid & gid option option parsing helpers
Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new uid/gid option parsing helpers

... along with ...

Link: https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
Signed-off-by: Christian Brauner <brauner@kernel.org>

Marc.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree
  2024-10-01 15:02 ` Marc Aurèle La France
@ 2024-10-01 16:38   ` Marc Aurèle La France
  2024-10-02 10:03     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Aurèle La France @ 2024-10-01 16:38 UTC (permalink / raw)
  To: gregkh; +Cc: brauner, stable

On Tue, 2024-Oct-01, Marc Aurèle La France wrote:
> On Tue, 2024-Oct-01, gregkh@linuxfoundation.org wrote:

>> The patch below does not apply to the 6.10-stable tree.
>> If someone wants it applied there, or to any other stable or longterm
>> tree, then please email the backport, including the original git commit
>> id to <stable@vger.kernel.org>.

>> To reproduce the conflict and resubmit, you may use the following commands:

>> git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/
>> linux-6.10.y
>> git checkout FETCH_HEAD
>> git cherry-pick -x 3a987b88a42593875f6345188ca33731c7df728c
>> # <resolve conflicts, build, test, etc.>
>> git commit -s
>> git send-email --to '<stable@vger.kernel.org>' --in-reply-to
>> '2024100128-prison-ploy-dfd6@gregkh' --subject-prefix 'PATCH 6.10.y'
>> HEAD^..

>> Possible dependencies:

>> 3a987b88a425 ("debugfs show actual source in /proc/mounts")
>> 49abee5991e1 ("debugfs: Convert to new uid/gid option parsing helpers")

>> thanks,

>> greg k-h

>> ------------------ original commit in Linus's tree ------------------

>> From 3a987b88a42593875f6345188ca33731c7df728c Mon Sep 17 00:00:00 2001
>> From: =?UTF-8?q?Marc=20Aur=C3=A8le=20La=20France?= <tsi@tuyoix.net>
>> Date: Sat, 10 Aug 2024 13:25:27 -0600
>> Subject: [PATCH] debugfs show actual source in /proc/mounts
>> MIME-Version: 1.0
>> Content-Type: text/plain; charset=UTF-8
>> Content-Transfer-Encoding: 8bit

>> 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@tuyoix.net>
>> Link:
>> https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
>> Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API")
>> Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new
>> uid/gid option parsing helpers
>> Signed-off-by: Christian Brauner <brauner@kernel.org>

> ... elided.

> This is because the commit message should have instead read ...

> After commit 0c07c273a5fe ("debugfs: continue to ignore unknown mount
> options"), 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@tuyoix.net>
> Fixes: 0c07c273a5fe ("debugfs: continue to ignore unknown mount options")
> Cc: stable@vger.kernel.org # 6.10.x: 9f111059e725: fs_parse: add uid & gid
> option option parsing helpers
> Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new
> uid/gid option parsing helpers

> ... along with ...

> Link:
> https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
> Signed-off-by: Christian Brauner <brauner@kernel.org>

Oops.  That link should be ...

Link: https://lore.kernel.org/all/883a7548-9e67-ccf6-23b7-c4e37934f840@tuyoix.net

Marc.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree
  2024-10-01 16:38   ` Marc Aurèle La France
@ 2024-10-02 10:03     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2024-10-02 10:03 UTC (permalink / raw)
  To: Marc Aurèle La France; +Cc: brauner, stable

On Tue, Oct 01, 2024 at 10:38:22AM -0600, Marc Aurèle La France wrote:
> On Tue, 2024-Oct-01, Marc Aurèle La France wrote:
> > On Tue, 2024-Oct-01, gregkh@linuxfoundation.org wrote:
> 
> > > The patch below does not apply to the 6.10-stable tree.
> > > If someone wants it applied there, or to any other stable or longterm
> > > tree, then please email the backport, including the original git commit
> > > id to <stable@vger.kernel.org>.
> 
> > > To reproduce the conflict and resubmit, you may use the following commands:
> 
> > > git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/
> > > linux-6.10.y
> > > git checkout FETCH_HEAD
> > > git cherry-pick -x 3a987b88a42593875f6345188ca33731c7df728c
> > > # <resolve conflicts, build, test, etc.>
> > > git commit -s
> > > git send-email --to '<stable@vger.kernel.org>' --in-reply-to
> > > '2024100128-prison-ploy-dfd6@gregkh' --subject-prefix 'PATCH 6.10.y'
> > > HEAD^..
> 
> > > Possible dependencies:
> 
> > > 3a987b88a425 ("debugfs show actual source in /proc/mounts")
> > > 49abee5991e1 ("debugfs: Convert to new uid/gid option parsing helpers")
> 
> > > thanks,
> 
> > > greg k-h
> 
> > > ------------------ original commit in Linus's tree ------------------
> 
> > > From 3a987b88a42593875f6345188ca33731c7df728c Mon Sep 17 00:00:00 2001
> > > From: =?UTF-8?q?Marc=20Aur=C3=A8le=20La=20France?= <tsi@tuyoix.net>
> > > Date: Sat, 10 Aug 2024 13:25:27 -0600
> > > Subject: [PATCH] debugfs show actual source in /proc/mounts
> > > MIME-Version: 1.0
> > > Content-Type: text/plain; charset=UTF-8
> > > Content-Transfer-Encoding: 8bit
> 
> > > 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@tuyoix.net>
> > > Link:
> > > https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
> > > Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API")
> > > Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new
> > > uid/gid option parsing helpers
> > > Signed-off-by: Christian Brauner <brauner@kernel.org>
> 
> > ... elided.
> 
> > This is because the commit message should have instead read ...
> 
> > After commit 0c07c273a5fe ("debugfs: continue to ignore unknown mount
> > options"), 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@tuyoix.net>
> > Fixes: 0c07c273a5fe ("debugfs: continue to ignore unknown mount options")
> > Cc: stable@vger.kernel.org # 6.10.x: 9f111059e725: fs_parse: add uid & gid
> > option option parsing helpers
> > Cc: stable@vger.kernel.org # 6.10.x: 49abee5991e1: debugfs: Convert to new
> > uid/gid option parsing helpers
> 
> > ... along with ...
> 
> > Link:
> > https://lore.kernel.org/r/e439fae2-01da-234b-75b9-2a7951671e27@tuyoix.net
> > Signed-off-by: Christian Brauner <brauner@kernel.org>
> 
> Oops.  That link should be ...
> 
> Link: https://lore.kernel.org/all/883a7548-9e67-ccf6-23b7-c4e37934f840@tuyoix.net

Thanks, looks like Sasha picked these up now.

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-02 10:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-01 11:25 FAILED: patch "[PATCH] debugfs show actual source in /proc/mounts" failed to apply to 6.10-stable tree gregkh
2024-10-01 15:02 ` Marc Aurèle La France
2024-10-01 16:38   ` Marc Aurèle La France
2024-10-02 10:03     ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox