Skip to content
Snippets Groups Projects
Commit 6faac63a authored by Guillaume Nault's avatar Guillaume Nault Committed by David S. Miller
Browse files

ppp: release rtnl mutex when interface creation fails


Add missing rtnl_unlock() in the error path of ppp_create_interface().

Fixes: 58a89eca ("ppp: fix lockdep splat in ppp_dev_uninit()")
Signed-off-by: default avatarGuillaume Nault <g.nault@alphalink.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4d06dd53
No related branches found
No related tags found
No related merge requests found
...@@ -2816,6 +2816,7 @@ static struct ppp *ppp_create_interface(struct net *net, int unit, ...@@ -2816,6 +2816,7 @@ static struct ppp *ppp_create_interface(struct net *net, int unit,
out2: out2:
mutex_unlock(&pn->all_ppp_mutex); mutex_unlock(&pn->all_ppp_mutex);
rtnl_unlock();
free_netdev(dev); free_netdev(dev);
out1: out1:
*retp = ret; *retp = ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment