diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2021-09-08 12:10:15 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-11-05 09:55:36 -0500 |
commit | c462870bf8547d9cefa2e89abd0f78599c9786fe (patch) | |
tree | 5bf8488906e70864029e1efc06548f9d7c03dc84 /fs/cifs/smb2misc.c | |
parent | d8d9de532de9fa3f3ee0c1c96c42da9507fbade6 (diff) |
cifs: Move SMB2_Create definitions to the shared area
Move all SMB2_Create definitions (except contexts) into the shared area.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2misc.c')
-rw-r--r-- | fs/cifs/smb2misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/smb2misc.c b/fs/cifs/smb2misc.c index ce7d6cc652b3..cdcdef32759e 100644 --- a/fs/cifs/smb2misc.c +++ b/fs/cifs/smb2misc.c @@ -832,8 +832,8 @@ smb2_handle_cancelled_mid(struct mid_q_entry *mid, struct TCP_Server_Info *serve rc = __smb2_handle_cancelled_cmd(tcon, le16_to_cpu(hdr->Command), le64_to_cpu(hdr->MessageId), - rsp->PersistentFileId, - rsp->VolatileFileId); + le64_to_cpu(rsp->PersistentFileId), + le64_to_cpu(rsp->VolatileFileId)); if (rc) cifs_put_tcon(tcon); |