public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libertas: fix memory leak in lbs_init_adapter()
@ 2022-12-08 12:14 Zhengchao Shao
  2022-12-08 12:52 ` Jiri Pirko
  2022-12-14 12:22 ` wifi: " Kalle Valo
  0 siblings, 2 replies; 4+ messages in thread
From: Zhengchao Shao @ 2022-12-08 12:14 UTC (permalink / raw)
  To: libertas-dev, linux-wireless, netdev, kvalo, davem, edumazet,
	kuba, pabeni
  Cc: johannes.berg, dcbw, linville, hs4233, weiyongjun1, yuehaibing,
	shaozhengchao

When kfifo_alloc() failed in lbs_init_adapter(), cmd buffer is not
released. Add free memory to processing error path.

Fixes: 7919b89c8276 ("libertas: convert libertas driver to use an event/cmdresp queue")
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
---
 drivers/net/wireless/marvell/libertas/main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/wireless/marvell/libertas/main.c b/drivers/net/wireless/marvell/libertas/main.c
index 8f5220cee112..ae975304cfcf 100644
--- a/drivers/net/wireless/marvell/libertas/main.c
+++ b/drivers/net/wireless/marvell/libertas/main.c
@@ -869,6 +869,7 @@ static int lbs_init_adapter(struct lbs_private *priv)
 	ret = kfifo_alloc(&priv->event_fifo, sizeof(u32) * 16, GFP_KERNEL);
 	if (ret) {
 		pr_err("Out of memory allocating event FIFO buffer\n");
+		lbs_free_cmd_buffer(priv);
 		goto out;
 	}
 
-- 
2.34.1


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

end of thread, other threads:[~2022-12-30  1:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-08 12:14 [PATCH] libertas: fix memory leak in lbs_init_adapter() Zhengchao Shao
2022-12-08 12:52 ` Jiri Pirko
2022-12-14 12:22 ` wifi: " Kalle Valo
2022-12-30  1:02   ` Info Skymem

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox