DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Wu, Jingjing" <jingjing.wu@intel.com>
To: "Xing, Beilei" <beilei.xing@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>,
	"Zhang, Qi Z" <qi.z.zhang@intel.com>
Subject: Re: [dpdk-dev] [PATCH] net/i40e: fix unchecked return in parse devarg
Date: Thu, 8 Feb 2018 13:38:58 +0000	[thread overview]
Message-ID: <9BB6961774997848B5B42BEC655768F810F71318@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1518095892-61961-1-git-send-email-beilei.xing@intel.com>



> -----Original Message-----
> From: Xing, Beilei
> Sent: Thursday, February 8, 2018 9:18 PM
> To: Wu, Jingjing <jingjing.wu@intel.com>; dev@dpdk.org; Zhang, Qi Z
> <qi.z.zhang@intel.com>
> Subject: [PATCH] net/i40e: fix unchecked return in parse devarg
> 
> This patch fixes the coverity CHECKED_RETURN issue.
> 
> Coverity issue: 261779
> Fixes: cfdfca493cae ("net/i40e: fix multiple driver support")
> 
> Reported-by: John McNamara <john.mcnamara@intel.com>
> Signed-off-by: Beilei Xing <beilei.xing@intel.com>
> ---
>  drivers/net/i40e/i40e_ethdev.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
> index 65a4b7a..508b417 100644
> --- a/drivers/net/i40e/i40e_ethdev.c
> +++ b/drivers/net/i40e/i40e_ethdev.c
> @@ -1107,8 +1107,12 @@ i40e_support_multi_driver(struct rte_eth_dev *dev)
>  			    "the first invalid or last valid one is used !",
>  			    ETH_I40E_SUPPORT_MULTI_DRIVER);
> 
> -	rte_kvargs_process(kvlist, ETH_I40E_SUPPORT_MULTI_DRIVER,
> -			   i40e_parse_multi_drv_handler, pf);
> +	if (rte_kvargs_process(kvlist, ETH_I40E_SUPPORT_MULTI_DRIVER,
> +			       i40e_parse_multi_drv_handler, pf) < 0) {
> +		rte_kvargs_free(kvlist);
> +		return -EINVAL;
> +	}
> +
>  	rte_kvargs_free(kvlist);
>  	return 0;
>  }
> --
> 2.5.5
Acked-by: Jingjing Wu <jingjing.wu@intel.com>

  reply	other threads:[~2018-02-08 13:39 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-08 13:18 Beilei Xing
2018-02-08 13:38 ` Wu, Jingjing [this message]
2018-02-08 13:44   ` Zhang, Helin
2018-02-08 13:40 ` Zhang, Helin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9BB6961774997848B5B42BEC655768F810F71318@SHSMSX103.ccr.corp.intel.com \
    --to=jingjing.wu@intel.com \
    --cc=beilei.xing@intel.com \
    --cc=dev@dpdk.org \
    --cc=qi.z.zhang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).