]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_vxlan.c
isisd: implement the 'lsp-too-large' notification
[mirror_frr.git] / zebra / zebra_vxlan.c
index ed1c185f1a8280041a5276342802773778e4c120..20dc64b0bc95f68ff9ec5b9f466fa9e16c356afb 100644 (file)
@@ -8395,7 +8395,7 @@ int zebra_vxlan_if_add(struct interface *ifp)
                                "Add L2-VNI %u VRF %s intf %s(%u) VLAN %u local IP %s master %u",
                                vni,
                                vlan_if ? vrf_id_to_name(vlan_if->vrf_id)
-                                       : "Default",
+                                       : VRF_DEFAULT_NAME,
                                ifp->name, ifp->ifindex, vxl->access_vlan,
                                inet_ntoa(vxl->vtep_ip),
                                zif->brslave_info.bridge_ifindex);
@@ -8864,14 +8864,14 @@ void zebra_vxlan_close_tables(struct zebra_vrf *zvrf)
 }
 
 /* init the l3vni table */
-void zebra_vxlan_ns_init(struct zebra_ns *zns)
+void zebra_vxlan_init(void)
 {
        zrouter.l3vni_table = hash_create(l3vni_hash_keymake, l3vni_hash_cmp,
                                          "Zebra VRF L3 VNI table");
 }
 
 /* free l3vni table */
-void zebra_vxlan_ns_disable(struct zebra_ns *zns)
+void zebra_vxlan_disable(void)
 {
        hash_free(zrouter.l3vni_table);
 }