aboutsummaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/socket.c b/net/socket.c
index 2270b941bcc7..0c37b0037b97 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -1144,7 +1144,7 @@ call_kill:
1144} 1144}
1145EXPORT_SYMBOL(sock_wake_async); 1145EXPORT_SYMBOL(sock_wake_async);
1146 1146
1147static int __sock_create(struct net *net, int family, int type, int protocol, 1147int __sock_create(struct net *net, int family, int type, int protocol,
1148 struct socket **res, int kern) 1148 struct socket **res, int kern)
1149{ 1149{
1150 int err; 1150 int err;
@@ -1256,6 +1256,7 @@ out_release:
1256 rcu_read_unlock(); 1256 rcu_read_unlock();
1257 goto out_sock_release; 1257 goto out_sock_release;
1258} 1258}
1259EXPORT_SYMBOL(__sock_create);
1259 1260
1260int sock_create(int family, int type, int protocol, struct socket **res) 1261int sock_create(int family, int type, int protocol, struct socket **res)
1261{ 1262{