diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-21 16:53:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-21 16:53:27 -0400 |
| commit | f136efabe9b1572f048332de901a4dc2efd045d4 (patch) | |
| tree | 8591a45e404d3aaf1c23c88801bd718208cd5a4a /zebra/zebra_vxlan.c | |
| parent | 5349270f128c81769b0bc99c8cbcbcb1e3d1034e (diff) | |
| parent | 9d21b7c6f04146b518d0275d1c7f4388d9b33444 (diff) | |
Merge pull request #4359 from adharkar/frr-master-rtm_vxlan
Zebra: Handle VxLAN encap in netlink rtmsg for FPM
Diffstat (limited to 'zebra/zebra_vxlan.c')
| -rw-r--r-- | zebra/zebra_vxlan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index feb0aadfa8..f2f8a2a059 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -143,7 +143,6 @@ static zebra_l3vni_t *zl3vni_lookup(vni_t vni); static void *zl3vni_alloc(void *p); static zebra_l3vni_t *zl3vni_add(vni_t vni, vrf_id_t vrf_id); static int zl3vni_del(zebra_l3vni_t *zl3vni); -static zebra_l3vni_t *zl3vni_from_vrf(vrf_id_t); static struct interface *zl3vni_map_to_svi_if(zebra_l3vni_t *zl3vni); static struct interface *zl3vni_map_to_vxlan_if(zebra_l3vni_t *zl3vni); static void zebra_vxlan_process_l3vni_oper_up(zebra_l3vni_t *zl3vni); @@ -4842,7 +4841,7 @@ static struct interface *zl3vni_map_to_svi_if(zebra_l3vni_t *zl3vni) return zvni_map_to_svi(vxl->access_vlan, zif->brslave_info.br_if); } -static zebra_l3vni_t *zl3vni_from_vrf(vrf_id_t vrf_id) +zebra_l3vni_t *zl3vni_from_vrf(vrf_id_t vrf_id) { struct zebra_vrf *zvrf = NULL; |
