]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
usbnet: ipheth: race between ipheth_close and error handling
authorOliver Neukum <oneukum@suse.com>
Tue, 6 Aug 2024 17:28:05 +0000 (19:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Sep 2024 09:06:49 +0000 (11:06 +0200)
[ Upstream commit e5876b088ba03a62124266fa20d00e65533c7269 ]

ipheth_sndbulk_callback() can submit carrier_work
as a part of its error handling. That means that
the driver must make sure that the work is cancelled
after it has made sure that no more URB can terminate
with an error condition.

Hence the order of actions in ipheth_close() needs
to be inverted.

Signed-off-by: Oliver Neukum <oneukum@suse.com>
Signed-off-by: Foster Snowhill <forst@pen.gy>
Tested-by: Georgi Valkov <gvalkov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/usb/ipheth.c

index d56e276e4d805e460966d40450ce0ee75a3d3e67..4485388dcff2ef51f5637689fdd9b5ee902c6406 100644 (file)
@@ -353,8 +353,8 @@ static int ipheth_close(struct net_device *net)
 {
        struct ipheth_device *dev = netdev_priv(net);
 
-       cancel_delayed_work_sync(&dev->carrier_work);
        netif_stop_queue(net);
+       cancel_delayed_work_sync(&dev->carrier_work);
        return 0;
 }