Patch "can: etas_es58x: es58x_init_netdev(): free netdev when register_candev()" has been added to the 6.0-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

    can: etas_es58x: es58x_init_netdev(): free netdev when register_candev()

to the 6.0-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:
     can-etas_es58x-es58x_init_netdev-free-netdev-when-re.patch
and it can be found in the queue-6.0 subdirectory.

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



commit cb656d3b29dc21b878751caadccec4ea748927d0
Author: Zhang Changzhong <zhangchangzhong@xxxxxxxxxx>
Date:   Mon Nov 14 16:14:44 2022 +0800

    can: etas_es58x: es58x_init_netdev(): free netdev when register_candev()
    
    [ Upstream commit 709cb2f9ed2006eb1dc4b36b99d601cd24889ec4 ]
    
    In case of register_candev() fails, clear
    es58x_dev->netdev[channel_idx] and add free_candev(). Otherwise
    es58x_free_netdevs() will unregister the netdev that has never been
    registered.
    
    Fixes: 8537257874e9 ("can: etas_es58x: add core support for ETAS ES58X CAN USB interfaces")
    Signed-off-by: Zhang Changzhong <zhangchangzhong@xxxxxxxxxx>
    Acked-by: Arunachalam Santhanam <Arunachalam.Santhanam@xxxxxxxxxxxx>
    Acked-by: Vincent Mailhol <mailhol.vincent@xxxxxxxxxx>
    Link: https://lore.kernel.org/all/1668413685-23354-1-git-send-email-zhangchangzhong@xxxxxxxxxx
    Signed-off-by: Marc Kleine-Budde <mkl@xxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/can/usb/etas_es58x/es58x_core.c b/drivers/net/can/usb/etas_es58x/es58x_core.c
index 25f863b4f5f0..ddb7c5735c9a 100644
--- a/drivers/net/can/usb/etas_es58x/es58x_core.c
+++ b/drivers/net/can/usb/etas_es58x/es58x_core.c
@@ -2091,8 +2091,11 @@ static int es58x_init_netdev(struct es58x_device *es58x_dev, int channel_idx)
 	netdev->dev_port = channel_idx;
 
 	ret = register_candev(netdev);
-	if (ret)
+	if (ret) {
+		es58x_dev->netdev[channel_idx] = NULL;
+		free_candev(netdev);
 		return ret;
+	}
 
 	netdev_queue_set_dql_min_limit(netdev_get_tx_queue(netdev, 0),
 				       es58x_dev->param->dql_min_limit);



[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