From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrjgM-0006Tl-I4 for qemu-devel@nongnu.org; Thu, 29 Oct 2015 05:39:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZrjgL-0000XH-PC for qemu-devel@nongnu.org; Thu, 29 Oct 2015 05:39:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrjgL-0000X1-K3 for qemu-devel@nongnu.org; Thu, 29 Oct 2015 05:39:41 -0400 Date: Thu, 29 Oct 2015 11:39:39 +0200 From: "Michael S. Tsirkin" Message-ID: <1446111531-5755-8-git-send-email-mst@redhat.com> References: <1446111531-5755-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1446111531-5755-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 07/16] virtio: switch to virtio_map List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Igor Mammedov Drop use of the deprecated virtio_map_sg in virtio core. Signed-off-by: Michael S. Tsirkin Reviewed-by: Igor Mammedov --- hw/virtio/virtio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 943b990..4621570 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; -- MST