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 751BF312 for ; Tue, 30 Sep 2014 04:00:30 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 29 Sep 2014 19:04:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,624,1406617200"; d="scan'208";a="610618691" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga002.jf.intel.com with ESMTP; 29 Sep 2014 19:07:07 -0700 Received: from fmsmsx157.amr.corp.intel.com (10.18.116.73) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 29 Sep 2014 19:07:07 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by FMSMSX157.amr.corp.intel.com (10.18.116.73) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 29 Sep 2014 19:07:06 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.203]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.204]) with mapi id 14.03.0195.001; Tue, 30 Sep 2014 10:07:05 +0800 From: "Xie, Huawei" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH v5 01/11] lib/librte_vhost: move src files in vhost example to vhost lib directory Thread-Index: AQHP3B1xOAV7xfhLlkSDlCwNS1tLRpwY7gog Date: Tue, 30 Sep 2014 02:07:04 +0000 Message-ID: References: <1411724758-27488-1-git-send-email-huawei.xie@intel.com> <1411724758-27488-2-git-send-email-huawei.xie@intel.com> <18610886.dgDN8rLRaO@xps13> In-Reply-To: <18610886.dgDN8rLRaO@xps13> 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: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v5 01/11] lib/librte_vhost: move src files in vhost example to vhost lib directory 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: Tue, 30 Sep 2014 02:00:30 -0000 > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Tuesday, September 30, 2014 3:42 AM > To: Xie, Huawei > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v5 01/11] lib/librte_vhost: move src files= in vhost > example to vhost lib directory >=20 > Hi Huawei, >=20 > 2014-09-26 17:45, Huawei Xie: > > "git mv examples/vhost lib/librte_vhost" > > This is a purely src file move, without any modification. > > Subsequent patch will transform those src files to a vhost library. > > > > Signed-off-by: Huawei Xie > > --- > > examples/vhost/Makefile | 60 - > > examples/vhost/eventfd_link/Makefile | 39 - > > examples/vhost/eventfd_link/eventfd_link.c | 205 -- > > examples/vhost/eventfd_link/eventfd_link.h | 79 - > > examples/vhost/libvirt/qemu-wrap.py | 367 --- > > examples/vhost/main.c | 3725 ------------------= -------- > > examples/vhost/main.h | 86 - > > examples/vhost/vhost-net-cdev.c | 367 --- > > examples/vhost/vhost-net-cdev.h | 83 - > > examples/vhost/virtio-net.c | 1165 -------- > > examples/vhost/virtio-net.h | 161 -- > > 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/libvirt/qemu-wrap.py | 367 +++ > > lib/librte_vhost/main.c | 3725 ++++++++++++++++++= ++++++++ > > lib/librte_vhost/main.h | 86 + > > lib/librte_vhost/vhost-net-cdev.c | 367 +++ > > lib/librte_vhost/vhost-net-cdev.h | 83 + > > lib/librte_vhost/virtio-net.c | 1165 ++++++++ > > lib/librte_vhost/virtio-net.h | 161 ++ > > 21 files changed, 6277 insertions(+), 6337 deletions(-) >=20 > In patch 2, you're using main.c to create vhost_rxtx.c. > So it would be clearer to rename it in this patch 1. >=20 Rename it to vhost_rxtx.c? > -- > Thomas