Commit 3b185525 authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller

[NET]: Fix unbalanced rcu_read_unlock in __sock_create

The recent RCU work created an unbalanced rcu_read_unlock
in __sock_create.  This patch fixes that.  Reported by
oleg 123.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cd8d60f2
...@@ -1168,7 +1168,7 @@ static int __sock_create(int family, int type, int protocol, ...@@ -1168,7 +1168,7 @@ static int __sock_create(int family, int type, int protocol,
module_put(pf->owner); module_put(pf->owner);
err = security_socket_post_create(sock, family, type, protocol, kern); err = security_socket_post_create(sock, family, type, protocol, kern);
if (err) if (err)
goto out_release; goto out_sock_release;
*res = sock; *res = sock;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment