commit | b47ec2c4562117728be36ec2edfbdf9ef2868c6e | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Mon Jul 07 15:18:01 2014 +0200 |
committer | Kevin Wolf <kwolf@redhat.com> | Wed Jul 09 15:50:11 2014 +0200 |
tree | b71492ca8498641b0aff368aacf25ad309ae8e2e | |
parent | 01fb2705bd19a6e9c1207446793064dbd141df5f [diff] [blame] |
block: prefer aio_poll to qemu_aio_wait Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
diff --git a/block.c b/block.c index c9629a4..510430d 100644 --- a/block.c +++ b/block.c
@@ -471,7 +471,7 @@ co = qemu_coroutine_create(bdrv_create_co_entry); qemu_coroutine_enter(co, &cco); while (cco.ret == NOT_DONE) { - qemu_aio_wait(); + aio_poll(qemu_get_aio_context(), true); } }