diff options
author | Winston Wen <wentao@uniontech.com> | 2023-07-24 05:10:57 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2023-07-25 08:31:24 +0300 |
commit | a43f95fdd39490f7b156fd126f1e90ec2d5553f1 (patch) | |
tree | 0c04f59c861af7936b5802ce40beec5d46badc58 /fs/smb/client/cifsglob.h | |
parent | c1ed39ec116272935528ca9b348b8ee79b0791da (diff) | |
download | linux-a43f95fdd39490f7b156fd126f1e90ec2d5553f1.tar.xz |
cifs: fix charset issue in reconnection
We need to specify charset, like "iocharset=utf-8", in mount options for
Chinese path if the nls_default don't support it, such as iso8859-1, the
default value for CONFIG_NLS_DEFAULT.
But now in reconnection the nls_default is used, instead of the one we
specified and used in mount, and this can lead to mount failure.
Signed-off-by: Winston Wen <wentao@uniontech.com>
Reviewed-by: Paulo Alcantara <pc@manguebit.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/cifsglob.h')
-rw-r--r-- | fs/smb/client/cifsglob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/smb/client/cifsglob.h b/fs/smb/client/cifsglob.h index e5eec6d38d02..657dee4b2c8c 100644 --- a/fs/smb/client/cifsglob.h +++ b/fs/smb/client/cifsglob.h @@ -1062,6 +1062,7 @@ struct cifs_ses { unsigned long chans_need_reconnect; /* ========= end: protected by chan_lock ======== */ struct cifs_ses *dfs_root_ses; + struct nls_table *local_nls; }; static inline bool |