From: paul Date: Sat, 12 Mar 2005 06:33:14 +0000 (+0000) Subject: 2005-03-12 Paul Jakma X-Git-Tag: frr-2.0-rc1~3148 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=c1f01f358d28f2375b1caf239581105c6f1e3537;p=matthieu%2Ffrr.git 2005-03-12 Paul Jakma * rt_netlink.c: (netlink_route_multipath) dont set equalise flag. No stock Linux kernel has ever supported it, and even if it had --- diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 7c12154529..cb89d8f59f 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,9 @@ +2005-03-12 Paul Jakma + + * rt_netlink.c: (netlink_route_multipath) dont set equalise flag. + No stock Linux kernel has ever supported it, and even if it had + it's not generally a good idea. + 2005-03-07 Michael Sandee * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks. diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c index 1aa99af0fb..43f687d428 100644 --- a/zebra/rt_netlink.c +++ b/zebra/rt_netlink.c @@ -1391,10 +1391,6 @@ netlink_route_multipath (int cmd, struct prefix *p, struct rib *rib, req.r.rtm_table = rib->table; req.r.rtm_dst_len = p->prefixlen; -#ifdef RTM_F_EQUALIZE - req.r.rtm_flags |= RTM_F_EQUALIZE; -#endif /* RTM_F_EQUALIZE */ - if ((rib->flags & ZEBRA_FLAG_BLACKHOLE) || (rib->flags & ZEBRA_FLAG_REJECT)) discard = 1; else