From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 510802E89 for ; Fri, 7 Nov 2014 04:25:51 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 06 Nov 2014 19:33:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,329,1413270000"; d="scan'208";a="603899515" Received: from pgsmsx103.gar.corp.intel.com ([10.221.44.82]) by orsmga001.jf.intel.com with ESMTP; 06 Nov 2014 19:35:18 -0800 Received: from pgsmsx105.gar.corp.intel.com (10.221.44.96) by PGSMSX103.gar.corp.intel.com (10.221.44.82) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 7 Nov 2014 11:33:09 +0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by pgsmsx105.gar.corp.intel.com (10.221.44.96) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 7 Nov 2014 11:33:09 +0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.202]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.3]) with mapi id 14.03.0195.001; Fri, 7 Nov 2014 11:33:08 +0800 From: "Xie, Huawei" To: Tetsuya Mukawa , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [RFC PATCH 0/7] lib/librte_vhost: Add vhost-user extension Thread-Index: AQHP+bMhVcO2Y3OT6kC2u+D8NwdHx5xUgt+g Date: Fri, 7 Nov 2014 03:33:08 +0000 Message-ID: References: <1415272471-3299-1-git-send-email-mukawa@igel.co.jp> In-Reply-To: <1415272471-3299-1-git-send-email-mukawa@igel.co.jp> 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: "nakajima.yoshihiro@lab.ntt.co.jp" , "masutani.hitoshi@lab.ntt.co.jp" Subject: Re: [dpdk-dev] [RFC PATCH 0/7] lib/librte_vhost: Add vhost-user extension 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, 07 Nov 2014 03:25:51 -0000 Tetsuya: Will do careful review.=20 You send all the patches including vhost-user implementation, seems I don't= have to send mine, :). When do you plan to send formal patch? > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Tetsuya Mukawa > Sent: Thursday, November 06, 2014 4:14 AM > To: dev@dpdk.org > Cc: nakajima.yoshihiro@lab.ntt.co.jp; masutani.hitoshi@lab.ntt.co.jp > Subject: [dpdk-dev] [RFC PATCH 0/7] lib/librte_vhost: Add vhost-user exte= nsion >=20 > Hi Xie, >=20 > Here are RFC patches to add vhost-user extension to librte_vhost. >=20 > It seems now you are merging a patch that fixes coding style of > librte_vhost. > Unfortunately my patches based on latest tree, so I will submit > again after your patch is acked. > Because of this, I haven't check coding style strictly. When I > rebase on your new patch, I will check coding style too. >=20 > Anyway, could you please check patches? >=20 > Thanks, > Tetsuya >=20 > Tetsuya Mukawa (7): > lib/librte_vhost: Fix host_memory_map() to handle various memory > regions > lib/librte_vhost: Add an abstraction layer for vhost backends > lib/librte_vhost: Add an abstraction layer tointerpret messages > lib/librte_vhost: Move vhost vhost-cuse device list and accessor > functions > lib/librte_vhost: Add a vhost session abstraction > lib/librte_vhost: Add vhost-cuse/user specific initialization > lib/librte_vhost: Add vhost-user implementation >=20 > lib/librte_vhost/Makefile | 2 +- > lib/librte_vhost/rte_virtio_net.h | 49 ++- > lib/librte_vhost/vhost-net-cdev.c | 29 +- > lib/librte_vhost/vhost-net-cdev.h | 113 ------- > lib/librte_vhost/vhost-net-user.c | 541 ++++++++++++++++++++++++++++++ > lib/librte_vhost/vhost-net.c | 132 ++++++++ > lib/librte_vhost/vhost-net.h | 127 +++++++ > lib/librte_vhost/vhost_rxtx.c | 2 +- > lib/librte_vhost/virtio-net-cdev.c | 624 > ++++++++++++++++++++++++++++++++++ > lib/librte_vhost/virtio-net-user.c | 410 +++++++++++++++++++++++ > lib/librte_vhost/virtio-net.c | 669 ++++++++-----------------------= ------ > 11 files changed, 2032 insertions(+), 666 deletions(-) > delete mode 100644 lib/librte_vhost/vhost-net-cdev.h > create mode 100644 lib/librte_vhost/vhost-net-user.c > create mode 100644 lib/librte_vhost/vhost-net.c > create mode 100644 lib/librte_vhost/vhost-net.h > create mode 100644 lib/librte_vhost/virtio-net-cdev.c > create mode 100644 lib/librte_vhost/virtio-net-user.c >=20 > -- > 1.9.1