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

2017-10-04 Thread De Lara Guarch, Pablo
> -Original Message- > From: Akhil Goyal [mailto:akhil.go...@nxp.com] > Sent: Tuesday, September 26, 2017 10:21 AM > To: De Lara Guarch, Pablo ; Doherty, > Declan > Cc: dev@dpdk.org > Subject: Re: [PATCH v3 7/7] app/crypto-perf: use single mempool > > On 9/22/2017 1:25 PM, Pablo de Lara

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

2017-09-26 Thread Akhil Goyal
On 9/22/2017 1:25 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 amount of mem

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

2017-09-22 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