Patch "atlantic: Fix issue in the pm resume flow." has been added to the 5.10-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

    atlantic: Fix issue in the pm resume flow.

to the 5.10-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:
     atlantic-fix-issue-in-the-pm-resume-flow.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 8fda30d07b2c73f65cbe27e10aa01ea34de26d02
Author: Sudarsana Reddy Kalluru <skalluru@xxxxxxxxxxx>
Date:   Thu Sep 23 03:16:05 2021 -0700

    atlantic: Fix issue in the pm resume flow.
    
    [ Upstream commit 4d88c339c423eefe2fd48215016cb0c75fcb4c4d ]
    
    After fixing hibernation resume flow, another usecase was found which
    should be explicitly handled - resume when device is in "down" state.
    Invoke aq_nic_init jointly with aq_nic_start only if ndev was already
    up during suspend/hibernate. We still need to perform nic_deinit() if
    caller requests for it, to handle the freeze/resume scenarios.
    
    Fixes: 57f780f1c433 ("atlantic: Fix driver resume flow.")
    Signed-off-by: Sudarsana Reddy Kalluru <skalluru@xxxxxxxxxxx>
    Signed-off-by: Igor Russkikh <irusskikh@xxxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
index f26d03735619..5b996330f228 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
@@ -419,13 +419,13 @@ static int atl_resume_common(struct device *dev, bool deep)
 	if (deep) {
 		/* Reinitialize Nic/Vecs objects */
 		aq_nic_deinit(nic, !nic->aq_hw->aq_nic_cfg->wol);
+	}
 
+	if (netif_running(nic->ndev)) {
 		ret = aq_nic_init(nic);
 		if (ret)
 			goto err_exit;
-	}
 
-	if (netif_running(nic->ndev)) {
 		ret = aq_nic_start(nic);
 		if (ret)
 			goto err_exit;



[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