|
@@ -806,9 +806,8 @@ lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
|
|
|
}
|
|
|
|
|
|
/* FLOGI failure */
|
|
|
- lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
|
|
|
- "0100 FLOGI failure Data: x%x x%x "
|
|
|
- "x%x\n",
|
|
|
+ lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
|
|
|
+ "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
|
|
|
irsp->ulpStatus, irsp->un.ulpWord[4],
|
|
|
irsp->ulpTimeout);
|
|
|
goto flogifail;
|
|
@@ -1409,6 +1408,10 @@ lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
|
|
|
goto out;
|
|
|
}
|
|
|
/* PLOGI failed */
|
|
|
+ lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
|
|
|
+ "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
|
|
|
+ ndlp->nlp_DID, irsp->ulpStatus,
|
|
|
+ irsp->un.ulpWord[4]);
|
|
|
/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
|
|
|
if (lpfc_error_lost_link(irsp))
|
|
|
rc = NLP_STE_FREED_NODE;
|
|
@@ -1577,6 +1580,10 @@ lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
|
|
|
goto out;
|
|
|
}
|
|
|
/* PRLI failed */
|
|
|
+ lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
|
|
|
+ "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
|
|
|
+ ndlp->nlp_DID, irsp->ulpStatus,
|
|
|
+ irsp->un.ulpWord[4]);
|
|
|
/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
|
|
|
if (lpfc_error_lost_link(irsp))
|
|
|
goto out;
|
|
@@ -1860,6 +1867,10 @@ lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
|
|
|
goto out;
|
|
|
}
|
|
|
/* ADISC failed */
|
|
|
+ lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
|
|
|
+ "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
|
|
|
+ ndlp->nlp_DID, irsp->ulpStatus,
|
|
|
+ irsp->un.ulpWord[4]);
|
|
|
/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
|
|
|
if (!lpfc_error_lost_link(irsp))
|
|
|
lpfc_disc_state_machine(vport, ndlp, cmdiocb,
|
|
@@ -2009,6 +2020,10 @@ lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
|
|
|
/* ELS command is being retried */
|
|
|
goto out;
|
|
|
/* LOGO failed */
|
|
|
+ lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
|
|
|
+ "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
|
|
|
+ ndlp->nlp_DID, irsp->ulpStatus,
|
|
|
+ irsp->un.ulpWord[4]);
|
|
|
/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
|
|
|
if (lpfc_error_lost_link(irsp))
|
|
|
goto out;
|