diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2010-09-29 08:06:32 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-01 17:18:59 -0400 |
commit | 721db93a55dad71bb89e7d11cc6be1f180ec3f2d (patch) | |
tree | b96d78f06ff20e73f8e1469ac77e5656e2552a8e /net/socket.c | |
parent | 37aa2133731d9231eb834f700119f0d3f1ed2664 (diff) |
net: Export __sock_create
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/socket.c')
-rw-r--r-- | net/socket.c | 3 |
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 | } |
1145 | EXPORT_SYMBOL(sock_wake_async); | 1145 | EXPORT_SYMBOL(sock_wake_async); |
1146 | 1146 | ||
1147 | static int __sock_create(struct net *net, int family, int type, int protocol, | 1147 | int __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 | } |
1259 | EXPORT_SYMBOL(__sock_create); | ||
1259 | 1260 | ||
1260 | int sock_create(int family, int type, int protocol, struct socket **res) | 1261 | int sock_create(int family, int type, int protocol, struct socket **res) |
1261 | { | 1262 | { |