linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] debugfs: ignore auto and noauto options if given
@ 2024-05-22  8:38 Wolfram Sang
  2024-05-24 13:55 ` Christian Brauner
  0 siblings, 1 reply; 15+ messages in thread
From: Wolfram Sang @ 2024-05-22  8:38 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: linux-fsdevel, Wolfram Sang, Greg Kroah-Hartman,
	Rafael J. Wysocki, Christian Brauner, Eric Sandeen, David Howells,
	linux-kernel

The 'noauto' and 'auto' options were missed when migrating to the new
mount API. As a result, users with these in their fstab mount options
are now unable to mount debugfs filesystems, as they'll receive an
"Unknown parameter" error.

This restores the old behaviour of ignoring noauto and auto if they're
given.

Fixes: a20971c18752 ("vfs: Convert debugfs to use the new mount API")
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---

With current top-of-tree, debugfs remained empty on my boards triggering
the message "debugfs: Unknown parameter 'auto'". I applied a similar fix
which CIFS got and largely reused the commit message from 19d51588125f
("cifs: ignore auto and noauto options if given").

Given the comment in debugfs_parse_param(), I am not sure if this patch
is a complete fix or if there are more options to be ignored. This patch
makes it work for me(tm), however.

From my light research, tracefs (which was converted to new mount API
together with debugfs) doesn't need the same fixing. But I am not
super-sure about that.

Looking forward to comments.


 fs/debugfs/inode.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index dc51df0b118d..915f0b618486 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -89,12 +89,14 @@ enum {
 	Opt_uid,
 	Opt_gid,
 	Opt_mode,
+	Opt_ignore,
 };
 
 static const struct fs_parameter_spec debugfs_param_specs[] = {
 	fsparam_u32	("gid",		Opt_gid),
 	fsparam_u32oct	("mode",	Opt_mode),
 	fsparam_u32	("uid",		Opt_uid),
+	fsparam_flag_no	("auto",	Opt_ignore),
 	{}
 };
 
-- 
2.39.2


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

end of thread, other threads:[~2024-06-05 15:33 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-22  8:38 [PATCH] debugfs: ignore auto and noauto options if given Wolfram Sang
2024-05-24 13:55 ` Christian Brauner
2024-05-27 10:06   ` Wolfram Sang
2024-05-27 10:23     ` Geert Uytterhoeven
2024-05-27 12:19     ` Christian Brauner
2024-06-03  7:24       ` Wolfram Sang
2024-06-03 13:31         ` Christian Brauner
2024-06-03 14:17           ` Eric Sandeen
2024-06-03 14:33             ` Christian Brauner
2024-06-03 15:13               ` Eric Sandeen
2024-06-05 15:33                 ` Christian Brauner
2024-06-03 19:52             ` Wolfram Sang
2024-05-29 20:43   ` Eric Sandeen
2024-05-29 22:05     ` Wolfram Sang
2024-05-29 22:33       ` Eric Sandeen

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).