From: Eric Sandeen <sandeen@sandeen.net>
To: Hongbo Li <lihongbo22@huawei.com>, jaegeuk@kernel.org, chao@kernel.org
Cc: linux-f2fs-devel@lists.sourceforge.net, brauner@kernel.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 1/9] f2fs: Add fs parameter specifications for mount options
Date: Fri, 30 Aug 2024 16:00:22 -0500 [thread overview]
Message-ID: <c55d435f-c06b-4b99-b6db-b21f495b4c32@sandeen.net> (raw)
In-Reply-To: <20240814023912.3959299-2-lihongbo22@huawei.com>
On 8/13/24 9:39 PM, Hongbo Li wrote:
> Use an array of `fs_parameter_spec` called f2fs_param_specs to
> hold the mount option specifications for the new mount api.
>
> Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
> ---
> fs/f2fs/super.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 79 insertions(+)
>
> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> index 3959fd137cc9..1bd923a73c1f 100644
> --- a/fs/f2fs/super.c
> +++ b/fs/f2fs/super.c
> @@ -28,6 +28,7 @@
> #include <linux/part_stat.h>
> #include <linux/zstd.h>
> #include <linux/lz4.h>
> +#include <linux/fs_parser.h>
>
> #include "f2fs.h"
> #include "node.h"
> @@ -189,9 +190,87 @@ enum {
> Opt_memory_mode,
> Opt_age_extent_cache,
> Opt_errors,
> + Opt_jqfmt,
> + Opt_checkpoint,
If adding an opt_jqfmt to use with an enum, you can/should remove
Opt_jqfmt_vfsold Opt_jqfmt_vfsv0, and Opt_jqfmt_vfsv1, because they
are no longer used.
Similarly for Opt_checkpoint_disable_* symbols.
> Opt_err,
> };
>
> +static const struct constant_table f2fs_param_jqfmt[] = {
> + {"vfsold", QFMT_VFS_OLD},
> + {"vfsv0", QFMT_VFS_V0},
> + {"vfsv1", QFMT_VFS_V1},
> + {}
> +};
> +
> +static const struct fs_parameter_spec f2fs_param_specs[] = {
> + fsparam_string("background_gc", Opt_gc_background),
> + fsparam_flag("disable_roll_forward", Opt_disable_roll_forward),
> + fsparam_flag("norecovery", Opt_norecovery),
Many/most other filesystems tab-align the param_spec, like
...
+ fsparam_string ("background_gc", Opt_gc_background),
+ fsparam_flag ("disable_roll_forward",Opt_disable_roll_forward),
+ fsparam_flag ("norecovery", Opt_norecovery),
...
but that's just a style thing, up to you and the maintainers.
I'd also suggest making more use of enums (as you did for f2fs_param_jqfmt).
I think it can simplify parsing in the long run if you choose to. It avoids
the "if strcmp() else if strcmp() else if strcmp()... pattern, for example
you can do:
static const struct constant_table f2fs_param_background_gc[] = {
{"on", BGGC_MODE_ON},
{"off", BGGC_MODE_OFF},
{"sync", BGGC_MODE_SYNC},
{}
};
...
fsparam_enum ("background_gc", Opt_gc_background, f2fs_param_background_gc),
...
and then parsing becomes simply:
case Opt_gc_background:
F2FS_CTX_INFO(ctx).bggc_mode = result.uint_32;
ctx->spec_mask |= F2FS_SPEC_background_gc;
break;
When I tried this I made a lot of use of enums, see
https://git.kernel.org/pub/scm/linux/kernel/git/sandeen/linux.git/tree/fs/f2fs/super.c?h=f2fs-mount-api#n182
and see what you think?
Thanks,
-Eric
next prev parent reply other threads:[~2024-08-30 21:00 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-14 2:39 [PATCH 0/9] f2fs: new mount API conversion Hongbo Li
2024-08-14 2:39 ` [PATCH 1/9] f2fs: Add fs parameter specifications for mount options Hongbo Li
2024-08-30 21:00 ` Eric Sandeen [this message]
2024-08-14 2:39 ` [PATCH 2/9] f2fs: move the option parser into handle_mount_opt Hongbo Li
2024-08-14 2:39 ` [PATCH 3/9] f2fs: move option validation into a separate helper Hongbo Li
2024-08-14 2:39 ` [PATCH 4/9] f2fs: Allow sbi to be NULL in f2fs_printk Hongbo Li
2024-08-14 2:39 ` [PATCH 5/9] f2fs: Add f2fs_fs_context to record the mount options Hongbo Li
2024-08-14 2:39 ` [PATCH 6/9] f2fs: separate the options parsing and options checking Hongbo Li
2024-08-14 2:39 ` [PATCH 7/9] f2fs: introduce fs_context_operation structure Hongbo Li
2024-08-14 2:39 ` [PATCH 8/9] f2fs: switch to the new mount api Hongbo Li
2024-08-14 2:39 ` [PATCH 9/9] f2fs: remove unused structure and functions Hongbo Li
2024-08-27 11:47 ` [PATCH 0/9] f2fs: new mount API conversion Hongbo Li
2024-08-30 17:07 ` Eric Sandeen
2024-08-31 1:45 ` Hongbo Li
2024-09-11 2:04 ` Hongbo Li
2025-07-11 16:30 ` [f2fs-dev] " patchwork-bot+f2fs
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=c55d435f-c06b-4b99-b6db-b21f495b4c32@sandeen.net \
--to=sandeen@sandeen.net \
--cc=brauner@kernel.org \
--cc=chao@kernel.org \
--cc=jaegeuk@kernel.org \
--cc=lihongbo22@huawei.com \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-fsdevel@vger.kernel.org \
/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).