summaryrefslogtreecommitdiff
path: root/drivers/scsi
diff options
context:
space:
mode:
authorAndrew Vasquez <andrew.vasquez@qlogic.com>2007-01-29 10:22:23 -0800
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2007-01-31 11:08:02 -0600
commit2603221a285e32a1033dcefa8de38a989a7633e0 (patch)
tree197ade5f1acc3c779dc569d5e8abf7b6990642cb /drivers/scsi
parentb1372bc90ffd5e2d2543e10924c1971a86e25310 (diff)
downloadlinux-3.10-2603221a285e32a1033dcefa8de38a989a7633e0.tar.gz
linux-3.10-2603221a285e32a1033dcefa8de38a989a7633e0.tar.bz2
linux-3.10-2603221a285e32a1033dcefa8de38a989a7633e0.zip
[SCSI] qla2xxx: Set correct cabling state during initialization.
Previous work to add asynchronous-scsi-scanning support (d19044c32baadeb80e135027124a9e845c6f057c) caused peculiar semantic changes when no cabling was attached to the HBA whereby unneeded and intrusive 'error-handling' would take place due to the initial link state being unset. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/qla2xxx/qla_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
index 570f5f8e6c2..3757d747958 100644
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -65,7 +65,7 @@ qla2x00_initialize_adapter(scsi_qla_host_t *ha)
ha->flags.reset_active = 0;
atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
atomic_set(&ha->loop_state, LOOP_DOWN);
- ha->device_flags = 0;
+ ha->device_flags = DFLG_NO_CABLE;
ha->dpc_flags = 0;
ha->flags.management_server_logged_in = 0;
ha->marker_needed = 0;