|
@@ -480,7 +480,7 @@ out:
|
|
fl.fl4_dst = eiph->saddr;
|
|
fl.fl4_dst = eiph->saddr;
|
|
fl.fl4_tos = RT_TOS(eiph->tos);
|
|
fl.fl4_tos = RT_TOS(eiph->tos);
|
|
fl.proto = IPPROTO_GRE;
|
|
fl.proto = IPPROTO_GRE;
|
|
- if (ip_route_output_key(&rt, &fl)) {
|
|
|
|
|
|
+ if (ip_route_output_key(&init_net, &rt, &fl)) {
|
|
kfree_skb(skb2);
|
|
kfree_skb(skb2);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -493,7 +493,7 @@ out:
|
|
fl.fl4_dst = eiph->daddr;
|
|
fl.fl4_dst = eiph->daddr;
|
|
fl.fl4_src = eiph->saddr;
|
|
fl.fl4_src = eiph->saddr;
|
|
fl.fl4_tos = eiph->tos;
|
|
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) {
|
|
rt->u.dst.dev->type != ARPHRD_IPGRE) {
|
|
ip_rt_put(rt);
|
|
ip_rt_put(rt);
|
|
kfree_skb(skb2);
|
|
kfree_skb(skb2);
|
|
@@ -748,7 +748,7 @@ static int ipgre_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
.saddr = tiph->saddr,
|
|
.saddr = tiph->saddr,
|
|
.tos = RT_TOS(tos) } },
|
|
.tos = RT_TOS(tos) } },
|
|
.proto = IPPROTO_GRE };
|
|
.proto = IPPROTO_GRE };
|
|
- if (ip_route_output_key(&rt, &fl)) {
|
|
|
|
|
|
+ if (ip_route_output_key(&init_net, &rt, &fl)) {
|
|
tunnel->stat.tx_carrier_errors++;
|
|
tunnel->stat.tx_carrier_errors++;
|
|
goto tx_error;
|
|
goto tx_error;
|
|
}
|
|
}
|
|
@@ -921,7 +921,7 @@ static void ipgre_tunnel_bind_dev(struct net_device *dev)
|
|
.tos = RT_TOS(iph->tos) } },
|
|
.tos = RT_TOS(iph->tos) } },
|
|
.proto = IPPROTO_GRE };
|
|
.proto = IPPROTO_GRE };
|
|
struct rtable *rt;
|
|
struct rtable *rt;
|
|
- if (!ip_route_output_key(&rt, &fl)) {
|
|
|
|
|
|
+ if (!ip_route_output_key(&init_net, &rt, &fl)) {
|
|
tdev = rt->u.dst.dev;
|
|
tdev = rt->u.dst.dev;
|
|
ip_rt_put(rt);
|
|
ip_rt_put(rt);
|
|
}
|
|
}
|
|
@@ -1177,7 +1177,7 @@ static int ipgre_open(struct net_device *dev)
|
|
.tos = RT_TOS(t->parms.iph.tos) } },
|
|
.tos = RT_TOS(t->parms.iph.tos) } },
|
|
.proto = IPPROTO_GRE };
|
|
.proto = IPPROTO_GRE };
|
|
struct rtable *rt;
|
|
struct rtable *rt;
|
|
- if (ip_route_output_key(&rt, &fl))
|
|
|
|
|
|
+ if (ip_route_output_key(&init_net, &rt, &fl))
|
|
return -EADDRNOTAVAIL;
|
|
return -EADDRNOTAVAIL;
|
|
dev = rt->u.dst.dev;
|
|
dev = rt->u.dst.dev;
|
|
ip_rt_put(rt);
|
|
ip_rt_put(rt);
|