|
Kmods SIG |
63c143 |
From e274cde8c7550cac46eb7aba3a77aff44ae0b301 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
63c143 |
From: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
63c143 |
Date: Tue, 7 Sep 2021 18:35:55 +0300
|
|
Kmods SIG |
63c143 |
Subject: [Backport e274cde8c755] src: Add iocharset= mount option as
|
|
Kmods SIG |
63c143 |
alias for nls=
|
|
Kmods SIG |
63c143 |
MIME-Version: 1.0
|
|
Kmods SIG |
63c143 |
Content-Type: text/plain; charset=UTF-8
|
|
Kmods SIG |
63c143 |
Content-Transfer-Encoding: 8bit
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
Other fs drivers are using iocharset= mount option for specifying charset.
|
|
Kmods SIG |
63c143 |
So add it also for ntfs3 and mark old nls= mount option as deprecated.
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
Reviewed-by: Pali Rohár <pali@kernel.org>
|
|
Kmods SIG |
63c143 |
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
63c143 |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
63c143 |
---
|
|
Kmods SIG |
63c143 |
src/super.c | 18 +++++++++++-------
|
|
Kmods SIG |
63c143 |
1 file changed, 11 insertions(+), 7 deletions(-)
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
diff --git a/src/super.c b/src/super.c
|
|
Kmods SIG |
63c143 |
index 729ead6f2fac0883b7c1180e45d240f35ba7117b..503e2e23f711e9c66ede31dde62ac64ca3c44f76 100644
|
|
Kmods SIG |
63c143 |
--- a/src/super.c
|
|
Kmods SIG |
63c143 |
+++ b/src/super.c
|
|
Kmods SIG |
63c143 |
@@ -226,7 +226,7 @@ enum Opt {
|
|
Kmods SIG |
63c143 |
Opt_nohidden,
|
|
Kmods SIG |
63c143 |
Opt_showmeta,
|
|
Kmods SIG |
63c143 |
Opt_acl,
|
|
Kmods SIG |
63c143 |
- Opt_nls,
|
|
Kmods SIG |
63c143 |
+ Opt_iocharset,
|
|
Kmods SIG |
63c143 |
Opt_prealloc,
|
|
Kmods SIG |
63c143 |
Opt_no_acs_rules,
|
|
Kmods SIG |
63c143 |
Opt_err,
|
|
Kmods SIG |
63c143 |
@@ -245,9 +245,13 @@ static const struct fs_parameter_spec ntfs_fs_parameters[] = {
|
|
Kmods SIG |
63c143 |
fsparam_flag_no("hidden", Opt_nohidden),
|
|
Kmods SIG |
63c143 |
fsparam_flag_no("acl", Opt_acl),
|
|
Kmods SIG |
63c143 |
fsparam_flag_no("showmeta", Opt_showmeta),
|
|
Kmods SIG |
63c143 |
- fsparam_string("nls", Opt_nls),
|
|
Kmods SIG |
63c143 |
fsparam_flag_no("prealloc", Opt_prealloc),
|
|
Kmods SIG |
63c143 |
fsparam_flag("no_acs_rules", Opt_no_acs_rules),
|
|
Kmods SIG |
63c143 |
+ fsparam_string("iocharset", Opt_iocharset),
|
|
Kmods SIG |
63c143 |
+
|
|
Kmods SIG |
63c143 |
+ __fsparam(fs_param_is_string,
|
|
Kmods SIG |
63c143 |
+ "nls", Opt_iocharset,
|
|
Kmods SIG |
63c143 |
+ fs_param_deprecated, NULL),
|
|
Kmods SIG |
63c143 |
{}
|
|
Kmods SIG |
63c143 |
};
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
@@ -346,7 +350,7 @@ static int ntfs_fs_parse_param(struct fs_context *fc,
|
|
Kmods SIG |
63c143 |
case Opt_showmeta:
|
|
Kmods SIG |
63c143 |
opts->showmeta = result.negated ? 0 : 1;
|
|
Kmods SIG |
63c143 |
break;
|
|
Kmods SIG |
63c143 |
- case Opt_nls:
|
|
Kmods SIG |
63c143 |
+ case Opt_iocharset:
|
|
Kmods SIG |
63c143 |
kfree(opts->nls_name);
|
|
Kmods SIG |
63c143 |
opts->nls_name = param->string;
|
|
Kmods SIG |
63c143 |
param->string = NULL;
|
|
Kmods SIG |
63c143 |
@@ -380,11 +384,11 @@ static int ntfs_fs_reconfigure(struct fs_context *fc)
|
|
Kmods SIG |
63c143 |
new_opts->nls = ntfs_load_nls(new_opts->nls_name);
|
|
Kmods SIG |
63c143 |
if (IS_ERR(new_opts->nls)) {
|
|
Kmods SIG |
63c143 |
new_opts->nls = NULL;
|
|
Kmods SIG |
63c143 |
- errorf(fc, "ntfs3: Cannot load nls %s", new_opts->nls_name);
|
|
Kmods SIG |
63c143 |
+ errorf(fc, "ntfs3: Cannot load iocharset %s", new_opts->nls_name);
|
|
Kmods SIG |
63c143 |
return -EINVAL;
|
|
Kmods SIG |
63c143 |
}
|
|
Kmods SIG |
63c143 |
if (new_opts->nls != sbi->options->nls)
|
|
Kmods SIG |
63c143 |
- return invalf(fc, "ntfs3: Cannot use different nls when remounting!");
|
|
Kmods SIG |
63c143 |
+ return invalf(fc, "ntfs3: Cannot use different iocharset when remounting!");
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
sync_filesystem(sb);
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
@@ -528,9 +532,9 @@ static int ntfs_show_options(struct seq_file *m, struct dentry *root)
|
|
Kmods SIG |
63c143 |
if (opts->dmask)
|
|
Kmods SIG |
63c143 |
seq_printf(m, ",dmask=%04o", ~opts->fs_dmask_inv);
|
|
Kmods SIG |
63c143 |
if (opts->nls)
|
|
Kmods SIG |
63c143 |
- seq_printf(m, ",nls=%s", opts->nls->charset);
|
|
Kmods SIG |
63c143 |
+ seq_printf(m, ",iocharset=%s", opts->nls->charset);
|
|
Kmods SIG |
63c143 |
else
|
|
Kmods SIG |
63c143 |
- seq_puts(m, ",nls=utf8");
|
|
Kmods SIG |
63c143 |
+ seq_puts(m, ",iocharset=utf8");
|
|
Kmods SIG |
63c143 |
if (opts->sys_immutable)
|
|
Kmods SIG |
63c143 |
seq_puts(m, ",sys_immutable");
|
|
Kmods SIG |
63c143 |
if (opts->discard)
|
|
Kmods SIG |
63c143 |
--
|
|
Kmods SIG |
63c143 |
2.31.1
|
|
Kmods SIG |
63c143 |
|