[NETNS]: Add namespace parameter to ip_route_output_key.
Needed to propagate it down to the ip_route_output_flow. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f1b050bf7a
commit
f206351a50
@@ -480,7 +480,7 @@ out:
|
||||
fl.fl4_dst = eiph->saddr;
|
||||
fl.fl4_tos = RT_TOS(eiph->tos);
|
||||
fl.proto = IPPROTO_GRE;
|
||||
if (ip_route_output_key(&rt, &fl)) {
|
||||
if (ip_route_output_key(&init_net, &rt, &fl)) {
|
||||
kfree_skb(skb2);
|
||||
return;
|
||||
}
|
||||
@@ -493,7 +493,7 @@ out:
|
||||
fl.fl4_dst = eiph->daddr;
|
||||
fl.fl4_src = eiph->saddr;
|
||||
fl.fl4_tos = eiph->tos;
|
||||
if (ip_route_output_key(&rt, &fl) ||
|
||||
if (ip_route_output_key(&init_net, &rt, &fl) ||
|
||||
rt->u.dst.dev->type != ARPHRD_IPGRE) {
|
||||
ip_rt_put(rt);
|
||||
kfree_skb(skb2);
|
||||
@@ -748,7 +748,7 @@ static int ipgre_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
.saddr = tiph->saddr,
|
||||
.tos = RT_TOS(tos) } },
|
||||
.proto = IPPROTO_GRE };
|
||||
if (ip_route_output_key(&rt, &fl)) {
|
||||
if (ip_route_output_key(&init_net, &rt, &fl)) {
|
||||
tunnel->stat.tx_carrier_errors++;
|
||||
goto tx_error;
|
||||
}
|
||||
@@ -921,7 +921,7 @@ static void ipgre_tunnel_bind_dev(struct net_device *dev)
|
||||
.tos = RT_TOS(iph->tos) } },
|
||||
.proto = IPPROTO_GRE };
|
||||
struct rtable *rt;
|
||||
if (!ip_route_output_key(&rt, &fl)) {
|
||||
if (!ip_route_output_key(&init_net, &rt, &fl)) {
|
||||
tdev = rt->u.dst.dev;
|
||||
ip_rt_put(rt);
|
||||
}
|
||||
@@ -1177,7 +1177,7 @@ static int ipgre_open(struct net_device *dev)
|
||||
.tos = RT_TOS(t->parms.iph.tos) } },
|
||||
.proto = IPPROTO_GRE };
|
||||
struct rtable *rt;
|
||||
if (ip_route_output_key(&rt, &fl))
|
||||
if (ip_route_output_key(&init_net, &rt, &fl))
|
||||
return -EADDRNOTAVAIL;
|
||||
dev = rt->u.dst.dev;
|
||||
ip_rt_put(rt);
|
||||
|
Reference in New Issue
Block a user