diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2020-10-21 05:10:44 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-10-22 20:17:31 +0300 |
commit | 555782aa556af869d4f390996607abd356513ba4 (patch) | |
tree | 802a840455cdb152a8f22f4f292cf2aff0d64c8d /fs/cifs/cifsglob.h | |
parent | 2f20f076865daed006459b39ba78c2fc23b5c8b4 (diff) | |
download | linux-555782aa556af869d4f390996607abd356513ba4.tar.xz |
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/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index a1a1a16acb38..b6925aeeb621 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -195,18 +195,6 @@ struct smb_rqst { unsigned int rq_tailsz; /* length of last page */ }; -enum smb_version { - Smb_1 = 1, - Smb_20, - Smb_21, - Smb_30, - Smb_302, - Smb_311, - Smb_3any, - Smb_default, - Smb_version_err -}; - struct mid_q_entry; struct TCP_Server_Info; struct cifsFileInfo; |