diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-20 17:26:51 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-04-28 15:36:08 +0200 |
commit | 49110174f8835ec3d5ca7fc076ee1f51c18564fe (patch) | |
tree | c05646cd2b8b3e3ba896ecea96afe5a39118bc2b /aio-posix.c | |
parent | e98ab097092e54999f046e9efa1ca1dd52f0c9e5 (diff) |
AioContext: acquire/release AioContext during aio_poll
This is the first step in pushing down acquire/release, and will let
rfifolock drop the contention callback feature.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1424449612-18215-3-git-send-email-pbonzini@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'aio-posix.c')
-rw-r--r-- | aio-posix.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/aio-posix.c b/aio-posix.c index 296cd9b140..4abec38866 100644 --- a/aio-posix.c +++ b/aio-posix.c @@ -238,6 +238,7 @@ bool aio_poll(AioContext *ctx, bool blocking) bool progress; int64_t timeout; + aio_context_acquire(ctx); was_dispatching = ctx->dispatching; progress = false; @@ -267,7 +268,13 @@ bool aio_poll(AioContext *ctx, bool blocking) timeout = blocking ? aio_compute_timeout(ctx) : 0; /* wait until next event */ + if (timeout) { + aio_context_release(ctx); + } ret = qemu_poll_ns((GPollFD *)pollfds, npfd, timeout); + if (timeout) { + aio_context_acquire(ctx); + } /* if we have any readable fds, dispatch event */ if (ret > 0) { @@ -286,5 +293,7 @@ bool aio_poll(AioContext *ctx, bool blocking) } aio_set_dispatching(ctx, was_dispatching); + aio_context_release(ctx); + return progress; } |