From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id E965369FB for ; Sun, 28 Feb 2016 22:41:42 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id p65so22876980wmp.0 for ; Sun, 28 Feb 2016 13:41:42 -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:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=OmORJ7FwstLA5vkP6V80VNFGWV0uOPZiNc37qrDWPbA=; b=Ab2+dJoyxxiFcHMSqtJDn3bMoUUuMm+MViWtLLcU393zeqY4Xh3kLTI52xWWMl+RlV HACrCwn73D9V06TOKUgMfqqdjooUJx/iiC5Lqx1tyUJwt51Qvq+1CC52lYFUpbh9HItv DJ/elHEjwrVx5av5cxhOSAmERDXkKwEBNwBEgK6WLQmo4HS7VFzF9gTitkkvjQFKH/HQ A/JK1SLzTt6vfA2vpIv7xdy70utfts4Equh+cpIqjzXr8aZNdDxSXQ4XjfnM/+WaZ/2p L1ueOHq5xN6146OS4JeCLUBXmfWi6xH8TSus58L+SOfCJRlPWxq3SlXGxhEKw8G+yZri zenw== 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; bh=OmORJ7FwstLA5vkP6V80VNFGWV0uOPZiNc37qrDWPbA=; b=GgBvVPQ1Rg7TaDAbP8hTYXxGq3FVnbNOgXJ52+oxOz4JAvNrUU9VZtuGYSg6pveo/f 3ZDfnr3YQyKUorkzt84cK5S2GJouZERRHribIbXVWSM7BWkTVYIpaj5+bblZXnIdZlhS ZNwC9OqDsbYoJvcjBxhlrtvJs2FzIGjt7o1Z7wIW8CexF/q5pdibDqIBM5LW+KRC0rYD FJJm6ml3VwaDMGYKSzccpO1cVyINFOyyuuK9xAcbGaCrJJlyIydsBYf2TXDPr2451D6p bPVDNLLCbtW9bnDsH/A6ESGBVnCEq/Cce2pIbpHTim2NFkoowZO3UcPMG/ig9iYaevXQ nLcA== X-Gm-Message-State: AD7BkJJlccvmuV9QUKLs+n61QK+PkyeqItBjRw8tJEJecZ3tUZVm2KxQmRb7ylIQf5yFdgbw X-Received: by 10.194.62.179 with SMTP id z19mr12485691wjr.96.1456695702780; Sun, 28 Feb 2016 13:41:42 -0800 (PST) Received: from xps13.localnet (171.36.101.84.rev.sfr.net. [84.101.36.171]) by smtp.gmail.com with ESMTPSA id g126sm13229642wmf.16.2016.02.28.13.41.41 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 28 Feb 2016 13:41:42 -0800 (PST) From: Thomas Monjalon To: Jianfeng Tan Date: Sun, 28 Feb 2016 22:40:10 +0100 Message-ID: <4879300.eaoi2KXdjX@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1455754119-121572-1-git-send-email-jianfeng.tan@intel.com> References: <1455754119-121572-1-git-send-email-jianfeng.tan@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] example/vhost: fix failed to allocate mbufs 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: Sun, 28 Feb 2016 21:41:43 -0000 2016-02-18 08:08, Jianfeng Tan: > In all, it fails to include master core's mbuf mempool cache. > > Signed-off-by: Jianfeng Tan > Reported-by: Qian Xu minor note: please keep the "people-tags" in the chronological order. Here the "Reported-by" is moved before the "Signed-off-by". [...] > +* **examples/vhost: fix failed to allocate mbuf.** > + > + vhost-switch often fails to allocate mbuf when dequeue from vring because it > + wrongly calculate the number of mbufs needed. Reworded to comply with release notes style. Applied, thanks