[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>
This commit is contained in:
committed by
David S. Miller
parent
6fda735005
commit
4591db4f37
@@ -847,7 +847,7 @@ static int ip6_tnl_xmit2(struct sk_buff *skb,
|
||||
if ((dst = ip6_tnl_dst_check(t)) != NULL)
|
||||
dst_hold(dst);
|
||||
else {
|
||||
dst = ip6_route_output(NULL, fl);
|
||||
dst = ip6_route_output(&init_net, NULL, fl);
|
||||
|
||||
if (dst->error || xfrm_lookup(&dst, fl, NULL, 0) < 0)
|
||||
goto tx_err_link_failure;
|
||||
|
Reference in New Issue
Block a user