diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-10-27 10:09:16 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-10-29 11:05:24 +0200 |
commit | 13972ac5e263a7319609253edac5754129489132 (patch) | |
tree | 9a129475998260f1891aa903f40f1cfd1295d60f /hw/virtio | |
parent | 8059feee004111534c4c0652e2f0715e9b4e0754 (diff) | |
download | qemu-13972ac5e263a7319609253edac5754129489132.tar.gz qemu-13972ac5e263a7319609253edac5754129489132.tar.bz2 qemu-13972ac5e263a7319609253edac5754129489132.zip |
virtio: switch to virtio_map
Drop use of the deprecated virtio_map_sg in virtio core.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'hw/virtio')
-rw-r--r-- | hw/virtio/virtio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 943b9904bc..462157044c 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -569,8 +569,7 @@ int virtqueue_pop(VirtQueue *vq, VirtQueueElement *elem) } while ((i = virtqueue_next_desc(vdev, desc_pa, i, max)) != max); /* Now map what we have collected */ - virtqueue_map_sg(elem->in_sg, elem->in_addr, elem->in_num, 1); - virtqueue_map_sg(elem->out_sg, elem->out_addr, elem->out_num, 0); + virtqueue_map(elem); elem->index = head; |