mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Revert "s3: VFS: vfs_glusterfs. Pass in struct vfs_gluster_pwrite_state as the callback data to the subreq."
This reverts commit 3357a77d08
.
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>
This commit is contained in:
parent
f2d5e1a8c6
commit
e8c0bdb423
@ -926,7 +926,7 @@ static struct tevent_req *vfs_gluster_pwrite_send(struct vfs_handle_struct
|
||||
if (tevent_req_nomem(subreq, req)) {
|
||||
return tevent_req_post(req, ev);
|
||||
}
|
||||
tevent_req_set_callback(subreq, vfs_gluster_pwrite_done, state);
|
||||
tevent_req_set_callback(subreq, vfs_gluster_pwrite_done, req);
|
||||
|
||||
talloc_set_destructor(state, vfs_gluster_pwrite_state_destructor);
|
||||
|
||||
@ -972,9 +972,10 @@ static int vfs_gluster_pwrite_state_destructor(struct vfs_gluster_pwrite_state *
|
||||
|
||||
static void vfs_gluster_pwrite_done(struct tevent_req *subreq)
|
||||
{
|
||||
struct vfs_gluster_pwrite_state *state = tevent_req_callback_data(
|
||||
subreq, struct vfs_gluster_pwrite_state);
|
||||
struct tevent_req *req = state->req;
|
||||
struct tevent_req *req = tevent_req_callback_data(
|
||||
subreq, struct tevent_req);
|
||||
struct vfs_gluster_pwrite_state *state = tevent_req_data(
|
||||
req, struct vfs_gluster_pwrite_state);
|
||||
int ret;
|
||||
|
||||
ret = pthreadpool_tevent_job_recv(subreq);
|
||||
|
Loading…
Reference in New Issue
Block a user