Patch "scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset" has been added to the 5.14-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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

    scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset

to the 5.14-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:
     scsi-lpfc-wait-for-successful-restart-of-sli3-adapte.patch
and it can be found in the queue-5.14 subdirectory.

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



commit 52fcb192f36efb7dfe3b6d4c674426be7f20fd40
Author: James Smart <jsmart2021@xxxxxxxxx>
Date:   Wed Oct 20 14:14:11 2021 -0700

    scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset
    
    [ Upstream commit d305c253af693e69a36cedec880aca6d0c6d789d ]
    
    A prior patch introduced HBA_NEEDS_CFG_PORT flag logic, but in
    lpfc_sli_brdrestart_s3() code path, right after HBA_NEEDS_CFG_PORT is set,
    the phba->hba_flag is cleared in lpfc_sli_brdreset().
    
    Fix by calling lpfc_sli_chipset_init() to wait for successful restart of
    the HBA in lpfc_host_reset_handler() after lpfc_sli_brdrestart().
    
    lpfc_sli_chipset_init() sets the HBA_NEEDS_CFG_PORT flag so that the
    lpfc_sli_hba_setup() routine from lpfc_online() will execute
    lpfc_sli_config_port() initialization step when the brdrestart is
    successful.
    
    Link: https://lore.kernel.org/r/20211020211417.88754-3-jsmart2021@xxxxxxxxx
    Fixes: d2f2547efd39 ("scsi: lpfc: Fix auto sli_mode and its effect on CONFIG_PORT for SLI3")
    Co-developed-by: Justin Tee <justin.tee@xxxxxxxxxxxx>
    Signed-off-by: Justin Tee <justin.tee@xxxxxxxxxxxx>
    Signed-off-by: James Smart <jsmart2021@xxxxxxxxx>
    Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/scsi/lpfc/lpfc_scsi.c b/drivers/scsi/lpfc/lpfc_scsi.c
index 1b248c237be1c..e80c3802d587a 100644
--- a/drivers/scsi/lpfc/lpfc_scsi.c
+++ b/drivers/scsi/lpfc/lpfc_scsi.c
@@ -6487,6 +6487,13 @@ lpfc_host_reset_handler(struct scsi_cmnd *cmnd)
 	if (rc)
 		goto error;
 
+	/* Wait for successful restart of adapter */
+	if (phba->sli_rev < LPFC_SLI_REV4) {
+		rc = lpfc_sli_chipset_init(phba);
+		if (rc)
+			goto error;
+	}
+
 	rc = lpfc_online(phba);
 	if (rc)
 		goto error;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux