summaryrefslogtreecommitdiff
path: root/zebra/zebra_vrf.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2017-08-09 14:35:17 +0200
committerDavid Lamparter <equinox@diac24.net>2017-08-09 14:35:17 +0200
commit9cdce038c51d259e4416c3e2f15d70e76c5e176f (patch)
tree29fbd9adce8d50fb3183069e57f88f875b73efc0 /zebra/zebra_vrf.c
parent11f3bfdd71f9ccef52ddb6bc349b0554fd18c7ff (diff)
parent0e236c6cd7bef12a2a375153a0e2d81a961562a2 (diff)
Merge branch 'stable/3.0'
... with a lot of fixups. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_vrf.c')
-rw-r--r--zebra/zebra_vrf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_vrf.c b/zebra/zebra_vrf.c
index 87c1389b46..ff140bad67 100644
--- a/zebra/zebra_vrf.c
+++ b/zebra/zebra_vrf.c
@@ -203,6 +203,7 @@ static int zebra_vrf_delete(struct vrf *vrf)
zebra_vxlan_close_tables(zvrf);
zebra_mpls_close_tables(zvrf);
+ zebra_pw_exit(zvrf);
for (ALL_LIST_ELEMENTS_RO(vrf->iflist, node, ifp))
if_nbr_ipv6ll_to_ipv4ll_neigh_del_all(ifp);
@@ -372,6 +373,7 @@ struct zebra_vrf *zebra_vrf_alloc(void)
zebra_vxlan_init_tables(zvrf);
zebra_mpls_init_tables(zvrf);
+ zebra_pw_init(zvrf);
return zvrf;
}