Re: [dpdk-dev] [PATCH] crypto/aesni_mb: fix zero burst dequeue

2017-07-17 Thread De Lara Guarch, Pablo
> -Original Message- > From: Doherty, Declan > Sent: Monday, July 17, 2017 11:17 AM > To: De Lara Guarch, Pablo > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [PATCH] crypto/aesni_mb: fix zero burst dequeue > > On 14/07/2017 7:48 AM, Pablo de Lara wrote: > > In the unlikely scenario

Re: [dpdk-dev] [PATCH] crypto/aesni_mb: fix zero burst dequeue

2017-07-17 Thread Declan Doherty
On 14/07/2017 7:48 AM, Pablo de Lara wrote: In the unlikely scenario that an application calls rte_cryptodev_dequeue_burst with nb_ops = 0, there was a job leak, as a job would be created but would not be populated, as no operation is passed. Fixes: 0f548b50a160 ("crypto/aesni_mb: process crypto

[dpdk-dev] [PATCH] crypto/aesni_mb: fix zero burst dequeue

2017-07-14 Thread Pablo de Lara
In the unlikely scenario that an application calls rte_cryptodev_dequeue_burst with nb_ops = 0, there was a job leak, as a job would be created but would not be populated, as no operation is passed. Fixes: 0f548b50a160 ("crypto/aesni_mb: process crypto op on dequeue") Cc: sta...@dpdk.org Signed-o