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 A1928593E for ; Tue, 19 Aug 2014 14:32:47 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 19 Aug 2014 05:36:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,893,1400050800"; d="scan'208";a="578721045" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by fmsmga001.fm.intel.com with ESMTP; 19 Aug 2014 05:36:12 -0700 Received: from irsmsx154.ger.corp.intel.com (163.33.192.96) by IRSMSX101.ger.corp.intel.com (163.33.3.153) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 19 Aug 2014 13:35:48 +0100 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.194]) by IRSMSX154.ger.corp.intel.com ([169.254.12.233]) with mapi id 14.03.0195.001; Tue, 19 Aug 2014 13:35:48 +0100 From: "Tahhan, Maryam" To: "Xie, Huawei" , "Cao, Waterman" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/3] vhost example based on user space vhost library. Thread-Index: AQHPskwJKDFq66jsREa660i2EU3JQJvXsFgggAACpmCAADwLgA== Date: Tue, 19 Aug 2014 12:35:47 +0000 Message-ID: <1A27633A6DA49C4A92FCD5D4312DBF53697B340B@IRSMSX101.ger.corp.intel.com> References: <1407254286-23972-1-git-send-email-huawei.xie@intel.com> <1A27633A6DA49C4A92FCD5D4312DBF53697B22BA@IRSMSX101.ger.corp.intel.com> In-Reply-To: Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH 0/3] vhost example based on user space vhost library. 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: Tue, 19 Aug 2014 12:32:48 -0000 Thanks I was looking at the wrong version of the patch :( -----Original Message----- From: Xie, Huawei = Sent: Tuesday, August 19, 2014 10:07 AM To: Tahhan, Maryam; Cao, Waterman; dev@dpdk.org Cc: Long, Thomas Subject: RE: [dpdk-dev] [PATCH 0/3] vhost example based on user space vhost= library. Hi Maryam: This patch removes eventfd kernel module from example. = Qemu user space vhost support is within progress. This is our existing vhos= t implementation. With the new implementation, there should be no or minor = change to the library API. BR. -huawei > -----Original Message----- > From: Tahhan, Maryam > Sent: Tuesday, August 19, 2014 4:51 PM > To: Cao, Waterman; Xie, Huawei; dev@dpdk.org > Cc: Long, Thomas > Subject: RE: [dpdk-dev] [PATCH 0/3] vhost example based on user space = > vhost library. > = > Hi > I see the eventfd module is still included... is this to support = > existing vhost implementations? Is Qemu's vhost-user supported? > = > Thanks > Maryam > = > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Cao, Waterman > Sent: Thursday, August 7, 2014 3:29 PM > To: Xie, Huawei; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/3] vhost example based on user space = > vhost library. > = > Tested-by: Waterman Cao This patch = > implements a simple vswitch by user vhost library, and is ready to integr= ate into DPDK.org. > = > -----Original Message----- > >From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Huawei Xie > >Sent: Tuesday, August 5, 2014 11:58 PM > >To: dev@dpdk.org > >Subject: [dpdk-dev] [PATCH 0/3] vhost example based on user space = > >vhost > library. > > > >This vhost example implements a simple vswitch using DPDK user space = > >vhost > library(lib/librte_vhost) and VMDQ to demonstrate vhost's performance. > >- Each virtio device is bound to a VMDQ pool and each pool is = > >assigned the > mac/vlan of the virtio device. > >- Packets arriving at a pool after l2 classifier will be moved to the vi= rtio device. > >- Packets whose destination is a local virtio device will be = > >delivered either by > a)software switching mode b)hardware l2 switch. > >- zero copy is supported and could be configured through command line. > > > >Huawei Xie (3): > > remove old vhost example > > add lib/librte_vhost support in mk/rte.app.mk > > add new vhost example > > > > examples/vhost/Makefile | 10 +- > > examples/vhost/eventfd_link/Makefile | 39 - > > examples/vhost/eventfd_link/eventfd_link.c | 205 ----- > > examples/vhost/eventfd_link/eventfd_link.h | 79 -- > > examples/vhost/libvirt/qemu-wrap.py | 5 +- > > examples/vhost/main.c | 1101 +++++++++++++--------= ----- > > examples/vhost/main.h | 85 +- > > examples/vhost/vhost-net-cdev.c | 367 --------- > > examples/vhost/vhost-net-cdev.h | 83 -- > > examples/vhost/virtio-net.c | 1165 ---------------------= ------- > > examples/vhost/virtio-net.h | 147 ---- > > mk/rte.app.mk | 5 + > > 12 files changed, 585 insertions(+), 2706 deletions(-) delete mode > > 100644 examples/vhost/eventfd_link/Makefile > > delete mode 100644 examples/vhost/eventfd_link/eventfd_link.c > > delete mode 100644 examples/vhost/eventfd_link/eventfd_link.h > > delete mode 100644 examples/vhost/vhost-net-cdev.c delete mode = > > 100644 examples/vhost/vhost-net-cdev.h delete mode 100644 = > > examples/vhost/virtio-net.c delete mode 100644 = > > examples/vhost/virtio-net.h > > > >-- > >1.8.1.4 > > -------------------------------------------------------------- Intel Shannon Limited Registered in Ireland Registered Office: Collinstown Industrial Park, Leixlip, County Kildare Registered Number: 308263 Business address: Dromore House, East Park, Shannon, Co. Clare This e-mail and any attachments may contain confidential material for the s= ole use of the intended recipient(s). Any review or distribution by others = is strictly prohibited. If you are not the intended recipient, please conta= ct the sender and delete all copies.