Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-24 Thread Zhang, Roy Fan
Thanks Maxime. > -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Thursday, June 20, 2019 10:44 AM > To: Zhang, Roy Fan ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [PATCH] examples/vhost_crypto: fix unchecked return value > > > > On 5/15/19

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-20 Thread Maxime Coquelin
On 5/15/19 6:25 PM, Fan Zhang wrote: This patch tries to fix the coverity issue of unchecked return value. Since the function that causes the problem is unused, it is removed completely. Coverity issue: 336816 Fixes: f5188211c721 ("examples/vhost_crypto: add sample application") Cc: sta...@dp

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-20 Thread Maxime Coquelin
On 5/15/19 6:25 PM, Fan Zhang wrote: This patch tries to fix the coverity issue of unchecked return value. Since the function that causes the problem is unused, it is removed completely. Coverity issue: 336816 Fixes: f5188211c721 ("examples/vhost_crypto: add sample application") Cc: sta...@dp

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-19 Thread Jens Freimann
On Mon, Jun 17, 2019 at 09:09:59AM +, Zhang, Roy Fan wrote: Hi Jens, You are right. Sorry the code wasn't cleaned up properly in the first place. Do you want me to send a v2 with new title? No it's fine for me :) regards, Jens

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-17 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return > value > > This patch tries to fix the coverity issue of unchecked return value. Since > the > function that causes the problem is unused, it is removed completely. > > Coverity issue: 3368

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-17 Thread Zhang, Roy Fan
oy Fan > Cc: dev@dpdk.org; maxime.coque...@redhat.com; sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked > return value > > On Wed, May 15, 2019 at 05:25:48PM +0100, Fan Zhang wrote: > >This patch tries to fix the coverity issue of uncheck

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-05-16 Thread Jens Freimann
On Wed, May 15, 2019 at 05:25:48PM +0100, Fan Zhang wrote: This patch tries to fix the coverity issue of unchecked return value. Since the function that causes the problem is unused, it is removed completely. Coverity issue: 336816 Fixes: f5188211c721 ("examples/vhost_crypto: add sample applicat

[dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-05-15 Thread Fan Zhang
This patch tries to fix the coverity issue of unchecked return value. Since the function that causes the problem is unused, it is removed completely. Coverity issue: 336816 Fixes: f5188211c721 ("examples/vhost_crypto: add sample application") Cc: sta...@dpdk.org Signed-off-by: Fan Zhang --- exa