From: Steve French Date: Thu, 25 Jul 2019 23:19:42 +0000 (-0500) Subject: smb3: add missing flag definitions X-Git-Tag: v5.4-rc1~8^2~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59519803a9adb991876cd0bb055b4791d7e26cef;p=platform%2Fkernel%2Flinux-rpi.git smb3: add missing flag definitions SMB3 and 3.1.1 added two additional flags including the priority mask. Add them to our protocol definitions in smb2pdu.h. See MS-SMB2 2.2.1.2 Signed-off-by: Steve French Signed-off-by: Ronnie Sahlberg Reviewed-by: Pavel Shilovsky --- diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h index 747de93..ea735d5 100644 --- a/fs/cifs/smb2pdu.h +++ b/fs/cifs/smb2pdu.h @@ -143,7 +143,9 @@ struct smb2_transform_hdr { #define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002) #define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004) #define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008) +#define SMB2_FLAGS_PRIORITY_MASK cpu_to_le32(0x00000070) /* SMB3.1.1 */ #define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000) +#define SMB2_FLAGS_REPLAY_OPERATION cpu_to_le32(0x20000000) /* SMB3 & up */ /* * Definitions for SMB2 Protocol Data Units (network frames)