Re: [dpdk-dev] [PATCH 1/2] test/ipsec: fix return values

2021-01-27 Thread Akhil Goyal
> Subject: RE: [PATCH 1/2] test/ipsec: fix return values > > > During SA creation, if the required algorithm is not supported, > > drivers can return ENOTSUP. But in most of the IPsec test cases, > > if the SA creation does not success, it just returns > > TEST_FAILED. > > > > This patch fixes thi

Re: [dpdk-dev] [PATCH 1/2] test/ipsec: fix return values

2021-01-27 Thread Akhil Goyal
> During SA creation, if the required algorithm is not supported, > drivers can return ENOTSUP. But in most of the IPsec test cases, > if the SA creation does not success, it just returns > TEST_FAILED. > > This patch fixes this issue by returning the actual return values > from the driver to the

[dpdk-dev] [PATCH 1/2] test/ipsec: fix return values

2021-01-25 Thread Gagandeep Singh
During SA creation, if the required algorithm is not supported, drivers can return ENOTSUP. But in most of the IPsec test cases, if the SA creation does not success, it just returns TEST_FAILED. This patch fixes this issue by returning the actual return values from the driver to the application, s