Re: [dpdk-dev] [PATCH v2] app/pdump: enforcing pdump to use sw mempool

2019-07-05 Thread Olivier Matz
hi, On Fri, Jul 05, 2019 at 03:40:20PM +, Harman Kalra wrote: > A secondary process cannot access HW mempool already > initiazed by primary, and neither it can setup its own > HW mempool due to its own restrictions. > > Since dpdk-pdump creates mempool for managing its local > mbufs, SW mempo

[dpdk-dev] [PATCH v2] app/pdump: enforcing pdump to use sw mempool

2019-07-05 Thread Harman Kalra
A secondary process cannot access HW mempool already initiazed by primary, and neither it can setup its own HW mempool due to its own restrictions. Since dpdk-pdump creates mempool for managing its local mbufs, SW mempool is capable enough to solve this purpose. Signed-off-by: Harman Kalra ---