diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-12-16 13:33:32 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-02-07 00:12:50 -0500 |
commit | 5eede625297f4d21dc12ea7a7418fd21672f131d (patch) | |
tree | 6827fd4b2a65834fa3014b9363d690693e21ce20 /mm | |
parent | 2710c957a8ef4fb00f21acb306e3bd6bcf80c81f (diff) | |
download | linux-stable-5eede625297f4d21dc12ea7a7418fd21672f131d.tar.gz linux-stable-5eede625297f4d21dc12ea7a7418fd21672f131d.tar.bz2 linux-stable-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 'mm')
-rw-r--r-- | mm/shmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/shmem.c b/mm/shmem.c index 1c02c6c20f45..90c7737bcce2 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -3381,7 +3381,7 @@ enum shmem_param { Opt_uid, }; -static const struct fs_parameter_enum shmem_param_enums_huge[] = { +static const struct constant_table shmem_param_enums_huge[] = { {"never", SHMEM_HUGE_NEVER }, {"always", SHMEM_HUGE_ALWAYS }, {"within_size", SHMEM_HUGE_WITHIN_SIZE }, |