From 7b20961c7cfd56a505d8b1fd0887ac6c3ec04558 Mon Sep 17 00:00:00 2001 From: Rajesh Sankaran Date: Wed, 10 Jun 2020 03:14:47 -0700 Subject: [PATCH] Removed L3VXLAN changes as it is filed in a separate PR --- orchagent/vxlanorch.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/orchagent/vxlanorch.cpp b/orchagent/vxlanorch.cpp index 84f20de84a..a99f068698 100644 --- a/orchagent/vxlanorch.cpp +++ b/orchagent/vxlanorch.cpp @@ -1758,15 +1758,6 @@ bool VxlanTunnelMapOrch::addOperation(const Request& request) tunnel_orch->addVlanMappedToVni(vni_id, vlan_id); -#ifdef L3PR - VRFOrch* vrf_orch = gDirectory.get(); - if (0 == vrf_orch->getL3VniVlan(vni_id)) - { - SWSS_LOG_NOTICE("update l3vni %d, vlan %d", vni_id, vlan_id); - vrf_orch->updateL3VniVlan(vni_id, vlan_id); - } -#endif - SWSS_LOG_NOTICE("Vxlan tunnel map entry '%s' for tunnel '%s' was created", tunnel_map_entry_name.c_str(), tunnel_name.c_str()); @@ -1992,11 +1983,6 @@ bool VxlanVrfMapOrch::delOperation(const Request& request) return false; } -#ifdef L3PR - SWSS_LOG_NOTICE("VxlanVrfMapOrch Vxlan vrf map entry '%s' is removed. VRF Refcnt %d", full_map_entry_name.c_str(), - vrf_orch->getVrfRefCount(vrf_name)); -#endif - return true; }