Patch "nvmet: fix memory leak in nvmet_alloc_ctrl()" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    nvmet: fix memory leak in nvmet_alloc_ctrl()

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     nvmet-fix-memory-leak-in-nvmet_alloc_ctrl.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 9d087508df12ed278bf8ae6fe7c8d1e622cda7c1
Author: Wu Bo <wubo40@xxxxxxxxxx>
Date:   Wed May 19 13:01:09 2021 +0800

    nvmet: fix memory leak in nvmet_alloc_ctrl()
    
    [ Upstream commit fec356a61aa3d3a66416b4321f1279e09e0f256f ]
    
    When creating ctrl in nvmet_alloc_ctrl(), if the cntlid_min is larger
    than cntlid_max of the subsystem, and jumps to the
    "out_free_changed_ns_list" label, but the ctrl->sqs lack of be freed.
    Fix this by jumping to the "out_free_sqs" label.
    
    Fixes: 94a39d61f80f ("nvmet: make ctrl-id configurable")
    Signed-off-by: Wu Bo <wubo40@xxxxxxxxxx>
    Reviewed-by: Sagi Grimberg <sagi@xxxxxxxxxxx>
    Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@xxxxxxx>
    Signed-off-by: Christoph Hellwig <hch@xxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/nvme/target/core.c b/drivers/nvme/target/core.c
index 870d06cfd815..46e4f7ea34c8 100644
--- a/drivers/nvme/target/core.c
+++ b/drivers/nvme/target/core.c
@@ -1360,7 +1360,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,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux