From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by dpdk.org (Postfix) with ESMTP id 277E51F7 for ; Mon, 29 Sep 2014 21:49:07 +0200 (CEST) Received: by mail-wi0-f172.google.com with SMTP id ex7so2420913wid.17 for ; Mon, 29 Sep 2014 12:55:44 -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=GCOZ/pQWfzKBR+quNtMKXJ1rSEgAAPqitXqbFY2exBE=; b=OYbM22GySHgbKiqmrnaFJ1wgJeRQRSiPX551gyGoUTe3SZ8LJUvvlBxE5bHlBTj5/6 TeBfAJQhiM92eA6188uaFaBAe6sKEXxMfZDtGIXHu/H0eeRqCewkJ2j2yzAqn1lp7gLR eTrfDVrIzwZ+IuwuD/sZR37X+RwEkFSkhSaOcr/2dt5fjHCC+sNjexm8SeLAq8mQx9Yu 1fCq2yCjVqdxaIRpeiYC5kZD2hV+iMhsfxFQaMHWRr+Doxmfcq/WAKAsojUPGK/2LZba yFAohX+DSzdaH21cXIKblc2+2g/cJ7gm2P4wVXIB2yp9rkpIYESCuUlrUqXHg3fGzyd+ 5ANQ== X-Gm-Message-State: ALoCoQnbf2EKvmWAskoHlQ8vDwmo2IV+kVxJA8HqaSQsIhUPOajnaf7qsNHt/DfuzbOi8O0IgoXh X-Received: by 10.194.88.99 with SMTP id bf3mr47216860wjb.16.1412020544476; Mon, 29 Sep 2014 12:55:44 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id pc6sm16761855wjb.43.2014.09.29.12.55.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 29 Sep 2014 12:55:43 -0700 (PDT) From: Thomas Monjalon To: Huawei Xie Date: Mon, 29 Sep 2014 21:55:31 +0200 Message-ID: <1774915.lz9MF51vUa@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-3-git-send-email-huawei.xie@intel.com> References: <1411724758-27488-1-git-send-email-huawei.xie@intel.com> <1411724758-27488-3-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 02/11] lib/librte_vhost: refactor vhost lib for subsequent transform 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:49:07 -0000 2014-09-26 17:45, Huawei Xie: > This patch does simple split of the original vhost example source > files in vhost lib directory. > vhost rx/tx functions virtio_dev_rx/tx are copied from main.c to > new file vhost_rxtx.c and license header is added. > main.c and main.h are removed and will be copied to new vhost > example in subsequent patch. > virtio-net.h is renamed to rte_virtio_net.h as API header file. > > Signed-off-by: Huawei Xie You are removing functions for mergeable buffer feature. Please keep it instead of re-adding it later. -- Thomas