From 6da38ee881c484a500f378f0f94cdacda756ab66 Mon Sep 17 00:00:00 2001 From: Rajesh Varatharaj Date: Tue, 6 Dec 2022 12:05:33 -0800 Subject: [PATCH] zebra: removing the duplicate declaration of zebra_evpn_acc_vl_find Fixed build break after merging SVD/DVNI upstream PR#12364 Testing Done: dev build Ticket: #NA Signed-off-by: Rajesh Varatharaj --- zebra/zebra_evpn_arp_nd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zebra/zebra_evpn_arp_nd.c b/zebra/zebra_evpn_arp_nd.c index 30909be34ba2..11f54ff67fc6 100644 --- a/zebra/zebra_evpn_arp_nd.c +++ b/zebra/zebra_evpn_arp_nd.c @@ -243,8 +243,7 @@ static int zebra_evpn_arp_nd_proc(struct zebra_if *zif, uint16_t vlan, return 0; } - acc_bd = zebra_evpn_acc_vl_find(vlan ? vlan : zif->pvid, - zif->brslave_info.br_if); + acc_bd = zebra_evpn_acc_vl_find(vlan ? vlan : zif->pvid, zif->ifp); if (!acc_bd || !acc_bd->zevpn) { ++zevpn_arp_nd_info.stat.vni_missing; if (IS_ZEBRA_DEBUG_EVPN_MH_ARP_ND_PKT)