diff options
author | James Smart <james.smart@emulex.com> | 2013-01-04 00:43:19 +0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-01-30 04:07:56 +0400 |
commit | 5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f (patch) | |
tree | 9442cbee7b1673aee01457e24e465bccfe9bcd4d /drivers/scsi/lpfc | |
parent | 303f2f9c5e86f00ca98b942498297f5758e302c1 (diff) | |
download | linux-5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f.tar.xz |
[SCSI] lpfc 8.3.37: Fixed exhausted retry for plogi to nameserver.
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/lpfc')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_els.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/scsi/lpfc/lpfc_els.c b/drivers/scsi/lpfc/lpfc_els.c index f0e2fae1214c..08d156a9094f 100644 --- a/drivers/scsi/lpfc/lpfc_els.c +++ b/drivers/scsi/lpfc/lpfc_els.c @@ -3122,6 +3122,13 @@ lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb, case IOERR_SEQUENCE_TIMEOUT: case IOERR_INVALID_RPI: + if (cmd == ELS_CMD_PLOGI && + did == NameServer_DID) { + /* Continue forever if plogi to */ + /* the nameserver fails */ + maxretry = 0; + delay = 100; + } retry = 1; break; } |