mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
scsi: pm8001: Fix task leak in pm8001_send_abort_all()
In pm8001_send_abort_all(), make sure to free the allocated sas task if pm8001_tag_alloc() or pm8001_mpi_build_cmd() fail. Link: https://lore.kernel.org/r/20220220031810.738362-21-damien.lemoal@opensource.wdc.com Reviewed-by: John Garry <john.garry@huawei.com> Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
7fb23a785b
commit
f90a74892f
@ -1764,7 +1764,6 @@ static void pm8001_send_abort_all(struct pm8001_hba_info *pm8001_ha,
|
||||
}
|
||||
|
||||
task = sas_alloc_slow_task(GFP_ATOMIC);
|
||||
|
||||
if (!task) {
|
||||
pm8001_dbg(pm8001_ha, FAIL, "cannot allocate task\n");
|
||||
return;
|
||||
@ -1773,8 +1772,10 @@ static void pm8001_send_abort_all(struct pm8001_hba_info *pm8001_ha,
|
||||
task->task_done = pm8001_task_done;
|
||||
|
||||
res = pm8001_tag_alloc(pm8001_ha, &ccb_tag);
|
||||
if (res)
|
||||
if (res) {
|
||||
sas_free_task(task);
|
||||
return;
|
||||
}
|
||||
|
||||
ccb = &pm8001_ha->ccb_info[ccb_tag];
|
||||
ccb->device = pm8001_ha_dev;
|
||||
@ -1791,8 +1792,10 @@ static void pm8001_send_abort_all(struct pm8001_hba_info *pm8001_ha,
|
||||
|
||||
ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &task_abort,
|
||||
sizeof(task_abort), 0);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
sas_free_task(task);
|
||||
pm8001_tag_free(pm8001_ha, ccb_tag);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user