From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hunt Subject: [PATCH v5 0/2] mempool: add stack mempool handler Date: Thu, 30 Jun 2016 19:05:07 +0100 Message-ID: <1467309909-123881-1-git-send-email-david.hunt@intel.com> References: <1467272502-56059-1-git-send-email-david.hunt@intel.com> Cc: olivier.matz@6wind.com, viktorin@rehivetech.com, jerin.jacob@caviumnetworks.com, shreyansh.jain@nxp.com To: dev@dpdk.org Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 1EDFD4A65 for ; Thu, 30 Jun 2016 20:06:38 +0200 (CEST) In-Reply-To: <1467272502-56059-1-git-send-email-david.hunt@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch set adds a lifo stack handler to the external mempool manager. This patch utilises the mempool handler feature which allows the addition of new mempool handlers to DPDK. v5 changes: * Added the extra parameter requred for the test_mempool_basic() function, which has changed due to the user defined cache functionality. v4 changes: * Update the test to replace the custom handler test with the stack handler test rather than just adding a stack handler test. The custom handler code is very similar to the stack handler, so there's no need to have both. v3 changes: * Updated based on the latest version (v15) of the Mempool Handler feature v2 changes: * updated based on mailing list feedback (Thanks Stephen) * checkpatch fixes. David Hunt (2) mempool: add stack (lifo) mempool handler test: migrate custom handler test to stack handler