ipv6: Kill rt6i_dev and rt6i_expires defines.
It just obscures that the netdevice pointer and the expires value are implemented in the dst_entry sub-object of the ipv6 route. And it makes grepping for dst_entry member uses much harder too. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@ -85,7 +85,7 @@ static int __ip_vs_addr_is_local_v6(struct net *net,
|
||||
};
|
||||
|
||||
rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
|
||||
if (rt && rt->rt6i_dev && (rt->rt6i_dev->flags & IFF_LOOPBACK))
|
||||
if (rt && rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
|
@ -207,7 +207,7 @@ __ip_vs_reroute_locally(struct sk_buff *skb)
|
||||
|
||||
static inline int __ip_vs_is_local_route6(struct rt6_info *rt)
|
||||
{
|
||||
return rt->rt6i_dev && rt->rt6i_dev->flags & IFF_LOOPBACK;
|
||||
return rt->dst.dev && rt->dst.dev->flags & IFF_LOOPBACK;
|
||||
}
|
||||
|
||||
static struct dst_entry *
|
||||
|
Reference in New Issue
Block a user