diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2020-10-21 12:10:44 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-10-22 12:17:31 -0500 |
commit | 555782aa556af869d4f390996607abd356513ba4 (patch) | |
tree | 802a840455cdb152a8f22f4f292cf2aff0d64c8d /fs/cifs/fs_context.h | |
parent | 2f20f076865daed006459b39ba78c2fc23b5c8b4 (diff) | |
download | linux-next-555782aa556af869d4f390996607abd356513ba4.tar.gz |
cifs: move smb version mount options into fs_context.c
This and related patches which move mount related
code to fs_context.c has the advantage of
shriking the code in fs/cifs/connect.c (which had
the second most lines of code of any of the files
in cifs.ko and was getting harder to read due
to its size) and will also make it easier to
switch over to the new mount API in the future.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/fs_context.h')
-rw-r--r-- | fs/cifs/fs_context.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/cifs/fs_context.h b/fs/cifs/fs_context.h index 3e3f6e29e787..886208a1b0ef 100644 --- a/fs/cifs/fs_context.h +++ b/fs/cifs/fs_context.h @@ -12,6 +12,20 @@ #include <linux/parser.h> #include "cifsglob.h" +enum smb_version { + Smb_1 = 1, + Smb_20, + Smb_21, + Smb_30, + Smb_302, + Smb_311, + Smb_3any, + Smb_default, + Smb_version_err +}; + +int cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3); + enum { Opt_cache_loose, Opt_cache_strict, |