All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nvmet: fix memory leak on nvmet_alloc_ctrl()
@ 2021-05-18  8:46 ` Wu Bo
  0 siblings, 0 replies; 8+ messages in thread
From: Wu Bo @ 2021-05-18  8:46 UTC (permalink / raw)
  To: hch, sagi, chaitanya.kulkarni, kbusch, amit.engel, linux-nvme,
	linux-kernel
  Cc: linfeilong, wubo40

From: Wu Bo <wubo40@huawei.com>

When cntlid_min is greater than cntlid_max,
goto wrong label, should be goto out_free_sqs
label. Otherwise there is a memory leak problem
on the nvmet_alloc_ctrl function().

Fixes: 94a39d61f80f ("nvmet: make ctrl-id configurable")
Fixes: 6d65aeab7bf6e ("nvmet: remove unused ctrl->cqs")
Signed-off-by: Wu Bo <wubo40@huawei.com>
---
 drivers/nvme/target/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/target/core.c b/drivers/nvme/target/core.c
index 25cc2ee8de3f..1853db38b682 100644
--- a/drivers/nvme/target/core.c
+++ b/drivers/nvme/target/core.c
@@ -1372,7 +1372,7 @@ u16 nvmet_alloc_ctrl(const char *subsysnqn, const char *hostnqn,
 		goto out_free_changed_ns_list;
 
 	if (subsys->cntlid_min > subsys->cntlid_max)
-		goto out_free_changed_ns_list;
+		goto out_free_sqs;
 
 	ret = ida_simple_get(&cntlid_ida,
 			     subsys->cntlid_min, subsys->cntlid_max,
-- 
2.30.0


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

end of thread, other threads:[~2021-05-19  4:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18  8:46 [PATCH] nvmet: fix memory leak on nvmet_alloc_ctrl() Wu Bo
2021-05-18  8:46 ` Wu Bo
2021-05-18 17:59 ` Sagi Grimberg
2021-05-18 17:59   ` Sagi Grimberg
2021-05-18 20:27 ` Chaitanya Kulkarni
2021-05-18 20:27   ` Chaitanya Kulkarni
2021-05-19  4:32   ` Wu Bo
2021-05-19  4:32     ` Wu Bo

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.