diff mbox series

net: hso: do not unregister if not registered

Message ID 89a423a522834affadda4aaf7ab4d333@exmbxprd18.ad.ufl.edu
State Changes Requested
Delegated to: David Miller
Headers show
Series net: hso: do not unregister if not registered | expand

Commit Message

Yavuz, Tuba Feb. 9, 2019, 4:24 p.m. UTC
On an error path inside the hso_create_net_device function of the hso
driver, hso_free_net_device gets called. This causes potentially a
negative reference count in the net device if register_netdev has not
been called yet as hso_free_net_device calls unregister_netdev
regardless. I think the driver should distinguish these cases and call
unregister_netdev only if register_netdev has been called.

Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>
---

Comments

David Miller Feb. 9, 2019, 5:35 p.m. UTC | #1
From: "Yavuz, Tuba" <tuba@ece.ufl.edu>
Date: Sat, 9 Feb 2019 16:24:20 +0000

> 
> 
> On an error path inside the hso_create_net_device function of the hso
> driver, hso_free_net_device gets called. This causes potentially a
> negative reference count in the net device if register_netdev has not
> been called yet as hso_free_net_device calls unregister_netdev
> regardless. I think the driver should distinguish these cases and call
> unregister_netdev only if register_netdev has been called.
> 
> Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>

Your patch is still corrupted.

Email this patch to yourself and try to apply it to a source tree.
You will see that it won't work.

Please do not post this patch again until you have fixed this problem
and have also successfully applied a patch you have test emailed to
yourself.

Thanks.
diff mbox series

Patch

--- linux-stable/drivers/net/usb/hso.c.orig	2019-01-27 14:45:58.232683119 -0500
+++ linux-stable/drivers/net/usb/hso.c	2019-02-05 17:54:17.056496019 -0500
@@ -2377,7 +2377,9 @@  static void hso_free_net_device(struct h
 
 	remove_net_device(hso_net->parent);
 
-	if (hso_net->net)
+	if (hso_net->net &&
+	    hso_net->net->reg_state == NETREG_REGISTERED)
 		unregister_netdev(hso_net->net);
 
 	/* start freeing */