Re: [dpdk-dev] [PATCH v1 2/6] mempool: implement abstract mempool info API

2018-04-25 Thread Olivier Matz
Hi Andrew, > > > + * @warning > > > + * @b EXPERIMENTAL: this API may change without prior notice. > > > + * > > > + * Additional information about the mempool > > > + */ > > > +struct rte_mempool_info; > > > + > > [...] > > > > > +/* wrapper to get additional mempool info */ > > > +int > > > +rt

Re: [dpdk-dev] [PATCH v1 2/6] mempool: implement abstract mempool info API

2018-04-25 Thread Andrew Rybchenko
On 04/19/2018 07:42 PM, Olivier Matz wrote: On Mon, Mar 26, 2018 at 05:12:55PM +0100, Andrew Rybchenko wrote: From: "Artem V. Andreev" Primarily, it is intended as a way for the mempool driver to provide additional information on how it lays up objects inside the mempool. Signed-off-by: Artem

Re: [dpdk-dev] [PATCH v1 2/6] mempool: implement abstract mempool info API

2018-04-19 Thread Olivier Matz
On Mon, Mar 26, 2018 at 05:12:55PM +0100, Andrew Rybchenko wrote: > From: "Artem V. Andreev" > > Primarily, it is intended as a way for the mempool driver to provide > additional information on how it lays up objects inside the mempool. > > Signed-off-by: Artem V. Andreev > Signed-off-by: Andre

[dpdk-dev] [PATCH v1 2/6] mempool: implement abstract mempool info API

2018-03-26 Thread Andrew Rybchenko
From: "Artem V. Andreev" Primarily, it is intended as a way for the mempool driver to provide additional information on how it lays up objects inside the mempool. Signed-off-by: Artem V. Andreev Signed-off-by: Andrew Rybchenko --- lib/librte_mempool/rte_mempool.h | 41 ++