All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net/cxgbe: fix NULL deref in CLIP failure path
@ 2018-07-26  8:19 Rahul Lakkireddy
  2018-08-02  9:03 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Rahul Lakkireddy @ 2018-07-26  8:19 UTC (permalink / raw)
  To: dev; +Cc: shaguna, nirranjan, indranil

From: Shagun Agrawal <shaguna@chelsio.com>

Fixes: 3f2c1e20 ("net/cxgbe: add Compressed Local IP region")
Coverity issue: 302872

Signed-off-by: Shagun Agrawal <shaguna@chelsio.com>
Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
---
 drivers/net/cxgbe/clip_tbl.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/net/cxgbe/clip_tbl.c b/drivers/net/cxgbe/clip_tbl.c
index fa5281cd4..5e4dc5270 100644
--- a/drivers/net/cxgbe/clip_tbl.c
+++ b/drivers/net/cxgbe/clip_tbl.c
@@ -105,7 +105,7 @@ static struct clip_entry *t4_clip_alloc(struct rte_eth_dev *dev,
 	struct adapter *adap = ethdev2adap(dev);
 	struct clip_tbl *ctbl = adap->clipt;
 	struct clip_entry *ce;
-	int ret;
+	int ret = 0;
 
 	if (!ctbl)
 		return NULL;
@@ -120,12 +120,10 @@ static struct clip_entry *t4_clip_alloc(struct rte_eth_dev *dev,
 				ce->type = FILTER_TYPE_IPV6;
 				rte_atomic32_set(&ce->refcnt, 1);
 				ret = clip6_get_mbox(dev, lip);
-				if (ret) {
+				if (ret)
 					dev_debug(adap,
 						  "CLIP FW ADD CMD failed: %d",
 						  ret);
-					ce = NULL;
-				}
 			} else {
 				ce->type = FILTER_TYPE_IPV4;
 			}
@@ -136,7 +134,7 @@ static struct clip_entry *t4_clip_alloc(struct rte_eth_dev *dev,
 	}
 	t4_os_write_unlock(&ctbl->lock);
 
-	return ce;
+	return ret ? NULL : ce;
 }
 
 /**
-- 
2.14.1

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

* Re: [PATCH] net/cxgbe: fix NULL deref in CLIP failure path
  2018-07-26  8:19 [PATCH] net/cxgbe: fix NULL deref in CLIP failure path Rahul Lakkireddy
@ 2018-08-02  9:03 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2018-08-02  9:03 UTC (permalink / raw)
  To: Rahul Lakkireddy, shaguna; +Cc: dev, nirranjan, indranil

26/07/2018 10:19, Rahul Lakkireddy:
> From: Shagun Agrawal <shaguna@chelsio.com>
> 
> Fixes: 3f2c1e20 ("net/cxgbe: add Compressed Local IP region")
> Coverity issue: 302872
> 
> Signed-off-by: Shagun Agrawal <shaguna@chelsio.com>
> Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>

Applied, thanks

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

end of thread, other threads:[~2018-08-02  9:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-26  8:19 [PATCH] net/cxgbe: fix NULL deref in CLIP failure path Rahul Lakkireddy
2018-08-02  9:03 ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.