From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 4E31B8BA for ; Thu, 7 Aug 2014 16:26:45 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 07 Aug 2014 07:29:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,818,1400050800"; d="scan'208";a="581447726" Received: from fmsmsx106.amr.corp.intel.com ([10.19.9.37]) by fmsmga002.fm.intel.com with ESMTP; 07 Aug 2014 07:29:04 -0700 Received: from FMSMSX109.amr.corp.intel.com (10.18.116.9) by FMSMSX106.amr.corp.intel.com (10.19.9.37) with Microsoft SMTP Server (TLS) id 14.3.123.3; Thu, 7 Aug 2014 07:29:04 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx109.amr.corp.intel.com (10.18.116.9) with Microsoft SMTP Server (TLS) id 14.3.123.3; Thu, 7 Aug 2014 07:29:04 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.75]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.135]) with mapi id 14.03.0195.001; Thu, 7 Aug 2014 22:29:02 +0800 From: "Cao, Waterman" To: "Xie, Huawei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/3] vhost example based on user space vhost library. Thread-Index: AQHPsMYtqy4zWJ0ecUugjP/wncs0o5vFNN+Q Date: Thu, 7 Aug 2014 14:29:02 +0000 Message-ID: References: <1407254286-23972-1-git-send-email-huawei.xie@intel.com> In-Reply-To: <1407254286-23972-1-git-send-email-huawei.xie@intel.com> Accept-Language: en-GB, 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 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: Thu, 07 Aug 2014 14:26:45 -0000 Tested-by: Waterman Cao This patch implements a simple vswitch by user vhost library, and is ready = to integrate 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 li= brary. > >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 virt= io device. >- Packets whose destination is a local virtio device will be delivered eit= her 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 10064= 4 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 ex= amples/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 >