aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorLukas Czerner <lczerner@redhat.com>2021-10-27 16:18:55 +0200
committerTheodore Ts'o <tytso@mit.edu>2021-12-09 14:11:08 -0500
commit97d8a670b4531437d5b842cf68dafa6d1a932ddf (patch)
tree57bf4d5dd94f5ce3ab130306c32cbb85bf8ccf40 /fs/ext4
parentext4: clean up return values in handle_mount_opt() (diff)
downloadlinux-dev-97d8a670b4531437d5b842cf68dafa6d1a932ddf.tar.xz
linux-dev-97d8a670b4531437d5b842cf68dafa6d1a932ddf.zip
ext4: change token2str() to use ext4_param_specs
Change token2str() to use ext4_param_specs instead of tokens so that we can get rid of tokens entirely. Signed-off-by: Lukas Czerner <lczerner@redhat.com> Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com> Link: https://lore.kernel.org/r/20211027141857.33657-12-lczerner@redhat.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/super.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index ebde5fb67222..285f18f643ca 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -3046,12 +3046,12 @@ static inline void ext4_show_quota_options(struct seq_file *seq,
static const char *token2str(int token)
{
- const struct match_token *t;
+ const struct fs_parameter_spec *spec;
- for (t = tokens; t->token != Opt_err; t++)
- if (t->token == token && !strchr(t->pattern, '='))
+ for (spec = ext4_param_specs; spec->name != NULL; spec++)
+ if (spec->opt == token && !spec->type)
break;
- return t->pattern;
+ return spec->name;
}
/*