From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 64E952BD5 for ; Fri, 6 May 2016 10:34:18 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP; 06 May 2016 01:34:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,586,1455004800"; d="scan'208";a="947463079" Received: from shwdeisgchi083.ccr.corp.intel.com (HELO [10.239.67.193]) ([10.239.67.193]) by orsmga001.jf.intel.com with ESMTP; 06 May 2016 01:34:17 -0700 To: David Hunt , olivier.matz@6wind.com References: <1462472982-49782-1-git-send-email-david.hunt@intel.com> Cc: dev@dpdk.org From: "Tan, Jianfeng" Message-ID: <68b60537-9523-22a7-e0d2-da9f7790f5a6@intel.com> Date: Fri, 6 May 2016 16:34:15 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <1462472982-49782-1-git-send-email-david.hunt@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 0/2] mempool: add stack (fifo) mempool handler 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: Fri, 06 May 2016 08:34:18 -0000 Hi David, On 5/6/2016 2:29 AM, David Hunt wrote: > This patch set adds a fifo stack handler to the external mempool > manager. Just a minor confusion for me. Usually, we refer stack as LIFO and queue as FIFO. So is there any particular reason why we call "stack (fifo)" here? Thanks, Jianfeng > > This patch set depends on the 3 part external mempool handler > patch set (v4 of the series): > http://dpdk.org/dev/patchwork/patch/12077/ > which depends on the 36 part patch set for mempool rework > http://dpdk.org/dev/patchwork/patch/12038/ > > David Hunt (2): > mempool: add stack (fifo) mempool handler > test: add autotest for external mempool stack handler > > app/test/test_mempool.c | 26 ++++++ > lib/librte_mempool/Makefile | 1 + > lib/librte_mempool/rte_mempool_stack.c | 154 +++++++++++++++++++++++++++++++++ > 3 files changed, 181 insertions(+) > create mode 100644 lib/librte_mempool/rte_mempool_stack.c >