projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25c12b4
)
net: usb: usbnet: fix race in probe failure
author
Oliver Neukum
<oneukum@suse.com>
Thu, 10 Oct 2024 13:19:14 +0000
(15:19 +0200)
committer
Paolo Abeni
<pabeni@redhat.com>
Tue, 15 Oct 2024 09:37:25 +0000
(11:37 +0200)
The same bug as in the disconnect code path also exists
in the case of a failure late during the probe process.
The flag must also be set.
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Fixes:
1da177e4c3f4
("Linux-2.6.12-rc2")
Link:
https://patch.msgid.link/20241010131934.1499695-1-oneukum@suse.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/usb/usbnet.c
patch
|
blob
|
history
diff --git
a/drivers/net/usb/usbnet.c
b/drivers/net/usb/usbnet.c
index
2506aa8
..
ee1b5fd
100644
(file)
--- a/
drivers/net/usb/usbnet.c
+++ b/
drivers/net/usb/usbnet.c
@@
-1870,6
+1870,7
@@
out1:
* may trigger an error resubmitting itself and, worse,
* schedule a timer. So we kill it all just in case.
*/
+ usbnet_mark_going_away(dev);
cancel_work_sync(&dev->kevent);
del_timer_sync(&dev->delay);
free_netdev(net);