Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4572f053 authored by Long Li's avatar Long Li Committed by Steve French
Browse files

CIFS: SMBD: Fix the definition for SMB2_CHANNEL_RDMA_V1_INVALIDATE



The channel value for requesting server remote invalidating local memory
registration should be 0x00000002

Signed-off-by: default avatarLong Li <longli@microsoft.com>
Signed-off-by: default avatarSteve French <smfrench@gmail.com>
parent 7cb3def4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -832,7 +832,7 @@ struct smb2_flush_rsp {
/* Channel field for read and write: exactly one of following flags can be set*/
#define SMB2_CHANNEL_NONE		0x00000000
#define SMB2_CHANNEL_RDMA_V1		0x00000001 /* SMB3 or later */
#define SMB2_CHANNEL_RDMA_V1_INVALIDATE 0x00000001 /* SMB3.02 or later */
#define SMB2_CHANNEL_RDMA_V1_INVALIDATE 0x00000002 /* SMB3.02 or later */

/* SMB2 read request without RFC1001 length at the beginning */
struct smb2_read_plain_req {