diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-16 20:13:40 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-16 20:13:40 +0200 |
commit | 3ce3185a631e69786d5a0dbe882691023c10f38e (patch) | |
tree | 96e3b3106770c330c73495c24fd25a63e1f415f9 /zebra/zebra_vrf.c | |
parent | Revert "zebra: keep rtadv_sock field in zrouter for optimisation" (diff) | |
download | frr-3ce3185a631e69786d5a0dbe882691023c10f38e.tar.xz frr-3ce3185a631e69786d5a0dbe882691023c10f38e.zip |
Revert "zebra: move rtadv service from zrouter to zvrf"
This reverts commit f20e2a09c8aef399698fa074b36f24becdf49cbb.
Diffstat (limited to 'zebra/zebra_vrf.c')
-rw-r--r-- | zebra/zebra_vrf.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/zebra/zebra_vrf.c b/zebra/zebra_vrf.c index fdf0cbc69..634305494 100644 --- a/zebra/zebra_vrf.c +++ b/zebra/zebra_vrf.c @@ -29,7 +29,6 @@ #include "vty.h" #include "zebra/zebra_router.h" -#include "zebra/rtadv.h" #include "zebra/debug.h" #include "zebra/zapi_msg.h" #include "zebra/rib.h" @@ -120,10 +119,6 @@ static int zebra_vrf_enable(struct vrf *vrf) zvrf->zns = zebra_ns_lookup((ns_id_t)vrf->vrf_id); else zvrf->zns = zebra_ns_lookup(NS_DEFAULT); -#if defined(HAVE_RTADV) - rtadv_init(zvrf); -#endif - /* Inform clients that the VRF is now active. This is an * add for the clients. */ @@ -166,10 +161,6 @@ static int zebra_vrf_disable(struct vrf *vrf) /* Stop any VxLAN-EVPN processing. */ zebra_vxlan_vrf_disable(zvrf); -#if defined(HAVE_RTADV) - rtadv_terminate(zvrf); -#endif - /* Inform clients that the VRF is now inactive. This is a * delete for the clients. */ |