diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-12-16 19:33:32 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-02-07 06:12:50 +0100 |
commit | 5eede625297f4d21dc12ea7a7418fd21672f131d (patch) | |
tree | 6827fd4b2a65834fa3014b9363d690693e21ce20 /fs/ceph/super.c | |
parent | fs_parse: get rid of ->enums (diff) | |
download | linux-5eede625297f4d21dc12ea7a7418fd21672f131d.tar.xz linux-5eede625297f4d21dc12ea7a7418fd21672f131d.zip |
fold struct fs_parameter_enum into struct constant_table
no real difference now
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 0f7c8913bb20..2bad9bc1fd70 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -163,7 +163,7 @@ enum ceph_recover_session_mode { ceph_recover_session_clean }; -static const struct fs_parameter_enum ceph_param_recover[] = { +static const struct constant_table ceph_param_recover[] = { { "no", ceph_recover_session_no }, { "clean", ceph_recover_session_clean }, {} |