diff options
| author | Russ White <russ@riw.us> | 2018-05-12 06:16:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-12 06:16:02 -0400 |
| commit | 1b6e597ccae19986679b7e2d2b4fcc8b66bd6328 (patch) | |
| tree | a720febf1d46a9efa68e70814629fb1d46621f91 /zebra/zebra_rib.c | |
| parent | 5456d3b8447dbe9868291d33e50a4e6dba2959ab (diff) | |
| parent | a317a9b9a479f92c90d31562ec90d6ac9e3f8150 (diff) | |
Merge pull request #2124 from donaldsharp/missed
bgpd, zebra: Handle EVPN router MAC per next hop
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 67832f2d3f..7ec640164a 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -2394,8 +2394,7 @@ int rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p, void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type, unsigned short instance, int flags, struct prefix *p, struct prefix_ipv6 *src_p, const struct nexthop *nh, - uint32_t table_id, uint32_t metric, bool fromkernel, - struct ethaddr *rmac) + uint32_t table_id, uint32_t metric, bool fromkernel) { struct route_table *table; struct route_node *rn; @@ -2569,7 +2568,7 @@ void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type, &(tmp_nh->gate.ipv6), sizeof(struct in6_addr)); } - zebra_vxlan_evpn_vrf_route_del(re->vrf_id, rmac, + zebra_vxlan_evpn_vrf_route_del(re->vrf_id, &vtep_ip, p); } } |
