diff options
author | Michael S. Tsirkin | 2016-04-06 12:16:26 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2016-04-07 18:57:33 +0200 |
commit | 8a2fad57eb124ec0633f6f2b1c74c991fc7501bd (patch) | |
tree | ba4c029404ecda2c751b1d4a886a67a9d8b58bd9 /include | |
parent | virtio: add aio handler (diff) | |
download | qemu-8a2fad57eb124ec0633f6f2b1c74c991fc7501bd.tar.gz qemu-8a2fad57eb124ec0633f6f2b1c74c991fc7501bd.tar.xz qemu-8a2fad57eb124ec0633f6f2b1c74c991fc7501bd.zip |
virtio-blk: use aio handler for data plane
In addition to handling IO in vcpu thread and in io thread, dataplane
introduces yet another mode: handling it by AioContext.
This reuses the same handler as previous modes, which triggers races as
these were not designed to be reentrant. Use a separate handler just
for aio, and disable regular handlers when dataplane is active.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/virtio/virtio-blk.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h index 59ae1e4358..8f2b056515 100644 --- a/include/hw/virtio/virtio-blk.h +++ b/include/hw/virtio/virtio-blk.h @@ -86,4 +86,6 @@ void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb); void virtio_blk_submit_multireq(BlockBackend *blk, MultiReqBuffer *mrb); +void virtio_blk_handle_vq(VirtIOBlock *s, VirtQueue *vq); + #endif |