From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 839A9590B for ; Fri, 29 Aug 2014 04:01:44 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 28 Aug 2014 18:57:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,421,1406617200"; d="scan'208";a="583206366" Received: from fmsmsx103.amr.corp.intel.com ([10.19.9.34]) by fmsmga001.fm.intel.com with ESMTP; 28 Aug 2014 19:05:54 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by FMSMSX103.amr.corp.intel.com (10.19.9.34) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 28 Aug 2014 19:05:54 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 28 Aug 2014 19:05:54 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.198]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.219]) with mapi id 14.03.0195.001; Fri, 29 Aug 2014 10:05:52 +0800 From: "Xie, Huawei" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH v3] lib/librte_vhost: vhost library support to facilitate integration with DPDK accelerated vswitch. Thread-Index: AQHPwwLnZX523JG+v0SbntsPH7/0tZvmuuKw Date: Fri, 29 Aug 2014 02:05:51 +0000 Message-ID: References: <1407254033-23848-1-git-send-email-huawei.xie@intel.com> <1407254033-23848-2-git-send-email-huawei.xie@intel.com> <2341626.4ghOyc4mVt@xps13> In-Reply-To: <2341626.4ghOyc4mVt@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v3] lib/librte_vhost: vhost library support to facilitate integration with DPDK accelerated vswitch. 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: Fri, 29 Aug 2014 02:01:45 -0000 > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Friday, August 29, 2014 4:16 AM > To: Xie, Huawei > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] lib/librte_vhost: vhost library suppor= t to > facilitate integration with DPDK accelerated vswitch. >=20 > > config/common_linuxapp | 7 + > > lib/Makefile | 1 + > > lib/librte_vhost/Makefile | 48 ++ > > lib/librte_vhost/eventfd_link/Makefile | 39 + > > lib/librte_vhost/eventfd_link/eventfd_link.c | 194 +++++ > > lib/librte_vhost/eventfd_link/eventfd_link.h | 40 + > > lib/librte_vhost/rte_virtio_net.h | 192 +++++ > > lib/librte_vhost/vhost-net-cdev.c | 363 ++++++++++ > > lib/librte_vhost/vhost-net-cdev.h | 109 +++ > > lib/librte_vhost/vhost_rxtx.c | 292 ++++++++ > > lib/librte_vhost/virtio-net.c | 1002 ++++++++++++++++++= ++++++++ >=20 > It would help if you made a first patch to move existing code, > another patch to convert it into a lib, and a last one for > the new example. > So it would show how you transform the old example code and > would be easier to review. >=20 > Thanks > -- > Thomas My original order is first patch to add a new lib but not turned on,=20 another patch to remove the old example, and the third patch to=20 add the new example.=20 I am preparing new patch sets, merging the mergable feature, will=20 follow the suggested order. -huawei