]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: VFS: vfs_glusterfs: Add tevent_req pointer to state struct in vfs_gluster_pwrite_...
authorJeremy Allison <jra@samba.org>
Fri, 28 Feb 2020 23:47:52 +0000 (15:47 -0800)
committerJeremy Allison <jra@samba.org>
Sun, 8 Mar 2020 18:07:44 +0000 (18:07 +0000)
We will need this to detect when this request is outstanding but
has been destroyed in a SHUTDOWN_CLOSE on this file.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14301

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
source3/modules/vfs_glusterfs.c

index 7924f123ccab4403a11b0f7db4e6fe3bf8641f9c..456e0c8a4989b545e31a536ce618f482fdbf0bfb 100644 (file)
@@ -873,6 +873,7 @@ static ssize_t vfs_gluster_pread_recv(struct tevent_req *req,
 }
 
 struct vfs_gluster_pwrite_state {
+       struct tevent_req *req;
        ssize_t ret;
        glfs_fd_t *fd;
        const void *buf;
@@ -908,6 +909,7 @@ static struct tevent_req *vfs_gluster_pwrite_send(struct vfs_handle_struct
                return NULL;
        }
 
+       state->req = req;
        state->ret = -1;
        state->fd = glfd;
        state->buf = data;