summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Smart2013-01-03 21:43:19 +0100
committerJames Bottomley2013-01-30 01:07:56 +0100
commit5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f (patch)
tree9442cbee7b1673aee01457e24e465bccfe9bcd4d
parent[SCSI] lpfc 8.3.37: Fixed ELS_REC received on the unsolicited receive queue (diff)
downloadkernel-qcow2-linux-5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f.tar.gz
kernel-qcow2-linux-5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f.tar.xz
kernel-qcow2-linux-5b5b36a92b34cf78bb3f2fec2127846b12b4fe2f.zip
[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>
-rw-r--r--drivers/scsi/lpfc/lpfc_els.c7
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;
}