From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v2 4/9] net/virtio: add Rx queue intr enable/disable functions Date: Fri, 30 Dec 2016 13:59:07 +0800 Message-ID: <20161230055907.GH21789@yliu-dev.sh.intel.com> References: <1482996643-113253-1-git-send-email-jianfeng.tan@intel.com> <1482996643-113253-5-git-send-email-jianfeng.tan@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, stephen@networkplumber.org To: Jianfeng Tan Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id A74F8282 for ; Fri, 30 Dec 2016 06:57:22 +0100 (CET) Content-Disposition: inline In-Reply-To: <1482996643-113253-5-git-send-email-jianfeng.tan@intel.com> 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 Thu, Dec 29, 2016 at 07:30:38AM +0000, Jianfeng Tan wrote: > /* > * Two types of mbuf to be cleaned: > * 1) mbuf that has been consumed by backend but not used by virtio. > diff --git a/drivers/net/virtio/virtqueue.h b/drivers/net/virtio/virtqueue.h > index f0bb089..62be136 100644 > --- a/drivers/net/virtio/virtqueue.h > +++ b/drivers/net/virtio/virtqueue.h > @@ -274,7 +274,29 @@ vring_desc_init(struct vring_desc *dp, uint16_t n) > /** > * Tell the backend not to interrupt us. > */ > -void virtqueue_disable_intr(struct virtqueue *vq); > +static inline void > +virtqueue_disable_intr(struct virtqueue *vq) > +{ > + /* Set VRING_AVAIL_F_NO_INTERRUPT to hint host > + * not to interrupt when it consumes packets > + * Note: this is only considered a hint to the host > + */ > + vq->vq_ring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT; > +} > + > +/** > + * Tell the backend to interrupt us. > + */ > +static inline void > +virtqueue_enable_intr(struct virtqueue *vq) > +{ > + /* Unset VRING_AVAIL_F_NO_INTERRUPT to hint host > + * to interrupt when it consumes packets > + * Note: this is only considered a hint to the host > + */ This kind of comment is a bit weird to me; it becomes weird-er when it appears twice. Maybe we could just drop it, as the code already expains it well (disabling interrupt regarding to NO_INTERRUPT). Or, you could combine the two and write one comment before the two functions. --yliu > + vq->vq_ring.avail->flags &= (~VRING_AVAIL_F_NO_INTERRUPT); > +} > + > /** > * Dump virtqueue internal structures, for debug purpose only. > */ > -- > 2.7.4