From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54798) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gPSAx-0007uw-Tc for qemu-devel@nongnu.org; Wed, 21 Nov 2018 08:04:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gPSAs-000534-M7 for qemu-devel@nongnu.org; Wed, 21 Nov 2018 08:04:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53408) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gPSAs-00051W-GF for qemu-devel@nongnu.org; Wed, 21 Nov 2018 08:04:10 -0500 References: <1539266915-15216-1-git-send-email-wexu@redhat.com> <1539266915-15216-13-git-send-email-wexu@redhat.com> From: Maxime Coquelin Message-ID: <1e29f314-f227-55ad-23f0-353dab8e7f98@redhat.com> Date: Wed, 21 Nov 2018 14:03:59 +0100 MIME-Version: 1.0 In-Reply-To: <1539266915-15216-13-git-send-email-wexu@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [[RFC v3 12/12] virtio: feature vhost-net support for packed ring List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: wexu@redhat.com, qemu-devel@nongnu.org Cc: jasowang@redhat.com, tiwei.bie@intel.com, jfreimann@redhat.com Hi Wei, On 10/11/18 4:08 PM, wexu@redhat.com wrote: > From: Wei Xu > > (cherry picked from commit 305a2c4640c15c5717245067ab937fd10f478ee6) > Signed-off-by: Wei Xu > (cherry picked from commit 46476dae6f44c6fef8802a4a0ac7d0d79fe399e3) > Signed-off-by: Wei Xu > --- > hw/virtio/vhost.c | 3 +++ > hw/virtio/virtio.c | 4 ++++ > include/hw/virtio/virtio.h | 1 + > 3 files changed, 8 insertions(+) > > diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c > index 9df2da3..de06d55 100644 > --- a/hw/virtio/vhost.c > +++ b/hw/virtio/vhost.c > @@ -974,6 +974,9 @@ static int vhost_virtqueue_start(struct vhost_dev *dev, > } > > state.num = virtio_queue_get_last_avail_idx(vdev, idx); > + if (virtio_vdev_has_feature(vdev, VIRTIO_F_RING_PACKED)) { > + state.num |= ((int)virtio_queue_packed_get_wc(vdev, idx)) << 31; For next version, please note that we agreed to move the wrap counter value at bit 15. DPDK vhost lib implemented it that way.