diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2010-09-29 08:06:57 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-01 17:19:00 -0400 |
commit | 14ec63c3336af7ea5445e0d8f4d26ba3041e40b3 (patch) | |
tree | d81dee6a73cb604c90efd8add86e63a143bcd429 /net/sunrpc/svcsock.c | |
parent | 721db93a55dad71bb89e7d11cc6be1f180ec3f2d (diff) |
sunrpc: Create sockets in net namespaces
The context is already known in all the sock_create callers.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svcsock.c')
-rw-r--r-- | net/sunrpc/svcsock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index 559338527f47..88de3d093165 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
@@ -1425,7 +1425,7 @@ static struct svc_xprt *svc_create_socket(struct svc_serv *serv, | |||
1425 | return ERR_PTR(-EINVAL); | 1425 | return ERR_PTR(-EINVAL); |
1426 | } | 1426 | } |
1427 | 1427 | ||
1428 | error = sock_create_kern(family, type, protocol, &sock); | 1428 | error = __sock_create(net, family, type, protocol, &sock, 1); |
1429 | if (error < 0) | 1429 | if (error < 0) |
1430 | return ERR_PTR(error); | 1430 | return ERR_PTR(error); |
1431 | 1431 | ||