]> git.baikalelectronics.ru Git - kernel.git/commitdiff
scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device()
authorYang Yingliang <yangyingliang@huawei.com>
Fri, 11 Nov 2022 04:30:12 +0000 (12:30 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:41:19 +0000 (11:41 +0100)
[ Upstream commit c9720b1bf63670f06e5a461da319af722d782cb1 ]

If hpsa_sas_port_add_rphy() returns an error, the 'rphy' allocated in
sas_end_device_alloc() needs to be freed. Address this by calling
sas_rphy_free() in the error path.

Fixes: ad7a04aed518 ("hpsa: add in sas transport class")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20221111043012.1074466-1-yangyingliang@huawei.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/hpsa.c

index 9d5d0c911130f1fb065a9607212d5900b5d6f7f9..ba125ed7e06a7c94c37dd32d01bc149bae24f16b 100644 (file)
@@ -9800,10 +9800,12 @@ static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
 
        rc = hpsa_sas_port_add_rphy(hpsa_sas_port, rphy);
        if (rc)
-               goto free_sas_port;
+               goto free_sas_rphy;
 
        return 0;
 
+free_sas_rphy:
+       sas_rphy_free(rphy);
 free_sas_port:
        hpsa_free_sas_port(hpsa_sas_port);
        device->sas_port = NULL;