patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 1/8] net/mrvl: fix crash when port is closed without starting
       [not found] <1519222460-14605-1-git-send-email-tdu@semihalf.com>
@ 2018-02-21 14:14 ` Tomasz Duszynski
       [not found] ` <1520844132-29969-1-git-send-email-tdu@semihalf.com>
  1 sibling, 0 replies; 3+ messages in thread
From: Tomasz Duszynski @ 2018-02-21 14:14 UTC (permalink / raw)
  To: dev; +Cc: mw, dima, nsamsono, jck, stable, Tomasz Duszynski

From: Natalie Samsonov <nsamsono@marvell.com>

Fixes: 0ddc9b815b11 ("net/mrvl: add net PMD skeleton")
Cc: stable@dpdk.org

Signed-off-by: Natalie Samsonov <nsamsono@marvell.com>
Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
---
 drivers/net/mrvl/mrvl_ethdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/mrvl/mrvl_ethdev.c b/drivers/net/mrvl/mrvl_ethdev.c
index 705c4bd..3611a92 100644
--- a/drivers/net/mrvl/mrvl_ethdev.c
+++ b/drivers/net/mrvl/mrvl_ethdev.c
@@ -686,7 +686,8 @@ mrvl_dev_stop(struct rte_eth_dev *dev)
 		pp2_cls_qos_tbl_deinit(priv->qos_tbl);
 		priv->qos_tbl = NULL;
 	}
-	pp2_ppio_deinit(priv->ppio);
+	if (priv->ppio)
+		pp2_ppio_deinit(priv->ppio);
 	priv->ppio = NULL;
 }
 
-- 
2.7.4

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

* [dpdk-stable] [PATCH v2 1/8] net/mrvl: fix crash when port is closed without starting
       [not found] ` <1520844132-29969-1-git-send-email-tdu@semihalf.com>
@ 2018-03-12  8:42   ` Tomasz Duszynski
       [not found]   ` <1521100324-26558-1-git-send-email-tdu@semihalf.com>
  1 sibling, 0 replies; 3+ messages in thread
From: Tomasz Duszynski @ 2018-03-12  8:42 UTC (permalink / raw)
  To: dev; +Cc: mw, dima, nsamsono, jck, jianbo.liu, stable, Tomasz Duszynski

From: Natalie Samsonov <nsamsono@marvell.com>

Fixes: 0ddc9b815b11 ("net/mrvl: add net PMD skeleton")
Cc: stable@dpdk.org

Signed-off-by: Natalie Samsonov <nsamsono@marvell.com>
Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
---
 drivers/net/mrvl/mrvl_ethdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/mrvl/mrvl_ethdev.c b/drivers/net/mrvl/mrvl_ethdev.c
index ac8f2d6..e313768 100644
--- a/drivers/net/mrvl/mrvl_ethdev.c
+++ b/drivers/net/mrvl/mrvl_ethdev.c
@@ -658,7 +658,8 @@ mrvl_dev_stop(struct rte_eth_dev *dev)
 		pp2_cls_qos_tbl_deinit(priv->qos_tbl);
 		priv->qos_tbl = NULL;
 	}
-	pp2_ppio_deinit(priv->ppio);
+	if (priv->ppio)
+		pp2_ppio_deinit(priv->ppio);
 	priv->ppio = NULL;
 }
 
-- 
2.7.4

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

* [dpdk-stable] [PATCH v3 1/8] net/mrvl: fix crash when port is closed without starting
       [not found]   ` <1521100324-26558-1-git-send-email-tdu@semihalf.com>
@ 2018-03-15  7:51     ` Tomasz Duszynski
  0 siblings, 0 replies; 3+ messages in thread
From: Tomasz Duszynski @ 2018-03-15  7:51 UTC (permalink / raw)
  To: dev; +Cc: mw, dima, nsamsono, jck, jianbo.liu, stable, Tomasz Duszynski

From: Natalie Samsonov <nsamsono@marvell.com>

Fixes: 0ddc9b815b11 ("net/mrvl: add net PMD skeleton")
Cc: stable@dpdk.org

Signed-off-by: Natalie Samsonov <nsamsono@marvell.com>
Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
---
 drivers/net/mrvl/mrvl_ethdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/mrvl/mrvl_ethdev.c b/drivers/net/mrvl/mrvl_ethdev.c
index ac8f2d6..e313768 100644
--- a/drivers/net/mrvl/mrvl_ethdev.c
+++ b/drivers/net/mrvl/mrvl_ethdev.c
@@ -658,7 +658,8 @@ mrvl_dev_stop(struct rte_eth_dev *dev)
 		pp2_cls_qos_tbl_deinit(priv->qos_tbl);
 		priv->qos_tbl = NULL;
 	}
-	pp2_ppio_deinit(priv->ppio);
+	if (priv->ppio)
+		pp2_ppio_deinit(priv->ppio);
 	priv->ppio = NULL;
 }
 
-- 
2.7.4

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

end of thread, other threads:[~2018-03-15  7:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1519222460-14605-1-git-send-email-tdu@semihalf.com>
2018-02-21 14:14 ` [dpdk-stable] [PATCH 1/8] net/mrvl: fix crash when port is closed without starting Tomasz Duszynski
     [not found] ` <1520844132-29969-1-git-send-email-tdu@semihalf.com>
2018-03-12  8:42   ` [dpdk-stable] [PATCH v2 " Tomasz Duszynski
     [not found]   ` <1521100324-26558-1-git-send-email-tdu@semihalf.com>
2018-03-15  7:51     ` [dpdk-stable] [PATCH v3 " Tomasz Duszynski

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