From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hunt Subject: [PATCH v6 0/2] mempool: add stack mempool handler Date: Fri, 1 Jul 2016 08:46:21 +0100 Message-ID: <1467359183-5948-1-git-send-email-david.hunt@intel.com> References: <1467309909-123881-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 mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 1631A2BB5 for ; Fri, 1 Jul 2016 09:46:27 +0200 (CEST) In-Reply-To: <1467309909-123881-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. v6 changes: * removed unneeded mp_ext variable. * added in a free for mp_stack after we're finished with it. v5 changes: * Added the extra parameter requred for the changed test_mempool_basic() function for user defined caches. 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