From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id A9FBD1B68C for ; Mon, 29 Jan 2018 15:12:16 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0EB1772692; Mon, 29 Jan 2018 14:12:16 +0000 (UTC) Received: from localhost (dhcp-192-241.str.redhat.com [10.33.192.241]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0A5AB60F80; Mon, 29 Jan 2018 14:12:06 +0000 (UTC) From: Jens Freimann To: dev@dpdk.org Cc: tiwei.bie@intel.com, yliu@fridaylinux.org, maxime.coquelin@redhat.com, mst@redhat.com Date: Mon, 29 Jan 2018 15:11:33 +0100 Message-Id: <20180129141143.13437-5-jfreimann@redhat.com> In-Reply-To: <20180129141143.13437-1-jfreimann@redhat.com> References: <20180129141143.13437-1-jfreimann@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Mon, 29 Jan 2018 14:12:16 +0000 (UTC) Subject: [dpdk-dev] [PATCH 04/14] net/virtio: add packed virtqueue helpers X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jan 2018 14:12:16 -0000 Add helper functions to set/clear and check descriptor flags. Signed-off-by: Jens Freimann --- drivers/net/virtio/virtio_ring.h | 32 ++++++++++++++++++++++++++++++++ drivers/net/virtio/virtqueue.c | 3 +++ 2 files changed, 35 insertions(+) diff --git a/drivers/net/virtio/virtio_ring.h b/drivers/net/virtio/virtio_ring.h index 839359444..47df96aac 100644 --- a/drivers/net/virtio/virtio_ring.h +++ b/drivers/net/virtio/virtio_ring.h @@ -74,12 +74,44 @@ struct vring_desc_1_1 { struct vring { unsigned int num; + unsigned int avail_wrap_counter; struct vring_desc *desc; struct vring_avail *avail; struct vring_used *used; struct vring_desc_1_1 *desc_1_1; }; +static inline void toggle_wrap_counter(struct vring *vr) +{ + vr->avail_wrap_counter ^= 1; +} + +static inline void _set_desc_avail(struct vring_desc_1_1 *desc, + int wrap_counter) +{ + uint16_t flags = desc->flags; + + if (wrap_counter) { + flags |= DESC_AVAIL; + flags &= ~DESC_USED; + } else { + flags &= ~DESC_AVAIL; + flags |= DESC_USED; + } + + desc->flags = flags; +} + +static inline void set_desc_avail(struct vring *vr, struct vring_desc_1_1 *desc) +{ + _set_desc_avail(desc, vr->avail_wrap_counter); +} + +static inline int desc_is_used(struct vring_desc_1_1 *desc) +{ + return !(desc->flags & DESC_AVAIL) == !(desc->flags & DESC_USED); +} + /* The standard layout for the ring is a continuous chunk of memory which * looks like this. We assume num is a power of 2. * diff --git a/drivers/net/virtio/virtqueue.c b/drivers/net/virtio/virtqueue.c index 1ada4fe08..052444756 100644 --- a/drivers/net/virtio/virtqueue.c +++ b/drivers/net/virtio/virtqueue.c @@ -43,6 +43,9 @@ virtqueue_rxvq_flush(struct virtqueue *vq) uint16_t used_idx, desc_idx; uint16_t nb_used, i; + if (vtpci_packed_queue(vq->hw)) + return; + nb_used = VIRTQUEUE_NUSED(vq); for (i = 0; i < nb_used; i++) { -- 2.14.3