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 72CC8199B4 for ; Thu, 1 Feb 2018 10:17:31 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BA98470D7D; Thu, 1 Feb 2018 09:17:30 +0000 (UTC) Received: from [10.36.112.31] (ovpn-112-31.ams2.redhat.com [10.36.112.31]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5A89C6A044; Thu, 1 Feb 2018 09:16:49 +0000 (UTC) To: Jens Freimann , dev@dpdk.org Cc: tiwei.bie@intel.com, yliu@fridaylinux.org, mst@redhat.com References: <20180129141143.13437-1-jfreimann@redhat.com> <20180129141143.13437-11-jfreimann@redhat.com> From: Maxime Coquelin Message-ID: <8adb7976-dcdd-07c5-45f9-aa3c38692caa@redhat.com> Date: Thu, 1 Feb 2018 10:16:46 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <20180129141143.13437-11-jfreimann@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Thu, 01 Feb 2018 09:17:30 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH 10/14] vhost: vring address setup for packed queues 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: Thu, 01 Feb 2018 09:17:31 -0000 Hi Jens, On 01/29/2018 03:11 PM, Jens Freimann wrote: > From: Yuanhan Liu > > Add code to set up packed queues when enabled. > > Signed-off-by: Yuanhan Liu > Signed-off-by: Jens Freimann > --- > lib/librte_vhost/vhost.c | 4 ++++ > lib/librte_vhost/vhost.h | 1 + > lib/librte_vhost/vhost_user.c | 17 ++++++++++++++++- > 3 files changed, 21 insertions(+), 1 deletion(-) > > diff --git a/lib/librte_vhost/vhost.c b/lib/librte_vhost/vhost.c > index 1dd9adbc7..78913912c 100644 > --- a/lib/librte_vhost/vhost.c > +++ b/lib/librte_vhost/vhost.c > @@ -536,6 +536,9 @@ rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable) > { > struct virtio_net *dev = get_device(vid); > > + if (dev->features & (1ULL << VIRTIO_F_PACKED)) > + return 0; > + This check should be done after dev is checked non-null. > if (dev == NULL) > return -1; > > @@ -545,6 +548,7 @@ rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable) > return -1; > } > > + Trailing line. > dev->virtqueue[queue_id]->used->flags = VRING_USED_F_NO_NOTIFY; > return 0; > }