Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool

2017-09-11 Thread De Lara Guarch, Pablo
> >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Akhil Goyal > >> Sent: Wednesday, August 30, 2017 9:31 AM > >> To: De Lara Guarch, Pablo ; Doherty, > >> Declan ; Trahe, Fiona > >> ; Jain, Deepak K ; > >> Griffin, John ; > >> j

Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool

2017-09-11 Thread Shreyansh Jain
, Fiona ; Jain, Deepak K ; Griffin, John ; jerin.ja...@caviumnetworks.com; hemant.agra...@nxp.com Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool Hi Pablo, On 8/18/2017 1:35 PM, Pablo de Lara wrote: In order to improve memory utilization, a single mempool is

Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool

2017-09-11 Thread De Lara Guarch, Pablo
; hemant.agra...@nxp.com > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single > mempool > > Hi Pablo, > On 8/18/2017 1:35 PM, Pablo de Lara wrote: > > In order to improve memory utilization, a single mempool is created, > > containing the

Re: [dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool

2017-08-30 Thread Akhil Goyal
Hi Pablo, On 8/18/2017 1:35 PM, Pablo de Lara wrote: In order to improve memory utilization, a single mempool is created, containing the crypto operation and mbufs (one if operation is in-place, two if out-of-place). This way, a single object is allocated and freed per operation, reducing the amo

[dpdk-dev] [PATCH 6/6] app/crypto-perf: use single mempool

2017-08-18 Thread Pablo de Lara
In order to improve memory utilization, a single mempool is created, containing the crypto operation and mbufs (one if operation is in-place, two if out-of-place). This way, a single object is allocated and freed per operation, reducing the amount of memory in cache, which improves scalability. Si