Revert "s3: VFS: vfs_glusterfs: Add tevent_req pointer to state struct in vfs_gluster...
authorJeremy Allison <jra@samba.org>
Fri, 13 Mar 2020 17:37:48 +0000 (10:37 -0700)
committerJeremy Allison <jra@samba.org>
Wed, 18 Mar 2020 18:03:30 +0000 (18:03 +0000)
This reverts commit 0e3dc0078ebd6aa79553bf2afa8e72945e23dfb0.

Now we wait for all aio to finish on all SHUTDOWN_CLOSE
cases, this is no longer needed.

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

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/modules/vfs_glusterfs.c

index 6598aadad17413a88f32f520ae5f343d04d9285c..d4b68fba37671892f6634eb283f314568410b746 100644 (file)
@@ -713,7 +713,6 @@ static ssize_t vfs_gluster_pread(struct vfs_handle_struct *handle,
 }
 
 struct vfs_gluster_pread_state {
-       struct tevent_req *req;
        ssize_t ret;
        glfs_fd_t *fd;
        void *buf;
@@ -749,7 +748,6 @@ static struct tevent_req *vfs_gluster_pread_send(struct vfs_handle_struct
                return NULL;
        }
 
-       state->req = req;
        state->ret = -1;
        state->fd = glfd;
        state->buf = data;