mirror of https://gitee.com/openkylin/linux.git
scsi: qedf: Check for tm_flags instead of cmd_type during cleanup
cmd_type is over written to QEDF_CLEANUP during cleanup, so check for tm_flags. Signed-off-by: Saurav Kashyap <skashyap@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
feac47f507
commit
f2c98af4a2
|
@ -2174,7 +2174,8 @@ int qedf_initiate_cleanup(struct qedf_ioreq *io_req,
|
||||||
/* If it TASK MGMT handle it, reference will be decreased
|
/* If it TASK MGMT handle it, reference will be decreased
|
||||||
* in qedf_execute_tmf
|
* in qedf_execute_tmf
|
||||||
*/
|
*/
|
||||||
if (io_req->cmd_type == QEDF_TASK_MGMT_CMD) {
|
if (io_req->tm_flags == FCP_TMF_LUN_RESET ||
|
||||||
|
io_req->tm_flags == FCP_TMF_TGT_RESET) {
|
||||||
clear_bit(QEDF_CMD_OUTSTANDING, &io_req->flags);
|
clear_bit(QEDF_CMD_OUTSTANDING, &io_req->flags);
|
||||||
io_req->sc_cmd = NULL;
|
io_req->sc_cmd = NULL;
|
||||||
complete(&io_req->tm_done);
|
complete(&io_req->tm_done);
|
||||||
|
|
Loading…
Reference in New Issue