Patch "net: atlantic: fix potential memory leak in aq_ndev_close()" has been added to the 5.19-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

    net: atlantic: fix potential memory leak in aq_ndev_close()

to the 5.19-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:
     net-atlantic-fix-potential-memory-leak-in-aq_ndev_cl.patch
and it can be found in the queue-5.19 subdirectory.

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



commit f80bf7c854e6d01a4b715727b31b2e96aff566bc
Author: Jianglei Nie <niejianglei2021@xxxxxxx>
Date:   Wed Sep 14 09:42:38 2022 +0800

    net: atlantic: fix potential memory leak in aq_ndev_close()
    
    [ Upstream commit 65e5d27df61283e5390f04b09dc79cd832f95607 ]
    
    If aq_nic_stop() fails, aq_ndev_close() returns err without calling
    aq_nic_deinit() to release the relevant memory and resource, which
    will lead to a memory leak.
    
    We can fix it by deleting the if condition judgment and goto statement to
    call aq_nic_deinit() directly after aq_nic_stop() to fix the memory leak.
    
    Signed-off-by: Jianglei Nie <niejianglei2021@xxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_main.c b/drivers/net/ethernet/aquantia/atlantic/aq_main.c
index 88595863d8bc..8a0af371e7dc 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_main.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_main.c
@@ -94,11 +94,8 @@ static int aq_ndev_close(struct net_device *ndev)
 	int err = 0;
 
 	err = aq_nic_stop(aq_nic);
-	if (err < 0)
-		goto err_exit;
 	aq_nic_deinit(aq_nic, true);
 
-err_exit:
 	return err;
 }
 



[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