]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
Revert "scsi: qla2xxx: Fix memory leak when sending I/O fails"
authorMartin K. Petersen <martin.petersen@oracle.com>
Tue, 19 Nov 2019 04:55:45 +0000 (23:55 -0500)
committerSeth Forshee <seth.forshee@canonical.com>
Mon, 6 Jan 2020 13:37:50 +0000 (07:37 -0600)
BugLink: https://bugs.launchpad.net/bugs/1858424
[ Upstream commit 5a993e507ee65a28eca6690ee11868555c4ca46b ]

This reverts commit 2f856d4e8c23f5ad5221f8da4a2f22d090627f19.

This patch was found to introduce a double free regression. The issue
it originally attempted to address was fixed in patch
f45bca8c5052 ("scsi: qla2xxx: Fix double scsi_done for abort path").

Link: https://lore.kernel.org/r/4BDE2B95-835F-43BE-A32C-2629D7E03E0A@marvell.com
Requested-by: Himanshu Madhani <hmadhani@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/scsi/qla2xxx/qla_os.c

index 0bbc6a82470a5768abea008d19fb43bee89fb3c8..06037e3c785499c02348a03349556291d6c652ea 100644 (file)
@@ -909,8 +909,6 @@ qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
 
 qc24_host_busy_free_sp:
        sp->free(sp);
-       CMD_SP(cmd) = NULL;
-       qla2x00_rel_sp(sp);
 
 qc24_target_busy:
        return SCSI_MLQUEUE_TARGET_BUSY;
@@ -994,8 +992,6 @@ qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
 
 qc24_host_busy_free_sp:
        sp->free(sp);
-       CMD_SP(cmd) = NULL;
-       qla2xxx_rel_qpair_sp(sp->qpair, sp);
 
 qc24_target_busy:
        return SCSI_MLQUEUE_TARGET_BUSY;