From fd85ee43e7234aa41f89b50adb1c108dd2066419 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Fri, 26 Feb 2016 12:29:02 +0100 Subject: [PATCH] vfs/default: store async VFS op duration we got from libasys Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_default.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index bfbc0893869..64592a7e100 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -893,6 +893,7 @@ static void vfswrap_asys_finished(struct tevent_context *ev, SMBPROFILE_BYTES_ASYNC_END(state->profile_bytes); state->ret = result->ret; state->vfs_aio_state.error = result->err; + state->vfs_aio_state.duration = result->duration; tevent_req_defer_callback(req, ev); tevent_req_done(req); } -- 2.34.1