diff options
| author | Daniel Lezcano <dlezcano@fr.ibm.com> | 2008-03-05 10:48:10 -0800 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-03-05 10:48:10 -0800 | 
| commit | 4591db4f37618f37a9f1f25d291c3c7a43a15a21 (patch) | |
| tree | 10694d610a78d8cc607fcb2998e4dc97856138f6 /net/ipv6/sit.c | |
| parent | 6fda73500581be531fd9bc232173332ec64f6435 (diff) | |
| download | olio-linux-3.10-4591db4f37618f37a9f1f25d291c3c7a43a15a21.tar.xz olio-linux-3.10-4591db4f37618f37a9f1f25d291c3c7a43a15a21.zip  | |
[NETNS][IPV6] route6 - add netns parameter to ip6_route_output
Add an netns parameter to ip6_route_output. That will allow to access
to the right routing table for outgoing traffic.
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: Benjamin Thery <benjamin.thery@bull.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/sit.c')
| -rw-r--r-- | net/ipv6/sit.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 68720aa63f9..1b8196c8d14 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c @@ -393,7 +393,7 @@ isatap_srcok(struct sk_buff *skb, struct iphdr *iph, struct net_device *dev)  	fl.oif = dev->ifindex;  	security_skb_classify_flow(skb, &fl); -	dst = ip6_route_output(NULL, &fl); +	dst = ip6_route_output(&init_net, NULL, &fl);  	if (!dst->error && (dst->dev == dev) && (neigh = dst->neighbour)) {  		addr6 = (struct in6_addr*)&neigh->primary_key;  |