All of lore.kernel.org
 help / color / mirror / Atom feed
* Patch "lpfc: Fix Device discovery failures during switch reboot test." has been added to the 4.4-stable tree
@ 2017-08-31  5:58 gregkh
  0 siblings, 0 replies; only message in thread
From: gregkh @ 2017-08-31  5:58 UTC (permalink / raw)
  To: james.smart, dick.kennedy, gpiccoli, gregkh, james.smart,
	martin.petersen
  Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    lpfc: Fix Device discovery failures during switch reboot test.

to the 4.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     lpfc-fix-device-discovery-failures-during-switch-reboot-test.patch
and it can be found in the queue-4.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From 342b59caa66240b670285d519fdfe2c44289b516 Mon Sep 17 00:00:00 2001
From: James Smart <james.smart@broadcom.com>
Date: Thu, 31 Mar 2016 14:12:31 -0700
Subject: lpfc: Fix Device discovery failures during switch reboot test.

From: James Smart <james.smart@broadcom.com>

commit 342b59caa66240b670285d519fdfe2c44289b516 upstream.

When the switch is rebooted, the lpfc driver fails to log
into the fabric, and Unexpected timeout message is seen.

Fix: Do not issue RegVFI if the FLOGI was internally aborted.

Signed-off-by: Dick Kennedy <dick.kennedy@avagotech.com>
Signed-off-by: James Smart <james.smart@avagotech.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/scsi/lpfc/lpfc_els.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

--- a/drivers/scsi/lpfc/lpfc_els.c
+++ b/drivers/scsi/lpfc/lpfc_els.c
@@ -1054,7 +1054,10 @@ stop_rr_fcf_flogi:
 					lpfc_sli4_unreg_all_rpis(vport);
 				}
 			}
-			lpfc_issue_reg_vfi(vport);
+
+			/* Do not register VFI if the driver aborted FLOGI */
+			if (!lpfc_error_lost_link(irsp))
+				lpfc_issue_reg_vfi(vport);
 			lpfc_nlp_put(ndlp);
 			goto out;
 		}


Patches currently in stable-queue which might be from james.smart@broadcom.com are

queue-4.4/lpfc-fix-device-discovery-failures-during-switch-reboot-test.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-08-31  5:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-31  5:58 Patch "lpfc: Fix Device discovery failures during switch reboot test." has been added to the 4.4-stable tree gregkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.