[NETNS][IPV6] fix some missing namespace

This patch adds some missing namespace

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Daniel Lezcano
2008-03-07 11:14:16 -08:00
committed by David S. Miller
parent db8dac20d5
commit 8a3edd800d
3 changed files with 9 additions and 6 deletions

View File

@@ -107,6 +107,7 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
char __user *optval, int optlen)
{
struct ipv6_pinfo *np = inet6_sk(sk);
struct net *net = sk->sk_net;
int val, valbool;
int retv = -ENOPROTOOPT;
@@ -432,7 +433,7 @@ done:
if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != val)
goto e_inval;
if (__dev_get_by_index(&init_net, val) == NULL) {
if (__dev_get_by_index(net, val) == NULL) {
retv = -ENODEV;
break;
}