cifs: set replay flag for retries of write command
authorShyam Prasad N <sprasad@microsoft.com>
Thu, 18 Jan 2024 09:14:10 +0000 (09:14 +0000)
committerSteve French <stfrench@microsoft.com>
Wed, 24 Jan 2024 02:23:29 +0000 (20:23 -0600)
Similar to the rest of the commands, this is a change
to add replay flags on retry. This one does not add a
back-off, considering that we may want to flush a write
ASAP to the server. Considering that this will be a
flush of cached pages, the retrans value is also not
honoured.

Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/cifsglob.h
fs/smb/client/file.c
fs/smb/client/smb2pdu.c

index ceaf9857885def5cd2f761ec9fda220bb5fa6dad..16befff4cbb47c9ac104b052401a490398d0fac9 100644 (file)
@@ -1506,6 +1506,7 @@ struct cifs_writedata {
        struct smbd_mr                  *mr;
 #endif
        struct cifs_credits             credits;
+       bool                            replay;
 };
 
 /*
index 70f9e3f12a5c5b7b677ebacd69a7ebadd43f6c54..6f079976f9e77e9919d71ad223705353884281c8 100644 (file)
@@ -3300,6 +3300,7 @@ cifs_resend_wdata(struct cifs_writedata *wdata, struct list_head *wdata_list,
                        if (wdata->cfile->invalidHandle)
                                rc = -EAGAIN;
                        else {
+                               wdata->replay = true;
 #ifdef CONFIG_CIFS_SMB_DIRECT
                                if (wdata->mr) {
                                        wdata->mr->need_invalidate = true;
index f92d77099ab41bbf3e7bd1d670ea79942ecb8c06..4f2cc8373b675d03e89e8bc5852f7504ad8526c8 100644 (file)
@@ -4771,7 +4771,7 @@ smb2_async_writev(struct cifs_writedata *wdata,
        struct cifs_io_parms *io_parms = NULL;
        int credit_request;
 
-       if (!wdata->server)
+       if (!wdata->server || wdata->replay)
                server = wdata->server = cifs_pick_channel(tcon->ses);
 
        /*
@@ -4856,6 +4856,8 @@ smb2_async_writev(struct cifs_writedata *wdata,
        rqst.rq_nvec = 1;
        rqst.rq_iter = wdata->iter;
        rqst.rq_iter_size = iov_iter_count(&rqst.rq_iter);
+       if (wdata->replay)
+               smb2_set_replay(server, &rqst);
 #ifdef CONFIG_CIFS_SMB_DIRECT
        if (wdata->mr)
                iov[0].iov_len += sizeof(struct smbd_buffer_descriptor_v1);