diff options
author | Chad Dupuis <chad.dupuis@qlogic.com> | 2015-04-09 18:59:57 (GMT) |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-04-10 15:41:30 (GMT) |
commit | 334614912b252b49f2e218e3efaddf86edd7f91a (patch) | |
tree | 7478c96a6733c59e8be2856c591e8f1c091d0a49 /drivers/scsi | |
parent | 6cbfb1ebbbcdc49eac2f49e146452507b05fcae5 (diff) | |
download | linux-334614912b252b49f2e218e3efaddf86edd7f91a.tar.xz |
qla2xxx: Increase the wait time for firmware to be ready for P3P.
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@qlogic.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index e59f25b..cb294e5 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -2243,8 +2243,11 @@ qla2x00_fw_ready(scsi_qla_host_t *vha) rval = QLA_SUCCESS; - /* 20 seconds for loop down. */ - min_wait = 20; + /* Time to wait for loop down */ + if (IS_P3P_TYPE(ha)) + min_wait = 30; + else + min_wait = 20; /* * Firmware should take at most one RATOV to login, plus 5 seconds for |