Re: [PATCH] cryptodev: clarify error codes returned

2023-06-11 Thread Thomas Monjalon
24/04/2023 11:19, Anoob Joseph: > When symmetric sessions are created, it may fail due to non-critical > errors. When PMD doesn't support the specific combination that > application requested, it can return -ENOTSUP which can be handled so in > application. The API is already setting rte_errno acco

RE: [PATCH] cryptodev: clarify error codes returned

2023-05-24 Thread Akhil Goyal
> > Subject: [PATCH] cryptodev: clarify error codes returned > > > > When symmetric sessions are created, it may fail due to non-critical > > errors. When PMD doesn't support the specific combination that > > application requested, it can return -ENOTSUP which c

RE: [PATCH] cryptodev: clarify error codes returned

2023-05-16 Thread Akhil Goyal
> Subject: [PATCH] cryptodev: clarify error codes returned > > When symmetric sessions are created, it may fail due to non-critical > errors. When PMD doesn't support the specific combination that > application requested, it can return -ENOTSUP which can be handled so in >

RE: [PATCH] cryptodev: clarify error codes returned

2023-05-08 Thread Power, Ciara
Hi Anoob, > -Original Message- > From: Anoob Joseph > Sent: Monday 24 April 2023 10:19 > To: Akhil Goyal ; Fan Zhang > > Cc: Jerin Jacob ; dev@dpdk.org > Subject: [PATCH] cryptodev: clarify error codes returned > > When symmetric sessions are created, it m

[PATCH] cryptodev: clarify error codes returned

2023-04-24 Thread Anoob Joseph
When symmetric sessions are created, it may fail due to non-critical errors. When PMD doesn't support the specific combination that application requested, it can return -ENOTSUP which can be handled so in application. The API is already setting rte_errno according to the reason of the failure. Clar