From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wr0-f176.google.com (mail-wr0-f176.google.com
 [209.85.128.176]) by dpdk.org (Postfix) with ESMTP id 08C4B591E
 for <dev@dpdk.org>; Mon, 27 Feb 2017 14:50:55 +0100 (CET)
Received: by mail-wr0-f176.google.com with SMTP id u48so2862854wrc.0
 for <dev@dpdk.org>; Mon, 27 Feb 2017 05:50:55 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:user-agent:in-reply-to
 :references:mime-version:content-transfer-encoding;
 bh=no0kHDSY4UwW6suzpsiifPbY4IrjL2XdQClFmo7ppCg=;
 b=olNVafQvswzSPpKvByCYXicF12BRbP/1WA7A5RH2Djl3Oxt0COOW6vmzs0aVGJ9gRR
 3ZrUpTUNOT0gSB0Dbz9aWpwoLGwEDEOlBq8V5fHcd+lGUUlLQksNnoGQKxMPIvVl+yoz
 HBC8bPao0zqDOkYcGyYmK2Yb6+E71Jiac2LW+ZGl9DW4n+l1yz0xDBvbB5TWweD17GYm
 z0lpXmH6/sxSJOwhE2wL9FN+T2KYQkho0MZZrZrMdZ4umycmh69CouAgllNVSuO4kGCw
 EXBGRdImspxaLnznbfY1jSB6AbHqHYHkcCUXUcrca69MMTyhEk1uj+TCmvmS157/D6DY
 hiVQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding;
 bh=no0kHDSY4UwW6suzpsiifPbY4IrjL2XdQClFmo7ppCg=;
 b=F8zVOGyGtV6s61zWwgi90kg7wc/MC8xIW8cdYIdStl9rSg+SCUhhEaVDH1bJY4Zzbv
 QmIiu6m3bfwtGE4dCSGwTjPQVRO+UL+vU1vS3ShTeo5e/FqtDGfRsxYUQNTRZ974CYbU
 oUBLa90x5JuGUwrycGU9UHTrEIduYUV3ZUyjqYTexbMUToW9QiDpboocdH1UAd/4MfqM
 8Loree6AIfX1anwvzRlpx09cVzj3CeuPANgfI7fapUSh3wHCQV5b+PG2llY3j/qOXtw3
 1QSyonmaxQ8zklTQT5W0JkqkpKekhUdDIOR3UUwEgMtjdKAJuOaeA+5O7SjRXpLGuzHD
 6GCA==
X-Gm-Message-State: AMke39mqN67JkqbcJudLZa+RjWCCAO1brWqQtBqHueYcZF5bkVrybMfZ99pEF09xsmCPU1S0
X-Received: by 10.223.171.15 with SMTP id q15mr5685351wrc.38.1488203455762;
 Mon, 27 Feb 2017 05:50:55 -0800 (PST)
Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184])
 by smtp.gmail.com with ESMTPSA id w207sm14341638wmw.29.2017.02.27.05.50.55
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 27 Feb 2017 05:50:55 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: yuanhan.liu@linux.intel.com, Maxime Coquelin <maxime.coquelin@redhat.com>
Cc: Billy McFall <bmcfall@redhat.com>, wenzhuo.lu@intel.com,
 olivier.matz@6wind.com, dev@dpdk.org
Date: Mon, 27 Feb 2017 14:50:54 +0100
Message-ID: <1641551.cy8vlj4stG@xps13>
User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <20170127183800.27466-4-bmcfall@redhat.com>
References: <20170123211340.22570-1-bmcfall@redhat.com>
 <20170127183800.27466-1-bmcfall@redhat.com>
 <20170127183800.27466-4-bmcfall@redhat.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH v5 3/3] net/vhost: vHost support to free
	consumed buffers
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 13:50:56 -0000

2017-01-27 13:38, Billy McFall:
> Add support to the vHostdriver for the new API to force free consumed
> buffers on Tx ring. vHost does not cache the mbufs so there is no work
> to do.
> 
> Signed-off-by: Billy McFall <bmcfall@redhat.com>

Yuanhan, Maxime, do you agree with this empty function?