patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] net/vmxnet3: uninitialized variable fix
@ 2019-05-16  7:10 Yogev Chaimovich
  2019-05-16  8:28 ` [dpdk-stable] [dpdk-dev] " David Marchand
  2019-05-20 17:48 ` [dpdk-stable] " Yong Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Yogev Chaimovich @ 2019-05-16  7:10 UTC (permalink / raw)
  To: yongwang; +Cc: dev, Yogev Chaimovich, stable

Coverity issue: 323479
Fixes: 30f77abe net/vmxnet3: support stats reset
Cc: stable@dpdk.org

Signed-off-by: yogev ch <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


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-27 16:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-16  7:10 [dpdk-stable] [PATCH] net/vmxnet3: uninitialized variable fix Yogev Chaimovich
2019-05-16  8:28 ` [dpdk-stable] [dpdk-dev] " David Marchand
2019-05-20 17:48 ` [dpdk-stable] " Yong Wang
2019-05-27 16:23   ` Ferruh Yigit

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).