]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: VFS: vfs_default: Add tevent_req pointer to state struct in vfswrap_fsync_state.
authorJeremy Allison <jra@samba.org>
Fri, 28 Feb 2020 00:53:10 +0000 (16:53 -0800)
committerJeremy Allison <jra@samba.org>
Sun, 8 Mar 2020 18:07:43 +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_default.c

index 3425ee31dcbb33728e9ec43d1a035597afcee37c..28b8c04dee42eb8cd320bd90be19bcf064c58c99 100644 (file)
@@ -1078,6 +1078,7 @@ static ssize_t vfswrap_pwrite_recv(struct tevent_req *req,
 }
 
 struct vfswrap_fsync_state {
+       struct tevent_req *req;
        ssize_t ret;
        int fd;
 
@@ -1102,6 +1103,7 @@ static struct tevent_req *vfswrap_fsync_send(struct vfs_handle_struct *handle,
                return NULL;
        }
 
+       state->req = req;
        state->ret = -1;
        state->fd = fsp->fh->fd;