patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [dpdk-dev] [PATCH] net/fm10k: fix memory leak when thresh check fails
@ 2020-09-28 12:44 wangyunjian
  2020-09-28 13:32 ` Zhang, Qi Z
  0 siblings, 1 reply; 2+ messages in thread
From: wangyunjian @ 2020-09-28 12:44 UTC (permalink / raw)
  To: dev
  Cc: qi.z.zhang, xiao.w.wang, jerry.lilijun, xudingke, Yunjian Wang, stable

From: Yunjian Wang <wangyunjian@huawei.com>

In fm10k_rx_queue_setup(), we allocate memory for the queue
structure but not released when thresh check fails.

Fixes: 6cfe8969c969 ("fm10k: add Rx queue setup/release")
Cc: stable@dpdk.org

Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
---
 drivers/net/fm10k/fm10k_ethdev.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/net/fm10k/fm10k_ethdev.c b/drivers/net/fm10k/fm10k_ethdev.c
index 5771d83b5..98e396b8e 100644
--- a/drivers/net/fm10k/fm10k_ethdev.c
+++ b/drivers/net/fm10k/fm10k_ethdev.c
@@ -1841,9 +1841,10 @@ fm10k_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_id,
 	q->tail_ptr = (volatile uint32_t *)
 		&((uint32_t *)hw->hw_addr)[FM10K_RDT(queue_id)];
 	q->offloads = offloads;
-	if (handle_rxconf(q, conf))
+	if (handle_rxconf(q, conf)) {
+		rte_free(q);
 		return -EINVAL;
-
+	}
 	/* allocate memory for the software ring */
 	q->sw_ring = rte_zmalloc_socket("fm10k sw ring",
 			(nb_desc + q->nb_fake_desc) * sizeof(struct rte_mbuf *),
-- 
2.23.0


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

* Re: [dpdk-stable] [dpdk-dev] [PATCH] net/fm10k: fix memory leak when thresh check fails
  2020-09-28 12:44 [dpdk-stable] [dpdk-dev] [PATCH] net/fm10k: fix memory leak when thresh check fails wangyunjian
@ 2020-09-28 13:32 ` Zhang, Qi Z
  0 siblings, 0 replies; 2+ messages in thread
From: Zhang, Qi Z @ 2020-09-28 13:32 UTC (permalink / raw)
  To: wangyunjian, dev; +Cc: Wang, Xiao W, jerry.lilijun, xudingke, stable



> -----Original Message-----
> From: wangyunjian <wangyunjian@huawei.com>
> Sent: Monday, September 28, 2020 8:45 PM
> To: dev@dpdk.org
> Cc: Zhang, Qi Z <qi.z.zhang@intel.com>; Wang, Xiao W
> <xiao.w.wang@intel.com>; jerry.lilijun@huawei.com; xudingke@huawei.com;
> Yunjian Wang <wangyunjian@huawei.com>; stable@dpdk.org
> Subject: [dpdk-dev] [PATCH] net/fm10k: fix memory leak when thresh check
> fails
> 
> From: Yunjian Wang <wangyunjian@huawei.com>
> 
> In fm10k_rx_queue_setup(), we allocate memory for the queue structure but
> not released when thresh check fails.
> 
> Fixes: 6cfe8969c969 ("fm10k: add Rx queue setup/release")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>

Acked-by: Qi Zhang <qi.z.zhang@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi

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

end of thread, other threads:[~2020-09-28 13:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28 12:44 [dpdk-stable] [dpdk-dev] [PATCH] net/fm10k: fix memory leak when thresh check fails wangyunjian
2020-09-28 13:32 ` Zhang, Qi Z

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