Re: [dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-29 Thread Thomas Monjalon
26/07/2020 21:19, Akhil Goyal: > > > > > > [Adam] The ret variable value (signed) is not returned directly, please > > > check the > > rest of this function in src > > > code. This is just checked to calculate how many ops were enqueued. And > > > if all > > checks skip (meaning the > > > op was

Re: [dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-26 Thread Akhil Goyal
> > > > [Adam] The ret variable value (signed) is not returned directly, please > > check the > rest of this function in src > > code. This is just checked to calculate how many ops were enqueued. And if > > all > checks skip (meaning the > > op was not processed by sym crypto, asym crypto nor co

Re: [dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-24 Thread Trahe, Fiona
> -Original Message- > From: Dybkowski, AdamX > Sent: Friday, July 24, 2020 12:58 PM > To: Trahe, Fiona ; dev@dpdk.org; akhil.go...@nxp.com > Subject: RE: [PATCH] common/qat: fix uninitialized variable bug > > > -Original Message- > > From: Trahe, Fiona > > Sent: Friday, 24 Ju

Re: [dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-24 Thread Dybkowski, AdamX
> -Original Message- > From: Trahe, Fiona > Sent: Friday, 24 July, 2020 13:55 > To: Dybkowski, AdamX ; dev@dpdk.org; > akhil.go...@nxp.com > Cc: Trahe, Fiona > Subject: RE: [PATCH] common/qat: fix uninitialized variable bug > > > > > -Original Message- > > From: Dybkowski, Adam

Re: [dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-24 Thread Trahe, Fiona
> -Original Message- > From: Dybkowski, AdamX > Sent: Friday, July 24, 2020 10:40 AM > To: dev@dpdk.org; Trahe, Fiona ; akhil.go...@nxp.com > Cc: Dybkowski, AdamX > Subject: [PATCH] common/qat: fix uninitialized variable bug > > This patch fixes the uninitialized variable bug in QAT P

[dpdk-dev] [PATCH] common/qat: fix uninitialized variable bug

2020-07-24 Thread Adam Dybkowski
This patch fixes the uninitialized variable bug in QAT PMD. Fixes: 9f27a860dc16 ("crypto/qat: move generic qp function to qp file") Signed-off-by: Adam Dybkowski --- drivers/common/qat/qat_qp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/qat/qat_qp.c b/dri