Skip to content

Commit 10a7796

Browse files
ecsvkuba-moo
authored andcommitted
batman-adv: Fix double-hold of meshif when getting enabled
It was originally meant to replace the dev_hold with netdev_hold. But this was missed in batadv_hardif_enable_interface(). As result, there was an imbalance and a hang when trying to remove the mesh-interface with (previously) active hard-interfaces: unregister_netdevice: waiting for batadv0 to become free. Usage count = 3 Fixes: 00b3553 ("batman-adv: adopt netdev_hold() / netdev_put()") Suggested-by: Eric Dumazet <[email protected]> Reported-by: [email protected] Reported-by: [email protected] Reported-by: [email protected] Reported-by: [email protected] Reported-by: [email protected] Signed-off-by: Sven Eckelmann <[email protected]> Reviewed-by: Eric Dumazet <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 277cc13 commit 10a7796

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

net/batman-adv/hard-interface.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,6 @@ int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
725725

726726
kref_get(&hard_iface->refcount);
727727

728-
dev_hold(mesh_iface);
729728
netdev_hold(mesh_iface, &hard_iface->meshif_dev_tracker, GFP_ATOMIC);
730729
hard_iface->mesh_iface = mesh_iface;
731730
bat_priv = netdev_priv(hard_iface->mesh_iface);

0 commit comments

Comments
 (0)