Re: [dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded check

2017-01-10 Thread De Lara Guarch, Pablo
> -Original Message- > From: Doherty, Declan > Sent: Tuesday, January 10, 2017 9:28 AM > To: Azarewicz, PiotrX T; De Lara Guarch, Pablo; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded > check > &g

Re: [dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded check

2017-01-10 Thread Declan Doherty
On 09/01/17 14:45, Piotr Azarewicz wrote: EVP_CIPHER_CTX_set_padding() function always returns 1, so the check is unneeded. Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") Signed-off-by: Piotr Azarewicz --- drivers/crypto/openssl/rte_openssl_pmd.c |3 +-- 1 file c

Re: [dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded check

2017-01-10 Thread Chen, Zhaoyan
t: Monday, January 9, 2017 10:46 PM > To: De Lara Guarch, Pablo ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded > check > > EVP_CIPHER_CTX_set_padding() function always returns 1, so the check is > unneeded. > > Fi

[dpdk-dev] [PATCH] crypto/openssl: fix that remove unneeded check

2017-01-09 Thread Piotr Azarewicz
EVP_CIPHER_CTX_set_padding() function always returns 1, so the check is unneeded. Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") Signed-off-by: Piotr Azarewicz --- drivers/crypto/openssl/rte_openssl_pmd.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff