|
@@ -273,8 +273,10 @@ static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
|
|
|
|
|
|
zfcp_erp_wait(adapter);
|
|
|
ret = fc_block_scsi_eh(scpnt);
|
|
|
- if (ret)
|
|
|
+ if (ret) {
|
|
|
+ zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL);
|
|
|
return ret;
|
|
|
+ }
|
|
|
|
|
|
if (!(atomic_read(&adapter->status) &
|
|
|
ZFCP_STATUS_COMMON_RUNNING)) {
|
|
@@ -282,8 +284,10 @@ static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
|
|
|
return SUCCESS;
|
|
|
}
|
|
|
}
|
|
|
- if (!fsf_req)
|
|
|
+ if (!fsf_req) {
|
|
|
+ zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL);
|
|
|
return FAILED;
|
|
|
+ }
|
|
|
|
|
|
wait_for_completion(&fsf_req->completion);
|
|
|
|