From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 49C821BBE for ; Wed, 24 Aug 2016 09:30:28 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga105.jf.intel.com with ESMTP; 24 Aug 2016 00:30:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,569,1464678000"; d="scan'208";a="752811296" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by FMSMGA003.fm.intel.com with ESMTP; 24 Aug 2016 00:30:27 -0700 Received: from fmsmsx115.amr.corp.intel.com (10.18.116.19) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 24 Aug 2016 00:30:26 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx115.amr.corp.intel.com (10.18.116.19) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 24 Aug 2016 00:30:26 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.147]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.116]) with mapi id 14.03.0248.002; Wed, 24 Aug 2016 15:30:24 +0800 From: "Xu, Qian Q" To: Yuanhan Liu , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/7] vhost: vhost-cuse removal and code path refactoring Thread-Index: AQHR+Sw4rlNsO1KUU0GGQKQ01QG/gaBXv+XA Date: Wed, 24 Aug 2016 07:30:23 +0000 Message-ID: <82F45D86ADE5454A95A89742C8D1410E03322FAB@shsmsx102.ccr.corp.intel.com> References: <1471510123-4984-1-git-send-email-yuanhan.liu@linux.intel.com> In-Reply-To: <1471510123-4984-1-git-send-email-yuanhan.liu@linux.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 0/7] vhost: vhost-cuse removal and code path refactoring 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, 24 Aug 2016 07:30:28 -0000 I think you need also update vhost sample guide and vhost library in the pr= ogrammer guide for this release.=20 -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yuanhan Liu Sent: Thursday, August 18, 2016 4:49 PM To: dev@dpdk.org Cc: Yuanhan Liu Subject: [dpdk-dev] [PATCH 0/7] vhost: vhost-cuse removal and code path ref= actoring The first patch removes the vhost-cuse (see following link for the deprecat= e note) http://dpdk.org/ml/archives/dev/2016-July/044080.html After the removal, there is no reason to keep the vhost_user sub source dir= any more. This also brings a chance to rename all those files in a more pr= oper way (see patch 3 for details). --- Yuanhan Liu (7): vhost: remove vhost-cuse vhost: remove sub source dir vhost: refactor source code structure vhost: fold common message handlers vhost: unify function names vhost: get device once vhost: simplify features set/get config/common_base | 6 +- lib/librte_vhost/Makefile | 13 +- lib/librte_vhost/eventfd_link/Makefile | 41 - lib/librte_vhost/eventfd_link/eventfd_link.c | 277 ------- lib/librte_vhost/eventfd_link/eventfd_link.h | 94 --- lib/librte_vhost/{vhost_user =3D> }/fd_man.c | 0 lib/librte_vhost/{vhost_user =3D> }/fd_man.h | 0 lib/librte_vhost/libvirt/qemu-wrap.py | 387 --------- .../{vhost_user/vhost-net-user.c =3D> socket.c} | 209 +---- lib/librte_vhost/vhost.c | 409 +++++++++ lib/librte_vhost/{vhost-net.h =3D> vhost.h} | 24 +- lib/librte_vhost/vhost_cuse/eventfd_copy.c | 104 --- lib/librte_vhost/vhost_cuse/eventfd_copy.h | 45 - lib/librte_vhost/vhost_cuse/vhost-net-cdev.c | 431 ---------- lib/librte_vhost/vhost_cuse/virtio-net-cdev.c | 433 ---------- lib/librte_vhost/vhost_cuse/virtio-net-cdev.h | 56 -- lib/librte_vhost/vhost_user.c | 917 +++++++++++++++++= ++++ .../{vhost_user/vhost-net-user.h =3D> vhost_user.h} | 17 +- lib/librte_vhost/vhost_user/virtio-net-user.c | 470 ----------- lib/librte_vhost/vhost_user/virtio-net-user.h | 62 -- lib/librte_vhost/virtio-net.c | 847 -----------------= -- lib/librte_vhost/{vhost_rxtx.c =3D> virtio_net.c} | 4 +- mk/rte.app.mk | 3 - 23 files changed, 1367 insertions(+), 3482 deletions(-) delete mode 10064= 4 lib/librte_vhost/eventfd_link/Makefile delete mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.c delete mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.h rename lib/librte_vhost/{vhost_user =3D> }/fd_man.c (100%) rename lib/lib= rte_vhost/{vhost_user =3D> }/fd_man.h (100%) delete mode 100755 lib/librte= _vhost/libvirt/qemu-wrap.py rename lib/librte_vhost/{vhost_user/vhost-net-user.c =3D> socket.c} (71%) = create mode 100644 lib/librte_vhost/vhost.c rename lib/librte_vhost/{vhos= t-net.h =3D> vhost.h} (92%) delete mode 100644 lib/librte_vhost/vhost_cuse= /eventfd_copy.c delete mode 100644 lib/librte_vhost/vhost_cuse/eventfd_copy.h delete mode 100644 lib/librte_vhost/vhost_cuse/vhost-net-cdev.c delete mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.c delete mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.h create mode 100644 lib/librte_vhost/vhost_user.c rename lib/librte_vhost/= {vhost_user/vhost-net-user.h =3D> vhost_user.h} (87%) delete mode 100644 l= ib/librte_vhost/vhost_user/virtio-net-user.c delete mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.h delete mode 100644 lib/librte_vhost/virtio-net.c rename lib/librte_vhost/= {vhost_rxtx.c =3D> virtio_net.c} (99%) -- 1.9.0