Re: [dpdk-dev] [PATCH 03/12] cryptodev: rename device retrieval argument

2017-06-20 Thread De Lara Guarch, Pablo
> -Original Message- > From: Doherty, Declan > Sent: Tuesday, June 20, 2017 3:35 PM > To: De Lara Guarch, Pablo ; > tho...@monjalon.net > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [PATCH 03/12] cryptodev: rename device retrieval argument > > On 24/05/2017 4:27 PM, Pablo de Lara wr

Re: [dpdk-dev] [PATCH 03/12] cryptodev: rename device retrieval argument

2017-06-20 Thread Declan Doherty
On 24/05/2017 4:27 PM, Pablo de Lara wrote: rte_cryptodev_devices_get() function was parsing a crypto device name as an argument, but the function actually returns device identifiers of devices that share the same crypto driver, so the argument should be driver name, instead. Fixes: 38227c0e3ad2

[dpdk-dev] [PATCH 03/12] cryptodev: rename device retrieval argument

2017-05-24 Thread Pablo de Lara
rte_cryptodev_devices_get() function was parsing a crypto device name as an argument, but the function actually returns device identifiers of devices that share the same crypto driver, so the argument should be driver name, instead. Fixes: 38227c0e3ad2 ("cryptodev: retrieve device info") CC: sta..