scsi: qla2xxx: Always check the qla2x00_wait_for_hba_online() return value
This patch fixes several Coverity complaints about not always checking the qla2x00_wait_for_hba_online() return value. Cc: Himanshu Madhani <hmadhani@marvell.com> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Tested-by: Himanshu Madhani <hmadhani@marvell.com> Reviewed-by: Himanshu Madhani <hmadhani@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
c4707fccb3
commit
e6803efae5
|
@ -724,7 +724,8 @@ qla2x00_sysfs_write_reset(struct file *filp, struct kobject *kobj,
|
|||
break;
|
||||
} else {
|
||||
/* Make sure FC side is not in reset */
|
||||
qla2x00_wait_for_hba_online(vha);
|
||||
WARN_ON_ONCE(qla2x00_wait_for_hba_online(vha) !=
|
||||
QLA_SUCCESS);
|
||||
|
||||
/* Issue MPI reset */
|
||||
scsi_block_requests(vha->host);
|
||||
|
|
|
@ -6673,7 +6673,8 @@ qlt_enable_vha(struct scsi_qla_host *vha)
|
|||
} else {
|
||||
set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
|
||||
qla2xxx_wake_dpc(base_vha);
|
||||
qla2x00_wait_for_hba_online(base_vha);
|
||||
WARN_ON_ONCE(qla2x00_wait_for_hba_online(base_vha) !=
|
||||
QLA_SUCCESS);
|
||||
}
|
||||
mutex_unlock(&ha->optrom_mutex);
|
||||
}
|
||||
|
@ -6704,7 +6705,9 @@ static void qlt_disable_vha(struct scsi_qla_host *vha)
|
|||
|
||||
set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
|
||||
qla2xxx_wake_dpc(vha);
|
||||
qla2x00_wait_for_hba_online(vha);
|
||||
if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
|
||||
ql_dbg(ql_dbg_tgt, vha, 0xe081,
|
||||
"qla2x00_wait_for_hba_online() failed\n");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue