From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqzvG-00041T-9b for qemu-devel@nongnu.org; Tue, 27 Oct 2015 04:48:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZqzvF-0003Xq-FQ for qemu-devel@nongnu.org; Tue, 27 Oct 2015 04:48:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqzvF-0003Xd-A2 for qemu-devel@nongnu.org; Tue, 27 Oct 2015 04:48:01 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 00EB4C0AF7AC for ; Tue, 27 Oct 2015 08:48:00 +0000 (UTC) Date: Tue, 27 Oct 2015 10:47:58 +0200 From: "Michael S. Tsirkin" Message-ID: <1445935663-31971-3-git-send-email-mst@redhat.com> References: <1445935663-31971-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1445935663-31971-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 2/6] virtio: switch to virtio_map List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov Drop use of the deprecated virtio_map_sg in virtio core. Signed-off-by: Michael S. Tsirkin --- 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 a6878c0..84e2320 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