diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-07-07 15:18:01 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-07-09 15:50:11 +0200 |
commit | b47ec2c4562117728be36ec2edfbdf9ef2868c6e (patch) | |
tree | b71492ca8498641b0aff368aacf25ad309ae8e2e /block.c | |
parent | 01fb2705bd19a6e9c1207446793064dbd141df5f (diff) |
block: prefer aio_poll to qemu_aio_wait
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -471,7 +471,7 @@ int bdrv_create(BlockDriver *drv, const char* filename, 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); } } |