From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Coquelin Subject: Re: [PATCH v3 13/21] vhost: add helpers for packed virtqueues Date: Fri, 6 Apr 2018 11:20:10 +0200 Message-ID: <955ef4fc-eacf-12ed-797b-9d274bbeb054@redhat.com> References: <20180405101031.26468-1-jfreimann@redhat.com> <20180405101031.26468-14-jfreimann@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: tiwei.bie@intel.com, yliu@fridaylinux.org, mst@redhat.com To: Jens Freimann , dev@dpdk.org Return-path: Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by dpdk.org (Postfix) with ESMTP id 2665B1CEBD for ; Fri, 6 Apr 2018 11:20:18 +0200 (CEST) In-Reply-To: <20180405101031.26468-14-jfreimann@redhat.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 04/05/2018 12:10 PM, Jens Freimann wrote: > Add some helper functions to set/check descriptor flags > and toggle the used wrap counter. > > Signed-off-by: Jens Freimann > --- > lib/librte_vhost/virtio-1.1.h | 44 +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 44 insertions(+) > > diff --git a/lib/librte_vhost/virtio-1.1.h b/lib/librte_vhost/virtio-1.1.h > index 7b48caed7..e77d7aa6c 100644 > --- a/lib/librte_vhost/virtio-1.1.h > +++ b/lib/librte_vhost/virtio-1.1.h Shouldn't the file be named virtio-packed.h? > @@ -15,4 +15,48 @@ struct vring_desc_packed { > uint16_t flags; > }; > > +static inline void > +toggle_wrap_counter(struct vhost_virtqueue *vq) > +{ > + vq->used_wrap_counter ^= 1; > +} > + > +static inline int > +desc_is_avail(struct vhost_virtqueue *vq, struct vring_desc_packed *desc) > +{ > + if (vq->used_wrap_counter == 1) { > + if ((desc->flags & VRING_DESC_F_AVAIL) && > + !(desc->flags & VRING_DESC_F_USED)) > + return 1; > + } > + if (vq->used_wrap_counter == 0) { > + if (!(desc->flags & VRING_DESC_F_AVAIL) && > + (desc->flags & VRING_DESC_F_USED)) > + return 1; > + } > + return 0; > +} > + > +static inline void > +_set_desc_used(struct vring_desc_packed *desc, int wrap_counter) > +{ > + uint16_t flags = desc->flags; > + > + if (wrap_counter == 1) { > + flags |= VRING_DESC_F_USED; > + flags |= VRING_DESC_F_AVAIL; > + } else { > + flags &= ~VRING_DESC_F_USED; > + flags &= ~VRING_DESC_F_AVAIL; > + } > + > + desc->flags = flags; > +} > + > +static inline void > +set_desc_used(struct vhost_virtqueue *vq, struct vring_desc_packed *desc) > +{ > + _set_desc_used(desc, vq->used_wrap_counter); > +} > + Maybe prefix all with vring_ > #endif /* __VIRTIO_PACKED_H */ >