From: Nicolas Dichtel Date: Thu, 1 Nov 2012 22:58:22 +0000 (+0000) Subject: ipv6/multipath: remove flag NLM_F_EXCL after the first nexthop X-Git-Tag: master-2012-12-14~5^2~467 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=1a72418bd7f0edcb85c817964efd370254fe749d;hp=2bc80059fe19229e68a306ce12f5e61e80b92c5c;p=~andy%2Flinux ipv6/multipath: remove flag NLM_F_EXCL after the first nexthop fib6_add_rt2node() will reject the nexthop if this flag is set, so we perform the check only for the first nexthop. Signed-off-by: Nicolas Dichtel Signed-off-by: David S. Miller --- diff --git a/net/ipv6/route.c b/net/ipv6/route.c index c42650cf8d4..9c7b5d80049 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -2449,6 +2449,12 @@ beginning: goto beginning; } } + /* Because each route is added like a single route we remove + * this flag after the first nexthop (if there is a collision, + * we have already fail to add the first nexthop: + * fib6_add_rt2node() has reject it). + */ + cfg->fc_nlinfo.nlh->nlmsg_flags &= ~NLM_F_EXCL; rtnh = rtnh_next(rtnh, &remaining); }