From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tiwei Bie Subject: Re: [PATCH v9 8/8] net/virtio: enable packed virtqueues by default Date: Fri, 26 Oct 2018 14:06:24 +0800 Message-ID: <20181026060624.GC31861@debian> References: <20181024143236.21271-1-jfreimann@redhat.com> <20181024143236.21271-9-jfreimann@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: dev@dpdk.org, maxime.coquelin@redhat.com, zhihong.wang@intel.com To: Jens Freimann Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 1D98B56A3 for ; Fri, 26 Oct 2018 08:07:48 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20181024143236.21271-9-jfreimann@redhat.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 Wed, Oct 24, 2018 at 04:32:36PM +0200, Jens Freimann wrote: > Signed-off-by: Jens Freimann > --- > drivers/net/virtio/virtio_ethdev.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/virtio/virtio_ethdev.h b/drivers/net/virtio/virtio_ethdev.h > index 6c9247639..d9b4feee2 100644 > --- a/drivers/net/virtio/virtio_ethdev.h > +++ b/drivers/net/virtio/virtio_ethdev.h > @@ -34,6 +34,7 @@ > 1u << VIRTIO_RING_F_INDIRECT_DESC | \ > 1ULL << VIRTIO_F_VERSION_1 | \ > 1ULL << VIRTIO_F_IN_ORDER | \ > + 1ULL << VIRTIO_F_RING_PACKED | \ Virtio-user will be broken when packed ring and CQ are negotiated. We need to fix this.