aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@parallels.com>2010-09-29 08:06:32 -0400
committerJ. Bruce Fields <bfields@redhat.com>2010-10-01 17:18:59 -0400
commit721db93a55dad71bb89e7d11cc6be1f180ec3f2d (patch)
treeb96d78f06ff20e73f8e1469ac77e5656e2552a8e
parent37aa2133731d9231eb834f700119f0d3f1ed2664 (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>
-rw-r--r--include/linux/net.h2
-rw-r--r--net/socket.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/net.h b/include/linux/net.h
index dee0b11a8759..16faa130088c 100644
--- a/include/linux/net.h
+++ b/include/linux/net.h
@@ -229,6 +229,8 @@ enum {
229extern int sock_wake_async(struct socket *sk, int how, int band); 229extern int sock_wake_async(struct socket *sk, int how, int band);
230extern int sock_register(const struct net_proto_family *fam); 230extern int sock_register(const struct net_proto_family *fam);
231extern void sock_unregister(int family); 231extern void sock_unregister(int family);
232extern int __sock_create(struct net *net, int family, int type, int proto,
233 struct socket **res, int kern);
232extern int sock_create(int family, int type, int proto, 234extern int sock_create(int family, int type, int proto,
233 struct socket **res); 235 struct socket **res);
234extern int sock_create_kern(int family, int type, int proto, 236extern int sock_create_kern(int family, int type, int proto,
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{