aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx
diff options
context:
space:
mode:
authorAndrew Vasquez <andrew.vasquez@qlogic.com>2006-06-23 19:11:17 -0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-06-26 17:25:00 -0400
commit7d7abc77cc469ff41dde8eea606e1dab88d4ba86 (patch)
treed1839ee53f595b8d44e0ad953129ddf5bc092c0f /drivers/scsi/qla2xxx
parent0181944fe647cae18d545ac1167df3d15d393701 (diff)
[SCSI] qla2xxx: Correct 'loop-down' determination logic in qla2x00_fw_ready().
As there is no point in failing the initialization process when firmware informs the host software that it could not transition beyond a CONFIG_WAIT nor WAIT_FOR_LOGIN state. Previous logic would mark such conditions as a general *failure* and subsequently tear-down the scsi-host during initialization. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r--drivers/scsi/qla2xxx/qla_init.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
index 761dd1f7e3f1..c7ab66877fb7 100644
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -1273,8 +1273,7 @@ qla2x00_fw_ready(scsi_qla_host_t *ha)
1273 rval = QLA_FUNCTION_FAILED; 1273 rval = QLA_FUNCTION_FAILED;
1274 1274
1275 if (atomic_read(&ha->loop_down_timer) && 1275 if (atomic_read(&ha->loop_down_timer) &&
1276 (fw_state >= FSTATE_LOSS_OF_SYNC || 1276 fw_state != FSTATE_READY) {
1277 fw_state == FSTATE_WAIT_AL_PA)) {
1278 /* Loop down. Timeout on min_wait for states 1277 /* Loop down. Timeout on min_wait for states
1279 * other than Wait for Login. 1278 * other than Wait for Login.
1280 */ 1279 */