Re: [dpdk-dev] [PATCH v2] examples/ip_reassembly: use pktmbuf to create pool

2017-10-13 Thread Thomas Monjalon
> > Use of rte_mempool_create() with the helper provided in > > librte_mbuf: rte_pktmbuf_pool_create(). > > This is the preferred way to create a mbuf pool else > > it may not work on implementation using the HW buffer pool > > > > Signed-off-by: Ashish Jain > > Acked-by: Konstantin Ananyev Ap

Re: [dpdk-dev] [PATCH v2] examples/ip_reassembly: use pktmbuf to create pool

2017-10-12 Thread Ananyev, Konstantin
> -Original Message- > From: Hemant Agrawal [mailto:hemant.agra...@nxp.com] > Sent: Thursday, October 12, 2017 2:25 PM > To: dev@dpdk.org; Ananyev, Konstantin > Subject: [PATCH v2] examples/ip_reassembly: use pktmbuf to create pool > > From: Ashish Jain > > Use of rte_mempool_create()

[dpdk-dev] [PATCH v2] examples/ip_reassembly: use pktmbuf to create pool

2017-10-12 Thread Hemant Agrawal
From: Ashish Jain Use of rte_mempool_create() with the helper provided in librte_mbuf: rte_pktmbuf_pool_create(). This is the preferred way to create a mbuf pool else it may not work on implementation using the HW buffer pool Signed-off-by: Ashish Jain --- v2: add mempool caches - as suggested