From: Mark Stapp Date: Tue, 10 Dec 2019 15:10:56 +0000 (-0500) Subject: zebra: use correct state when installing evpn macs X-Git-Tag: frr-7.2.1~12^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=847222cced5f8063058df5b4effaf2d23e8bbdc4;p=matthieu%2Ffrr.git zebra: use correct state when installing evpn macs [7.2 version] Use correct state/flags when installing EVPN macs; when we converted from raw netlink to the zebra dataplane, a state value got lost. Signed-off-by: Mark Stapp --- diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index ffc1615fcb..df79832d31 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -2239,7 +2239,7 @@ enum zebra_dplane_result dplane_neigh_add(const struct interface *ifp, enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE; result = neigh_update_internal(DPLANE_OP_NEIGH_INSTALL, - ifp, mac, ip, flags, 0); + ifp, mac, ip, flags, DPLANE_NUD_NOARP); return result; }