Re: [dpdk-dev] [PATCH v3 1/2] eal: allow user to override default pool handle

2017-09-07 Thread Hemant Agrawal
On 8/15/2017 1:37 PM, Santosh Shukla wrote: DPDK has support for both sw and hw mempool and currently user is limited to use ring_mp_mc pool. In case user want to use other pool handle, need to update config RTE_MEMPOOL_OPS_DEFAULT, then build and run with desired pool handle. Introducing eal op

Re: [dpdk-dev] [PATCH v3 1/2] eal: allow user to override default pool handle

2017-09-04 Thread Olivier MATZ
Hi Santosh, On Tue, Aug 15, 2017 at 01:37:16PM +0530, Santosh Shukla wrote: > --- a/lib/librte_eal/common/eal_internal_cfg.h > +++ b/lib/librte_eal/common/eal_internal_cfg.h > @@ -83,6 +83,7 @@ struct internal_config { > const char *hugefile_prefix; /**< the base filename of hugetlbfs

[dpdk-dev] [PATCH v3 1/2] eal: allow user to override default pool handle

2017-08-15 Thread Santosh Shukla
DPDK has support for both sw and hw mempool and currently user is limited to use ring_mp_mc pool. In case user want to use other pool handle, need to update config RTE_MEMPOOL_OPS_DEFAULT, then build and run with desired pool handle. Introducing eal option to override default pool handle. Now use