diff options
author | Steve French <steve.french@primarydata.com> | 2014-12-17 22:52:58 -0600 |
---|---|---|
committer | Steve French <steve.french@primarydata.com> | 2015-06-27 20:23:32 -0700 |
commit | 5f7fbf733c9dd6b58d40fa394313a5949b696f84 (patch) | |
tree | 8124f7318569872366b1138680ef81800cb20ffe /fs/cifs/cifsglob.h | |
parent | f291095f340db986271e951e3891bb95624a93ea (diff) | |
download | op-kernel-dev-5f7fbf733c9dd6b58d40fa394313a5949b696f84.zip op-kernel-dev-5f7fbf733c9dd6b58d40fa394313a5949b696f84.tar.gz |
Allow parsing vers=3.11 on cifs mount
Parses and recognizes "vers=3.1.1" on cifs mount and allows sending
0x0311 as a new CIFS/SMB3 dialect. Subsequent patches will add
the new negotiate contexts and updated session setup
Reviewed-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: Steve French <steve.french@primarydata.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 22b289a..71bf86e 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -171,6 +171,10 @@ enum smb_version { Smb_21, Smb_30, Smb_302, +#ifdef CONFIG_CIFS_SMB311 + Smb_311, +#endif /* SMB311 */ + Smb_version_err }; struct mid_q_entry; @@ -1617,4 +1621,7 @@ extern struct smb_version_values smb30_values; #define SMB302_VERSION_STRING "3.02" /*extern struct smb_version_operations smb302_operations;*/ /* not needed yet */ extern struct smb_version_values smb302_values; +#define SMB311_VERSION_STRING "3.1.1" +/*extern struct smb_version_operations smb311_operations;*/ /* not needed yet */ +extern struct smb_version_values smb311_values; #endif /* _CIFS_GLOB_H */ |