[dpdk-dev] [PATCH 26/36] mempool: introduce a function to create an empty mempool

2016-04-15 Thread Wiles, Keith
> > >On 04/14/2016 05:57 PM, Wiles, Keith wrote: >>> Introduce a new function rte_mempool_create_empty() >>> that allocates a mempool that is not populated. >>> >>> The functions rte_mempool_create() and rte_mempool_xmem_create() >>> now make use of it, making their code much easier to read. >>>

[dpdk-dev] [PATCH 26/36] mempool: introduce a function to create an empty mempool

2016-04-15 Thread Olivier Matz
On 04/14/2016 05:57 PM, Wiles, Keith wrote: >> Introduce a new function rte_mempool_create_empty() >> that allocates a mempool that is not populated. >> >> The functions rte_mempool_create() and rte_mempool_xmem_create() >> now make use of it, making their code much easier to read. >> Currently,

[dpdk-dev] [PATCH 26/36] mempool: introduce a function to create an empty mempool

2016-04-14 Thread Wiles, Keith
>Introduce a new function rte_mempool_create_empty() >that allocates a mempool that is not populated. > >The functions rte_mempool_create() and rte_mempool_xmem_create() >now make use of it, making their code much easier to read. >Currently, they are the only users of rte_mempool_create_empty()

[dpdk-dev] [PATCH 26/36] mempool: introduce a function to create an empty mempool

2016-04-14 Thread Olivier Matz
Introduce a new function rte_mempool_create_empty() that allocates a mempool that is not populated. The functions rte_mempool_create() and rte_mempool_xmem_create() now make use of it, making their code much easier to read. Currently, they are the only users of rte_mempool_create_empty() but the