diff options
author | Oliver Neukum <oneukum@suse.com> | 2016-03-07 05:31:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-07 11:40:16 -0500 |
commit | 1666984c8625b3db19a9abc298931d35ab7bc64b (patch) | |
tree | 432871a9f48c74f45345621a49690ba809023dd1 | |
parent | a383b7f0e0ba9f8610bdf88a58591a9cca96c38e (diff) |
usbnet: cleanup after bind() in probe()
In case bind() works, but a later error forces bailing
in probe() in error cases work and a timer may be scheduled.
They must be killed. This fixes an error case related to
the double free reported in
http://www.spinics.net/lists/netdev/msg367669.html
and needs to go on top of Linus' fix to cdc-ncm.
Signed-off-by: Oliver Neukum <ONeukum@suse.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/usb/usbnet.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index 0b0ba7ef14e4..10798128c03f 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c | |||
@@ -1769,6 +1769,13 @@ out3: | |||
1769 | if (info->unbind) | 1769 | if (info->unbind) |
1770 | info->unbind (dev, udev); | 1770 | info->unbind (dev, udev); |
1771 | out1: | 1771 | out1: |
1772 | /* subdrivers must undo all they did in bind() if they | ||
1773 | * fail it, but we may fail later and a deferred kevent | ||
1774 | * may trigger an error resubmitting itself and, worse, | ||
1775 | * schedule a timer. So we kill it all just in case. | ||
1776 | */ | ||
1777 | cancel_work_sync(&dev->kevent); | ||
1778 | del_timer_sync(&dev->delay); | ||
1772 | free_netdev(net); | 1779 | free_netdev(net); |
1773 | out: | 1780 | out: |
1774 | return status; | 1781 | return status; |