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>
This commit is contained in:
parent
6cbfb1ebbb
commit
334614912b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue