diff options
author | Kari Argillander <kari.argillander@gmail.com> | 2021-09-21 19:19:01 +0200 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2021-09-23 18:05:46 +0200 |
commit | 82cb875313188ccbd3ac174b471c86dcb97b8626 (patch) | |
tree | 566fd6e5c14d9bf0606354c68d75fad0614cf694 /fs/ntfs3 | |
parent | fs/ntfs3: Remove a useless shadowing variable (diff) | |
download | linux-82cb875313188ccbd3ac174b471c86dcb97b8626.tar.xz linux-82cb875313188ccbd3ac174b471c86dcb97b8626.zip |
fs/ntfs3: Remove deprecated mount options nls
Some discussion has been spoken that this deprecated mount options
should be removed before 5.15 lands. This driver is not never seen day
light so it was decided that nls mount option has to be removed. We have
always possibility to add this if needed.
One possible need is example if current ntfs driver will be taken out of
kernel and ntfs3 needs to support mount options what it has.
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3')
-rw-r--r-- | fs/ntfs3/super.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 6a535b144ff9..800897777eb0 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -246,10 +246,6 @@ static const struct fs_parameter_spec ntfs_fs_parameters[] = { fsparam_flag_no("prealloc", Opt_prealloc), fsparam_flag_no("acsrules", Opt_noacsrules), fsparam_string("iocharset", Opt_iocharset), - - __fsparam(fs_param_is_string, - "nls", Opt_iocharset, - fs_param_deprecated, NULL), {} }; |