aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_sli.c
diff options
context:
space:
mode:
authorJames Smart <James.Smart@Emulex.Com>2008-02-08 18:50:14 -0500
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-02-11 18:52:58 -0500
commit7f5f3d0d02aa2f124e764aee5c775589ce72fd42 (patch)
tree511bc7777d9053acbb04215bb682f534d88942f6 /drivers/scsi/lpfc/lpfc_sli.c
parentdb2378e09151c855e8f92c1b4b2fb4fc5cd8cb40 (diff)
[SCSI] lpfc 8.2.5 : Miscellaneous discovery Fixes
Miscellaneous discovery fixes: - Flush RSCN buffers on vports when reseting HBA. - Fix incorrect FLOGI after vport reg failed - Fix a potential fabric ELS race condition - Fix handling of failed PLOGI command under high lip rates - Fix FDISC handling - Fix debug logging for npiv handling Signed-off-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_sli.c')
-rw-r--r--drivers/scsi/lpfc/lpfc_sli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
index 456b8ec7753b..c8c5b48baa66 100644
--- a/drivers/scsi/lpfc/lpfc_sli.c
+++ b/drivers/scsi/lpfc/lpfc_sli.c
@@ -2623,14 +2623,14 @@ lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
2623 spin_unlock_irqrestore(&phba->hbalock, drvr_flag); 2623 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
2624 2624
2625 /* Mbox command <mbxCommand> cannot issue */ 2625 /* Mbox command <mbxCommand> cannot issue */
2626 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag) 2626 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag);
2627 return MBX_NOT_FINISHED; 2627 return MBX_NOT_FINISHED;
2628 } 2628 }
2629 2629
2630 if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT && 2630 if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT &&
2631 !(readl(phba->HCregaddr) & HC_MBINT_ENA)) { 2631 !(readl(phba->HCregaddr) & HC_MBINT_ENA)) {
2632 spin_unlock_irqrestore(&phba->hbalock, drvr_flag); 2632 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
2633 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag) 2633 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag);
2634 return MBX_NOT_FINISHED; 2634 return MBX_NOT_FINISHED;
2635 } 2635 }
2636 2636