[dpdk-dev] [PATCH v3 1/4] mempool: add external mempool manager support

2016-04-12 Thread Yuanhan Liu
Hi David, On Wed, Mar 09, 2016 at 09:50:34AM +, David Hunt wrote: > -static struct rte_tailq_elem rte_mempool_tailq = { > +struct rte_tailq_elem rte_mempool_tailq = { Why removing static? I didn't see it's referenced somewhere else. > + if (flags && MEMPOOL_F_INT_HANDLER) { I would ass

[dpdk-dev] [PATCH v3 1/4] mempool: add external mempool manager support

2016-03-09 Thread David Hunt
Adds the new rte_mempool_create_ext api and callback mechanism for external mempool handlers Modifies the existing rte_mempool_create to set up the handler_idx to the relevant mempool handler based on the handler name: ring_sp_sc ring_mp_mc ring_sp_mc ring_mp_sc v3: Cleanup out of