From: Jan Kara <jack@suse.cz>
To: Christian Brauner <brauner@kernel.org>
Cc: Jan Kara <jack@suse.cz>, Christoph Hellwig <hch@lst.de>,
Al Viro <viro@zeniv.linux.org.uk>,
David Howells <dhowells@redhat.com>,
Aleksa Sarai <cyphar@cyphar.com>, Karel Zak <kzak@redhat.com>,
linux-fsdevel@vger.kernel.org, Josef Bacik <josef@toxicpanda.com>
Subject: Re: [PATCH v2 1/4] super: remove get_tree_single_reconf()
Date: Wed, 2 Aug 2023 19:13:59 +0200 [thread overview]
Message-ID: <20230802171359.wjmzyt7xn4aovp2k@quack3> (raw)
In-Reply-To: <20230802-vfs-super-exclusive-v2-1-95dc4e41b870@kernel.org>
On Wed 02-08-23 13:57:03, Christian Brauner wrote:
> The get_tree_single_reconf() helper isn't used anywhere. Remote it.
>
> Reviewed-by: Josef Bacik <josef@toxicpanda.com>
> Signed-off-by: Christian Brauner <brauner@kernel.org>
Looks good. Feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> fs/super.c | 28 +++++-----------------------
> include/linux/fs_context.h | 3 ---
> 2 files changed, 5 insertions(+), 26 deletions(-)
>
> diff --git a/fs/super.c b/fs/super.c
> index 3ef39df5bec5..9aaf0fbad036 100644
> --- a/fs/super.c
> +++ b/fs/super.c
> @@ -1136,7 +1136,7 @@ static int test_single_super(struct super_block *s, struct fs_context *fc)
> return 1;
> }
>
> -static int vfs_get_super(struct fs_context *fc, bool reconf,
> +static int vfs_get_super(struct fs_context *fc,
> int (*test)(struct super_block *, struct fs_context *),
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc))
> @@ -1154,19 +1154,9 @@ static int vfs_get_super(struct fs_context *fc, bool reconf,
> goto error;
>
> sb->s_flags |= SB_ACTIVE;
> - fc->root = dget(sb->s_root);
> - } else {
> - fc->root = dget(sb->s_root);
> - if (reconf) {
> - err = reconfigure_super(fc);
> - if (err < 0) {
> - dput(fc->root);
> - fc->root = NULL;
> - goto error;
> - }
> - }
> }
>
> + fc->root = dget(sb->s_root);
> return 0;
>
> error:
> @@ -1178,7 +1168,7 @@ int get_tree_nodev(struct fs_context *fc,
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc))
> {
> - return vfs_get_super(fc, false, NULL, fill_super);
> + return vfs_get_super(fc, NULL, fill_super);
> }
> EXPORT_SYMBOL(get_tree_nodev);
>
> @@ -1186,25 +1176,17 @@ int get_tree_single(struct fs_context *fc,
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc))
> {
> - return vfs_get_super(fc, false, test_single_super, fill_super);
> + return vfs_get_super(fc, test_single_super, fill_super);
> }
> EXPORT_SYMBOL(get_tree_single);
>
> -int get_tree_single_reconf(struct fs_context *fc,
> - int (*fill_super)(struct super_block *sb,
> - struct fs_context *fc))
> -{
> - return vfs_get_super(fc, true, test_single_super, fill_super);
> -}
> -EXPORT_SYMBOL(get_tree_single_reconf);
> -
> int get_tree_keyed(struct fs_context *fc,
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc),
> void *key)
> {
> fc->s_fs_info = key;
> - return vfs_get_super(fc, false, test_keyed_super, fill_super);
> + return vfs_get_super(fc, test_keyed_super, fill_super);
> }
> EXPORT_SYMBOL(get_tree_keyed);
>
> diff --git a/include/linux/fs_context.h b/include/linux/fs_context.h
> index ff6341e09925..851b3fe2549c 100644
> --- a/include/linux/fs_context.h
> +++ b/include/linux/fs_context.h
> @@ -150,9 +150,6 @@ extern int get_tree_nodev(struct fs_context *fc,
> extern int get_tree_single(struct fs_context *fc,
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc));
> -extern int get_tree_single_reconf(struct fs_context *fc,
> - int (*fill_super)(struct super_block *sb,
> - struct fs_context *fc));
> extern int get_tree_keyed(struct fs_context *fc,
> int (*fill_super)(struct super_block *sb,
> struct fs_context *fc),
>
> --
> 2.34.1
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
next prev parent reply other threads:[~2023-08-02 17:14 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-02 11:57 [PATCH v2 0/4] fs: add FSCONFIG_CMD_CREATE_EXCL Christian Brauner
2023-08-02 11:57 ` [PATCH v2 1/4] super: remove get_tree_single_reconf() Christian Brauner
2023-08-02 12:34 ` Christoph Hellwig
2023-08-02 17:13 ` Jan Kara [this message]
2023-08-02 11:57 ` [PATCH v2 2/4] fs: add vfs_cmd_create() Christian Brauner
2023-08-02 12:34 ` Christoph Hellwig
2023-08-02 17:13 ` Jan Kara
2023-08-02 11:57 ` [PATCH v2 3/4] fs: add vfs_cmd_reconfigure() Christian Brauner
2023-08-02 12:34 ` Christoph Hellwig
2023-08-02 17:15 ` Jan Kara
2023-08-02 11:57 ` [PATCH v2 4/4] fs: add FSCONFIG_CMD_CREATE_EXCL Christian Brauner
2023-08-02 12:36 ` Christoph Hellwig
2023-08-02 17:18 ` Jan Kara
2023-08-02 13:13 ` [PATCH v2 0/4] " Aleksa Sarai
2023-08-03 13:58 ` Christian Brauner
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=20230802171359.wjmzyt7xn4aovp2k@quack3 \
--to=jack@suse.cz \
--cc=brauner@kernel.org \
--cc=cyphar@cyphar.com \
--cc=dhowells@redhat.com \
--cc=hch@lst.de \
--cc=josef@toxicpanda.com \
--cc=kzak@redhat.com \
--cc=linux-fsdevel@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).