aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pppol2tp.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2009-01-21 15:55:40 -0800
committerDavid S. Miller <davem@davemloft.net>2009-01-21 15:55:40 -0800
commitf5882c30508c1e3c4fbbdaa9ca08d0922c5fb071 (patch)
tree54522f9e2fe8d88221364c8b3edaa7215c7d48ed /drivers/net/pppol2tp.c
parentnet: ppp_generic - introduce net-namespace functionality v2 (diff)
downloadlinux-dev-f5882c30508c1e3c4fbbdaa9ca08d0922c5fb071.tar.xz
linux-dev-f5882c30508c1e3c4fbbdaa9ca08d0922c5fb071.zip
net: pppoe,pppol2tp - register channels with explicit net
In PPPo[E|L2TP] we could explicitly point which net namespace we're going to use for channels - make it so. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: James Chapman <jchapman@katalix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/pppol2tp.c')
-rw-r--r--drivers/net/pppol2tp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c
index f3f9cb1f77c0..056e22a784b8 100644
--- a/drivers/net/pppol2tp.c
+++ b/drivers/net/pppol2tp.c
@@ -1749,7 +1749,7 @@ static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
po->chan.ops = &pppol2tp_chan_ops;
po->chan.mtu = session->mtu;
- error = ppp_register_channel(&po->chan);
+ error = ppp_register_net_channel(sock_net(sk), &po->chan);
if (error)
goto end_put_tun;