From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 45A095682 for ; Mon, 26 Oct 2015 04:08:17 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 25 Oct 2015 20:08:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,199,1444719600"; d="scan'208";a="835324402" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.66.49]) by fmsmga002.fm.intel.com with ESMTP; 25 Oct 2015 20:08:13 -0700 Date: Mon, 26 Oct 2015 11:09:19 +0800 From: Yuanhan Liu To: "Xie, Huawei" Message-ID: <20151026030919.GX3115@yliu-dev.sh.intel.com> References: <1445399294-18826-1-git-send-email-yuanhan.liu@linux.intel.com> <1445517356-19780-1-git-send-email-yuanhan.liu@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "dev@dpdk.org" , "marcel@redhat.com" , "Michael S. Tsirkin" Subject: Re: [dpdk-dev] [PATCH v8 0/8] vhost-user multiple queues enabling X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 03:08:17 -0000 On Mon, Oct 26, 2015 at 01:36:10AM +0000, Xie, Huawei wrote: > On 10/22/2015 8:35 PM, Yuanhan Liu wrote: > > This patch set enables vhost-user multiple queue feature. > > > > > > --- > > Changchun Ouyang (3): > > vhost: rxtx: use queue id instead of constant ring index > > virtio: fix deadloop due to reading virtio_net_config incorrectly > > vhost: add VHOST_USER_SET_VRING_ENABLE message > > > > Yuanhan Liu (5): > > vhost-user: add protocol features support > > vhost-user: add VHOST_USER_GET_QUEUE_NUM message > > vhost: vring queue setup for multiple queue support > > vhost-user: enable vhost-user multiple queue > > doc: update release note for vhost-user mq support > > > > doc/guides/rel_notes/release_2_2.rst | 4 + > > drivers/net/virtio/virtio_ethdev.c | 16 ++- > > lib/librte_vhost/rte_virtio_net.h | 13 +- > > lib/librte_vhost/vhost_rxtx.c | 53 +++++--- > > lib/librte_vhost/vhost_user/vhost-net-user.c | 25 +++- > > lib/librte_vhost/vhost_user/vhost-net-user.h | 4 + > > lib/librte_vhost/vhost_user/virtio-net-user.c | 86 ++++++++++--- > > lib/librte_vhost/vhost_user/virtio-net-user.h | 10 ++ > > lib/librte_vhost/virtio-net.c | 168 ++++++++++++++++---------- > > 9 files changed, 275 insertions(+), 104 deletions(-) > > > > Btw, Changchun's patch: "virtio: fix deadloop due to reading > virtio_net_config incorrectly" isn't included, so probably, you could > remove this from this cover-letter. What do you mean by "isn't included"? [PATCH v8 5/8] virtio: fix deadloop due to reading virtio_net_config incorrectly > Acked-by: Huawei Xie Thanks. --yliu