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 6E7EA5A42 for ; Wed, 7 Jan 2015 13:43:13 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 07 Jan 2015 04:43:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,714,1413270000"; d="scan'208";a="665767231" Received: from pgsmsx107.gar.corp.intel.com ([10.221.44.105]) by orsmga002.jf.intel.com with ESMTP; 07 Jan 2015 04:43:10 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX107.gar.corp.intel.com (10.221.44.105) with Microsoft SMTP Server (TLS) id 14.3.195.1; Wed, 7 Jan 2015 20:43:09 +0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.110]) by shsmsx102.ccr.corp.intel.com ([169.254.2.216]) with mapi id 14.03.0195.001; Wed, 7 Jan 2015 20:43:08 +0800 From: "Qiu, Michael" To: "Xie, Huawei" , Tetsuya Mukawa , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH RFC v2 00/12] lib/librte_vhost: vhost-user support Thread-Index: AQHQGCfFxgyUEKrQSUCGlgIDHHiSnQ== Date: Wed, 7 Jan 2015 12:43:07 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E60286CA4D7F@SHSMSX101.ccr.corp.intel.com> References: <1418247477-13920-1-git-send-email-huawei.xie@intel.com> <548E70F6.30807@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 Subject: Re: [dpdk-dev] [PATCH RFC v2 00/12] lib/librte_vhost: vhost-user support 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: Wed, 07 Jan 2015 12:43:15 -0000 On 12/18/2014 1:43 AM, Xie, Huawei wrote:=0A= >=0A= >> -----Original Message-----=0A= >> From: Tetsuya Mukawa [mailto:mukawa@igel.co.jp]=0A= >> Sent: Sunday, December 14, 2014 10:26 PM=0A= >> To: Xie, Huawei; dev@dpdk.org=0A= >> Cc: haifeng.lin@intel.com=0A= >> Subject: Re: [PATCH RFC v2 00/12] lib/librte_vhost: vhost-user support= =0A= >>=0A= >> Hi Xie,=0A= >>=0A= >> I've got warnings from checkpatch.pl.=0A= >> Mostly 'over 80 characters' warnings.=0A= >> (But I know these are come from original vhost-example code sometimes.)= =0A= >>=0A= >> So far, your patches are RFC, so I haven't check these strictly.=0A= > Thanks.=0A= > I try to, but you know sometimes 'over 80 characters' is unavoidable.=0A= =0A= Why unavoidable? I'm very curious :)=0A= =0A= >> Thanks,=0A= >> Tetsuya=0A= >>=0A= >> (2014/12/11 6:37), Huawei Xie wrote:=0A= >>> This patchset refines vhost library to support both vhost-cuse and vhos= t-user.=0A= >>>=0A= >>>=0A= >>> Huawei Xie (12):=0A= >>> create vhost_cuse directory and move vhost-net-cdev.c to vhost_cuse= =0A= >> directory=0A= >>> rename vhost-net-cdev.h as vhost-net.h=0A= >>> move eventfd_copy logic out from virtio-net.c to vhost-net-cdev.c=0A= >>> exact copy of host_memory_map from virtio-net.c to new file=0A= >>> virtio-net-cdev.c=0A= >>> host_memory_map refine: map partial memory of target process into cur= rent=0A= >> process=0A= >>> cuse_set_memory_table is the VHOST_SET_MEMORY_TABLE message=0A= >> handler for cuse=0A= >>> fd management for vhost user=0A= >>> vhost-user support=0A= >>> minor fix=0A= >>> vhost-user memory region map/unmap=0A= >>> kick/callfd fix=0A= >>> cleanup when vhost user connection is closed=0A= >>>=0A= >>> lib/librte_vhost/Makefile | 5 +-=0A= >>> lib/librte_vhost/rte_virtio_net.h | 2 +=0A= >>> lib/librte_vhost/vhost-net-cdev.c | 389 ------------------= ----=0A= >>> lib/librte_vhost/vhost-net-cdev.h | 113 -------=0A= >>> lib/librte_vhost/vhost-net.h | 117 +++++++=0A= >>> lib/librte_vhost/vhost_cuse/vhost-net-cdev.c | 452=0A= >> ++++++++++++++++++++++++++=0A= >>> lib/librte_vhost/vhost_cuse/virtio-net-cdev.c | 349 ++++++++++++++++++= ++=0A= >>> lib/librte_vhost/vhost_cuse/virtio-net-cdev.h | 45 +++=0A= >>> lib/librte_vhost/vhost_rxtx.c | 2 +-=0A= >>> lib/librte_vhost/vhost_user/fd_man.c | 205 ++++++++++++=0A= >>> lib/librte_vhost/vhost_user/fd_man.h | 64 ++++=0A= >>> lib/librte_vhost/vhost_user/vhost-net-user.c | 423=0A= >> ++++++++++++++++++++++++=0A= >>> lib/librte_vhost/vhost_user/vhost-net-user.h | 107 ++++++=0A= >>> lib/librte_vhost/vhost_user/virtio-net-user.c | 313 ++++++++++++++++++= =0A= >>> lib/librte_vhost/vhost_user/virtio-net-user.h | 49 +++=0A= >>> lib/librte_vhost/virtio-net.c | 394 ++----------------= ----=0A= >>> lib/librte_vhost/virtio-net.h | 43 +++=0A= >>> 17 files changed, 2199 insertions(+), 873 deletions(-)=0A= >>> delete mode 100644 lib/librte_vhost/vhost-net-cdev.c=0A= >>> delete mode 100644 lib/librte_vhost/vhost-net-cdev.h=0A= >>> create mode 100644 lib/librte_vhost/vhost-net.h=0A= >>> create mode 100644 lib/librte_vhost/vhost_cuse/vhost-net-cdev.c=0A= >>> create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.c=0A= >>> create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.h=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/fd_man.c=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/fd_man.h=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.c=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.h=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.c=0A= >>> create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.h=0A= >>> create mode 100644 lib/librte_vhost/virtio-net.h=0A= >>>=0A= >=0A= =0A=