From 4dd9d11c879c2591f70482c4233291017a509ffd Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Thu, 5 Dec 2019 14:27:17 -0500 Subject: [PATCH] zebra: use correct state when installing evpn macs 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 --- zebra/zebra_dplane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index ca72ea5227..417c206467 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -2508,7 +2508,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; } -- 2.39.5