patches for DPDK stable branches
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: Yogev Chaimovich <yogev@cgstowernetworks.com>
Cc: "yongwang@vmware.com" <yongwang@vmware.com>,
	"dev@dpdk.org" <dev@dpdk.org>,
	"stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] net/vmxnet3: uninitialized variable fix
Date: Thu, 16 May 2019 10:28:31 +0200	[thread overview]
Message-ID: <CAJFAV8xxtPpwB7sVUXpwuBDd-WvyjZbMwGVo7MN+drso9c6+eg@mail.gmail.com> (raw)
In-Reply-To: <1557990898-79349-1-git-send-email-yogev@cgstowernetworks.com>

On Thu, May 16, 2019 at 9:10 AM Yogev Chaimovich <yogev@cgstowernetworks.com>
wrote:

I am not sure this is the right fix but I don't know this driver so I will
let Yong comment on this.

On the form, please, have a look at the recommandations for submitting
patches:
http://doc.dpdk.org/guides/contributing/patches.html#commit-messages-body

Coverity issue: 323479
> Fixes: 30f77abe net/vmxnet3: support stats reset
>

Here, we would expect the Fixes: line as:
Fixes: 30f77abecd38 ("net/vmxnet3: support stats reset")



> Cc: stable@dpdk.org
>
> Signed-off-by: yogev ch <yogev@cgstowernetworks.com>
>

Iiuc, your sob line should be:
Signed-off-by: Yogev Chaimovich <yogev@cgstowernetworks.com>


---
>  drivers/net/vmxnet3/vmxnet3_ethdev.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/vmxnet3/vmxnet3_ethdev.c
> b/drivers/net/vmxnet3/vmxnet3_ethdev.c
> index f54536b..c465996 100644
> --- a/drivers/net/vmxnet3/vmxnet3_ethdev.c
> +++ b/drivers/net/vmxnet3/vmxnet3_ethdev.c
> @@ -1132,8 +1132,8 @@ static int eth_vmxnet3_pci_remove(struct
> rte_pci_device *pci_dev)
>  {
>         unsigned int i;
>         struct vmxnet3_hw *hw = dev->data->dev_private;
> -       struct UPT1_TxStats txStats;
> -       struct UPT1_RxStats rxStats;
> +       struct UPT1_TxStats txStats = {0};
> +       struct UPT1_RxStats rxStats = {0};
>
>         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_STATS);
>
> --
> 1.9.1
>
>

-- 
David Marchand

  reply	other threads:[~2019-05-16  8:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-16  7:10 [dpdk-stable] " Yogev Chaimovich
2019-05-16  8:28 ` David Marchand [this message]
2019-05-20 17:48 ` Yong Wang
2019-05-27 16:23   ` Ferruh Yigit

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=CAJFAV8xxtPpwB7sVUXpwuBDd-WvyjZbMwGVo7MN+drso9c6+eg@mail.gmail.com \
    --to=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=stable@dpdk.org \
    --cc=yogev@cgstowernetworks.com \
    --cc=yongwang@vmware.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).