lkml.org 
[lkml]   [2017]   [Jul]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH 3.16 063/178] net: ipv6: set route type for anycast routes
    3.16.46-rc1 review patch.  If anyone has any objections, please let me know.

    ------------------

    From: David Ahern <dsa@cumulusnetworks.com>

    commit 4ee39733fbecf04cf9f346de2d64788c35028079 upstream.

    Anycast routes have the RTF_ANYCAST flag set, but when dumping routes
    for userspace the route type is not set to RTN_ANYCAST. Make it so.

    Fixes: 58c4fb86eabcb ("[IPV6]: Flag RTF_ANYCAST for anycast routes")
    CC: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
    Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>
    Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
    ---
    net/ipv6/route.c | 2 ++
    1 file changed, 2 insertions(+)

    --- a/net/ipv6/route.c
    +++ b/net/ipv6/route.c
    @@ -2582,6 +2582,8 @@ static int rt6_fill_node(struct net *net
    }
    else if (rt->rt6i_flags & RTF_LOCAL)
    rtm->rtm_type = RTN_LOCAL;
    + else if (rt->rt6i_flags & RTF_ANYCAST)
    + rtm->rtm_type = RTN_ANYCAST;
    else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
    rtm->rtm_type = RTN_LOCAL;
    else
    \
     
     \ /
      Last update: 2017-07-16 16:39    [W:2.175 / U:0.056 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site