Skip to content

Commit

Permalink
Removed L3VXLAN changes as it is filed in a separate PR
Browse files Browse the repository at this point in the history
  • Loading branch information
srj102 committed Jun 10, 2020
1 parent a8d135a commit dd6bdc2
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions orchagent/vxlanorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1758,15 +1758,6 @@ bool VxlanTunnelMapOrch::addOperation(const Request& request)

tunnel_orch->addVlanMappedToVni(vni_id, vlan_id);

#ifdef L3PR
VRFOrch* vrf_orch = gDirectory.get<VRFOrch*>();
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());

Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit dd6bdc2

Please sign in to comment.