summaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsglob.h
diff options
context:
space:
mode:
authorSteve French2013-06-13 05:48:41 +0200
committerSteve French2013-06-24 08:56:45 +0200
commit20b6d8b42e7e7c9af5046fe525d6709e10d14992 (patch)
tree116001ee65e9688793a8fe2b96502e456c54dd3b /fs/cifs/cifsglob.h
parentFix endian error in SMB2 protocol negotiation (diff)
downloadkernel-qcow2-linux-20b6d8b42e7e7c9af5046fe525d6709e10d14992.tar.gz
kernel-qcow2-linux-20b6d8b42e7e7c9af5046fe525d6709e10d14992.tar.xz
kernel-qcow2-linux-20b6d8b42e7e7c9af5046fe525d6709e10d14992.zip
Add SMB3.02 dialect support
The new Windows update supports SMB3.02 dialect, a minor update to SMB3. This patch adds support for mounting with vers=3.02 Signed-off-by: Steve French <smfrench@gmail.com> Reviewed-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r--fs/cifs/cifsglob.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index c3162c2f9550..f13cbbeaf098 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -175,6 +175,7 @@ enum smb_version {
Smb_20,
Smb_21,
Smb_30,
+ Smb_302,
};
struct mid_q_entry;
@@ -1486,4 +1487,7 @@ extern struct smb_version_values smb21_values;
#define SMB30_VERSION_STRING "3.0"
extern struct smb_version_operations smb30_operations;
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;
#endif /* _CIFS_GLOB_H */