diff options
author | Michael S. Tsirkin | 2019-12-09 17:46:13 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2020-01-05 13:03:03 +0100 |
commit | 722f8c51d8af223751dfb1d02de40043e8ba067e (patch) | |
tree | 25431b93886e7395575e31a37059d0e2efef9391 /include/hw | |
parent | Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into ... (diff) | |
download | qemu-722f8c51d8af223751dfb1d02de40043e8ba067e.tar.gz qemu-722f8c51d8af223751dfb1d02de40043e8ba067e.tar.xz qemu-722f8c51d8af223751dfb1d02de40043e8ba067e.zip |
virtio: add ability to delete vq through a pointer
Devices tend to maintain vq pointers, allow deleting them trough a vq pointer.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/virtio/virtio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h index c32a815303..e18756d50d 100644 --- a/include/hw/virtio/virtio.h +++ b/include/hw/virtio/virtio.h @@ -183,6 +183,8 @@ VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size, void virtio_del_queue(VirtIODevice *vdev, int n); +void virtio_delete_queue(VirtQueue *vq); + void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem, unsigned int len); void virtqueue_flush(VirtQueue *vq, unsigned int count); |