From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: Re: [PATCH] virtio: use volatile to get used->idx in the loop Date: Wed, 25 May 2016 11:34:24 +0300 Message-ID: <20160525113224-mutt-send-email-mst@redhat.com> References: <1464106601-981-1-git-send-email-huawei.xie@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev@dpdk.org" , "stephen@networkplumber.org" , "Ananyev, Konstantin" , "thomas.monjalon@6wind.com" , Yuanhan Liu , "Tan, Jianfeng" To: "Xie, Huawei" Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 971782C72 for ; Wed, 25 May 2016 10:34:28 +0200 (CEST) Content-Disposition: inline In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, May 25, 2016 at 08:25:20AM +0000, Xie, Huawei wrote: > On 5/25/2016 4:12 PM, Xie, Huawei wrote: > > There is no external function call or any barrier in the loop, > > the used->idx would only be retrieved once. > > > > Signed-off-by: Huawei Xie > > --- > > drivers/net/virtio/virtio_ethdev.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/net/virtio/virtio_ethdev.c b/drivers/net/virtio/virtio_ethdev.c > > index c3fb628..f6d6305 100644 > > --- a/drivers/net/virtio/virtio_ethdev.c > > +++ b/drivers/net/virtio/virtio_ethdev.c > > @@ -204,7 +204,8 @@ virtio_send_command(struct virtqueue *vq, struct virtio_pmd_ctrl *ctrl, > > usleep(100); > > } > > > > - while (vq->vq_used_cons_idx != vq->vq_ring.used->idx) { > > + while (vq->vq_used_cons_idx != > > + *((volatile uint16_t *)(&vq->vq_ring.used->idx))) { > > uint32_t idx, desc_idx, used_idx; > > struct vring_used_elem *uep; > > > > Find this issue when do the code rework of RX/TX queue. > As in other places, we also have loop retrieving the value of avial->idx > or used->idx, i prefer to declare the index in vq structure as volatile > to avoid potential issue. It might be a good idea to wrap this in a macro similar to ACCESS_ONCE in Linux. > > Stephen: > Another question is why we need a loop here? > > /huawei -- MST