diff options
author | James Smart <[email protected]> | 2016-07-06 12:36:06 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2016-07-15 15:25:06 -0400 |
commit | 0e916ee71d2f0453dbfe402cd8ca24f9668518ad (patch) | |
tree | 7e0df2fb3d0bc81ecbd6bd275509df0f13a5e50f | |
parent | c92c841cc72ae7eb665fb9ea2a1c991e214c3807 (diff) |
lpfc: Correct Port reset resulting in FC port going offline
Correct Port reset resulting in FC port going offline
Signed-off-by: Dick Kennedy <[email protected]>
Signed-off-by: James Smart <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index 6e11574ac6f2..f4b3548f101a 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c @@ -1595,9 +1595,10 @@ lpfc_sli4_port_sta_fn_reset(struct lpfc_hba *phba, int mbx_action, * ready before performing reset. */ rc = lpfc_sli4_pdev_status_reg_wait(phba); - if (!rc) + if (rc) return rc; } + /* need reset: attempt for port recovery */ if (en_rn_msg) lpfc_printf_log(phba, KERN_ERR, LOG_INIT, |