[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240425093744.22207-1-hyperlyzcs@gmail.com>
Date: Thu, 25 Apr 2024 17:37:44 +0800
From: Yongzhi Liu <hyperlyzcs@...il.com>
To: skashyap@...vell.com,
njavali@...vell.com,
martin.petersen@...cle.com,
James.Bottomley@...senPartnership.com
Cc: himanshu.madhani@...cle.com,
GR-QLogic-Storage-Upstream@...vell.com,
linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org,
jitxie@...cent.com,
huntazhang@...cent.com,
Yongzhi Liu <hyperlyzcs@...il.com>
Subject: [PATCH] scsi: qla2xxx: Fix double free of fcport in error handling path
When dma_alloc_coherent() or qla2x00_start_sp() return an error,
the callback function qla2x00_els_dcmd_sp_free in qla2x00_sp_release
will call qla2x00_free_fcport() to kfree fcport. We shouldn't call
qla2x00_free_fcport() again in the error handling path.
Fix this by cleaning up the redundant qla2x00_free_fcport().
Fixes: 82f522ae0d97 ("scsi: qla2xxx: Fix double free of fcport")
Signed-off-by: Yongzhi Liu <hyperlyzcs@...il.com>
---
drivers/scsi/qla2xxx/qla_iocb.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/scsi/qla2xxx/qla_iocb.c b/drivers/scsi/qla2xxx/qla_iocb.c
index 0b41e8a06602..faec66bd1951 100644
--- a/drivers/scsi/qla2xxx/qla_iocb.c
+++ b/drivers/scsi/qla2xxx/qla_iocb.c
@@ -2751,7 +2751,6 @@ qla24xx_els_dcmd_iocb(scsi_qla_host_t *vha, int els_opcode,
if (!elsio->u.els_logo.els_logo_pyld) {
/* ref: INIT */
kref_put(&sp->cmd_kref, qla2x00_sp_release);
- qla2x00_free_fcport(fcport);
return QLA_FUNCTION_FAILED;
}
@@ -2776,7 +2775,6 @@ qla24xx_els_dcmd_iocb(scsi_qla_host_t *vha, int els_opcode,
if (rval != QLA_SUCCESS) {
/* ref: INIT */
kref_put(&sp->cmd_kref, qla2x00_sp_release);
- qla2x00_free_fcport(fcport);
return QLA_FUNCTION_FAILED;
}
--
2.36.1
Powered by blists - more mailing lists