mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 22:40:53 +07:00
ipv6: Report dead flag during route dump
Up until now the RTNH_F_DEAD flag was only reported in route dump when the 'ignore_routes_with_linkdown' sysctl was set. This is expected as dead routes were flushed otherwise. The reliance on this sysctl is going to be removed, so we need to report the flag regardless of the sysctl's value. Signed-off-by: Ido Schimmel <idosch@mellanox.com> Acked-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8067bb8c1d
commit
f9d882ea57
@ -4049,6 +4049,9 @@ static size_t rt6_nlmsg_size(struct rt6_info *rt)
|
||||
static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
|
||||
unsigned int *flags, bool skip_oif)
|
||||
{
|
||||
if (rt->rt6i_nh_flags & RTNH_F_DEAD)
|
||||
*flags |= RTNH_F_DEAD;
|
||||
|
||||
if (rt->rt6i_nh_flags & RTNH_F_LINKDOWN) {
|
||||
*flags |= RTNH_F_LINKDOWN;
|
||||
if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
|
||||
|
Loading…
Reference in New Issue
Block a user