diff options
author | Ido Schimmel <idosch@mellanox.com> | 2018-01-07 12:45:05 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-07 21:29:40 -0500 |
commit | 27c6fa73f93b81671a77bdaa242473c3bda0ac4a (patch) | |
tree | 8e7315ee734ecd034ee4fee1059b2ff54a49578f /include/net/ip6_route.h | |
parent | 4c981e28d373e391b76577635e7e216976b71c57 (diff) | |
download | op-kernel-dev-27c6fa73f93b81671a77bdaa242473c3bda0ac4a.zip op-kernel-dev-27c6fa73f93b81671a77bdaa242473c3bda0ac4a.tar.gz |
ipv6: Set nexthop flags upon carrier change
Similar to IPv4, when the carrier of a netdev changes we should toggle
the 'linkdown' flag on all the nexthops using it as their nexthop
device.
This will later allow us to test for the presence of this flag during
route lookup and dump.
Up until commit 4832c30d5458 ("net: ipv6: put host and anycast routes on
device with address") host and anycast routes used the loopback netdev
as their nexthop device and thus were not marked with the 'linkdown'
flag. The patch preserves this behavior and allows one to ping the local
address even when the nexthop device does not have a carrier and the
'ignore_routes_with_linkdown' sysctl is set.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Acked-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_route.h')
-rw-r--r-- | include/net/ip6_route.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/ip6_route.h b/include/net/ip6_route.h index 6a2f80c..34cd3b0 100644 --- a/include/net/ip6_route.h +++ b/include/net/ip6_route.h @@ -170,6 +170,7 @@ void rt6_remove_prefsrc(struct inet6_ifaddr *ifp); void rt6_clean_tohost(struct net *net, struct in6_addr *gateway); void rt6_sync_up(struct net_device *dev, unsigned int nh_flags); void rt6_disable_ip(struct net_device *dev, unsigned long event); +void rt6_sync_down_dev(struct net_device *dev, unsigned long event); static inline const struct rt6_info *skb_rt6_info(const struct sk_buff *skb) { |