From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id 52E081F7 for ; Mon, 29 Sep 2014 21:35:14 +0200 (CEST) Received: by mail-wi0-f182.google.com with SMTP id ex7so2460373wid.3 for ; Mon, 29 Sep 2014 12:41:51 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=4lXIwoKwV609g+1j5GZ8UPlIuSMXfXNBYDdjZ39X+H8=; b=IqI3Bm95btPiQXHB2Iv0HhfBb6vpXt/K0bIJ7eSmKXPfQhuuLh+kpCL7UVVgIC8QEN uowR1kDUMqNWEB58H3dYMtNmIYY6E85ZY8GgiI3Ubn1X+0Pm87EPPoLgcTuKurEns7QV ATSoSHU8sL2pc0hRRRURGT5JqtSCnbdp8LPfLCbL8H21uH4LVt+YB1M2JAUEQpqTXP/d SFho7v1RonPFHKQzxLgErzOX94V2v0ivdAL39OV8gmmS/OTRzUkOvQxEV9v3i42xkzI/ bTemReYaKUNVszZ8rqiFgx72h/g79CCVxVtJjcPEUT+u+LcasHpO+Hw0lh9qSqd8RiQ6 SWmw== X-Gm-Message-State: ALoCoQmxCriIA5/3xWx+0m4c3pJkKj6jIrF+0u9EDKmtld5v2MNNoZlbczfkCze/clQUtmufvL4j X-Received: by 10.180.198.10 with SMTP id iy10mr319902wic.10.1412019711452; Mon, 29 Sep 2014 12:41:51 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id nf2sm12725857wic.1.2014.09.29.12.41.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 29 Sep 2014 12:41:50 -0700 (PDT) From: Thomas Monjalon To: Huawei Xie Date: Mon, 29 Sep 2014 21:41:38 +0200 Message-ID: <18610886.dgDN8rLRaO@xps13> Organization: 6WIND User-Agent: KMail/4.13.3 (Linux/3.15.8-1-ARCH; KDE/4.13.3; x86_64; ; ) In-Reply-To: <1411724758-27488-2-git-send-email-huawei.xie@intel.com> References: <1411724758-27488-1-git-send-email-huawei.xie@intel.com> <1411724758-27488-2-git-send-email-huawei.xie@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Mon, 29 Sep 2014 19:35:14 -0000 Hi Huawei, 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(-) 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. -- Thomas