ipv4: Prepare rtable for IPv6 gateway
To allow the gateway to be either an IPv4 or IPv6 address, remove rt_uses_gateway from rtable and replace with rt_gw_family. If rt_gw_family is set it implies rt_uses_gateway. Rename rt_gateway to rt_gw4 to represent the IPv4 version. Signed-off-by: David Ahern <dsahern@gmail.com> Reviewed-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
bdf0046771
commit
1550c17193
@@ -345,8 +345,8 @@ static netdev_tx_t clip_start_xmit(struct sk_buff *skb,
|
||||
return NETDEV_TX_OK;
|
||||
}
|
||||
rt = (struct rtable *) dst;
|
||||
if (rt->rt_gateway)
|
||||
daddr = &rt->rt_gateway;
|
||||
if (rt->rt_gw_family == AF_INET)
|
||||
daddr = &rt->rt_gw4;
|
||||
else
|
||||
daddr = &ip_hdr(skb)->daddr;
|
||||
n = dst_neigh_lookup(dst, daddr);
|
||||
|
Reference in New Issue
Block a user