From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tiwei Bie Subject: Re: [PATCH 06/17] net/virtio-user: add option to use packed queues Date: Mon, 19 Mar 2018 16:33:27 +0800 Message-ID: <20180319083326.thzwjclfl4imj4wa@debian> References: <20180316152120.13199-1-jfreimann@redhat.com> <20180316152120.13199-7-jfreimann@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: dev@dpdk.org, yliu@fridaylinux.org, maxime.coquelin@redhat.com, mst@redhat.com To: Jens Freimann Return-path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id D1EEA34F2 for ; Mon, 19 Mar 2018 09:35:03 +0100 (CET) Content-Disposition: inline In-Reply-To: <20180316152120.13199-7-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 Fri, Mar 16, 2018 at 04:21:09PM +0100, Jens Freimann wrote: [...] > diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c > index 2636490..ee291b3 100644 > --- a/drivers/net/virtio/virtio_user_ethdev.c > +++ b/drivers/net/virtio/virtio_user_ethdev.c > @@ -278,6 +278,8 @@ > VIRTIO_USER_ARG_QUEUE_SIZE, > #define VIRTIO_USER_ARG_INTERFACE_NAME "iface" > VIRTIO_USER_ARG_INTERFACE_NAME, > +#define VIRTIO_USER_ARG_VERSION_1_1 "version_1_1" > + VIRTIO_USER_ARG_VERSION_1_1, Maybe we can enable packed-ring by default for virtio-user. If we really need a flag to enable it, the devarg name should be packed_ring instead of version_1_1. Thanks