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 C439F959 for ; Fri, 18 Jul 2014 12:01:59 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 18 Jul 2014 03:02:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,684,1400050800"; d="scan'208";a="545295376" Received: from fmsmsx107.amr.corp.intel.com ([10.19.9.54]) by orsmga001.jf.intel.com with ESMTP; 18 Jul 2014 03:02:57 -0700 Received: from fmsmsx101.amr.corp.intel.com (10.19.9.52) by FMSMSX107.amr.corp.intel.com (10.19.9.54) with Microsoft SMTP Server (TLS) id 14.3.123.3; Fri, 18 Jul 2014 03:02:57 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX101.amr.corp.intel.com (10.19.9.52) with Microsoft SMTP Server (TLS) id 14.3.123.3; Fri, 18 Jul 2014 03:02:56 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.52]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.204]) with mapi id 14.03.0123.003; Fri, 18 Jul 2014 18:02:54 +0800 From: "Xie, Huawei" To: "Xie, Huawei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2] user space vhost driver library Thread-Index: AQHPom6tfdNa1KO4MEKfCB56J9yzV5ulmdlA Date: Fri, 18 Jul 2014 10:02:53 +0000 Message-ID: References: <1405677381-14959-1-git-send-email-huawei.xie@intel.com> In-Reply-To: <1405677381-14959-1-git-send-email-huawei.xie@intel.com> 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 Subject: Re: [dpdk-dev] [PATCH v2] 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: Fri, 18 Jul 2014 10:02:00 -0000 Merged two patches in previous patch set into 1.=20 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Huawei Xie > Sent: Friday, July 18, 2014 5:56 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2] user space vhost driver library >=20 > This user space vhost library is based off user space vhost example and a= ims to > provide same API for different vhost implementations. This implementation > includes user space vhost cuse driver, kernel module for eventfd proxy an= d vhost > enqueue/dequeue functionalities. >=20 > Huawei Xie (1): > vhost library support to facilitate integration with 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 | 205 ++++++ > lib/librte_vhost/eventfd_link/eventfd_link.h | 79 ++ > lib/librte_vhost/rte_virtio_net.h | 192 +++++ > lib/librte_vhost/vhost-net-cdev.c | 363 ++++++++++ > lib/librte_vhost/vhost-net-cdev.h | 112 +++ > lib/librte_vhost/vhost_rxtx.c | 292 ++++++++ > lib/librte_vhost/virtio-net.c | 1002 ++++++++++++++++++++= ++++++ > 11 files changed, 2340 insertions(+) > create mode 100644 lib/librte_vhost/Makefile > create mode 100644 lib/librte_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/vhost-net-cdev.h > create mode 100644 lib/librte_vhost/vhost_rxtx.c > create mode 100644 lib/librte_vhost/virtio-net.c >=20 > -- > 1.8.1.4