From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 6CBBB8BA for ; Thu, 7 Aug 2014 16:20:01 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 07 Aug 2014 07:22:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,818,1400050800"; d="scan'208";a="555175431" Received: from fmsmsx105.amr.corp.intel.com ([10.19.9.36]) by orsmga001.jf.intel.com with ESMTP; 07 Aug 2014 07:22:32 -0700 Received: from fmsmsx152.amr.corp.intel.com (10.19.17.221) by FMSMSX105.amr.corp.intel.com (10.19.9.36) with Microsoft SMTP Server (TLS) id 14.3.123.3; Thu, 7 Aug 2014 07:22:31 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx152.amr.corp.intel.com (10.19.17.221) with Microsoft SMTP Server (TLS) id 14.3.123.3; Thu, 7 Aug 2014 07:22:31 -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:22:30 +0800 From: "Cao, Waterman" To: "Xie, Huawei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v3] lib/librte_vhost: user space vhost driver library Thread-Index: AQHPsMWdfTOEa9dsukmnBAH5qZYbbpvFLcIQ Date: Thu, 7 Aug 2014 14:22:29 +0000 Message-ID: References: <1407254033-23848-1-git-send-email-huawei.xie@intel.com> In-Reply-To: <1407254033-23848-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 v3] lib/librte_vhost: user space vhost driver 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:20:01 -0000 Tested-by: Waterman Cao This patch facilitates integration with DPDK vSwitch, and is ready to integ= rate into DPDK.org. -----Original Message----- >From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Huawei Xie >Sent: Tuesday, August 5, 2014 11:54 PM >To: dev@dpdk.org >Subject: [dpdk-dev] [PATCH v3] lib/librte_vhost: user space vhost driver l= ibrary > >This user space vhost library is provided aiming to facilitate integration= with DPDK accelerated vswitch.=20 > >Huawei Xie (1): > vhost library support to facilitate integration with DPDK accelerated vs= witch. > > 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 +++++++++++++++++++++= +++++ > 11 files changed, 2287 insertions(+) > create mode 100644 lib/librte_vhost/Makefile create mode 100644 lib/libr= te_vhost/eventfd_link/Makefile > create mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.c > create mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.h > create mode 100644 lib/librte_vhost/rte_virtio_net.h create mode 100644 = lib/librte_vhost/vhost-net-cdev.c create mode 100644 lib/librte_vhost/vhos= t-net-cdev.h create mode 100644 lib/librte_vhost/vhost_rxtx.c create mode= 100644 lib/librte_vhost/virtio-net.c > >-- >1.8.1.4 >