From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 9A8B758EC; Thu, 16 May 2019 10:07:15 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E7B06309B6D9; Thu, 16 May 2019 08:07:14 +0000 (UTC) Received: from localhost (reserved-198-163.str.redhat.com [10.33.198.163]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 30C7526DF4; Thu, 16 May 2019 08:07:11 +0000 (UTC) Date: Thu, 16 May 2019 10:07:09 +0200 From: Jens Freimann To: Fan Zhang Cc: dev@dpdk.org, maxime.coquelin@redhat.com, stable@dpdk.org Message-ID: <20190516080709.pq3wwurtynf6dnwy@jenstp.localdomain> References: <20190515162548.71498-1-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20190515162548.71498-1-roy.fan.zhang@intel.com> User-Agent: NeoMutt/20180716-1376-5d6ed1 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Thu, 16 May 2019 08:07:14 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 May 2019 08:07:16 -0000 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 application") >Cc: stable@dpdk.org > >Signed-off-by: Fan Zhang >--- > examples/vhost_crypto/main.c | 6 ------ > 1 file changed, 6 deletions(-) > It really is unused. Reviewed-by: Jens Freimann From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id A9FBFA00E6 for ; Thu, 16 May 2019 10:07:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A447B5B20; Thu, 16 May 2019 10:07:17 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 9A8B758EC; Thu, 16 May 2019 10:07:15 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E7B06309B6D9; Thu, 16 May 2019 08:07:14 +0000 (UTC) Received: from localhost (reserved-198-163.str.redhat.com [10.33.198.163]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 30C7526DF4; Thu, 16 May 2019 08:07:11 +0000 (UTC) Date: Thu, 16 May 2019 10:07:09 +0200 From: Jens Freimann To: Fan Zhang Cc: dev@dpdk.org, maxime.coquelin@redhat.com, stable@dpdk.org Message-ID: <20190516080709.pq3wwurtynf6dnwy@jenstp.localdomain> References: <20190515162548.71498-1-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8"; format="flowed" Content-Disposition: inline In-Reply-To: <20190515162548.71498-1-roy.fan.zhang@intel.com> User-Agent: NeoMutt/20180716-1376-5d6ed1 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Thu, 16 May 2019 08:07:14 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Message-ID: <20190516080709.3gDjwmij_3MUMZWa-PYYxJWN9SZq9zW5OieddJn89CE@z> 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 application") >Cc: stable@dpdk.org > >Signed-off-by: Fan Zhang >--- > examples/vhost_crypto/main.c | 6 ------ > 1 file changed, 6 deletions(-) > It really is unused. Reviewed-by: Jens Freimann