summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-05-15 19:11:20 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-05-15 19:11:20 -0400
commit759927a1b9e1a0a820e05dbb6ce12fb16c8f9b34 (patch)
treece43d2a13b4e7bfc44e369ada6db252581ffe2a4
parent7922fc65ae0bf5ec211064d8610d4122ddbb4e20 (diff)
*: Remove some unneeded functions
vrf_iflist_create -> By the time this is called in enable, the vrf's iflist is already created. Additionally this code should be a properly of the vrf to init/destroy not someone else. vrf_iflist_terminate -> This function should be a property of vrf deletion and does not need to be exposed. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--bgpd/bgpd.c19
-rw-r--r--lib/vrf.c18
-rw-r--r--lib/vrf.h6
-rw-r--r--pimd/pim_iface.c1
4 files changed, 3 insertions, 41 deletions
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c
index 2c04f79478..9af48eafb8 100644
--- a/bgpd/bgpd.c
+++ b/bgpd/bgpd.c
@@ -94,7 +94,6 @@ struct community_list_handler *bgp_clist;
unsigned int multipath_num = MULTIPATH_NUM;
-static void bgp_if_init (struct bgp *bgp);
static void bgp_if_finish (struct bgp *bgp);
extern struct zclient *zclient;
@@ -3115,10 +3114,7 @@ bgp_get (struct bgp **bgp_val, as_t *as, const char *name,
vrf = bgp_vrf_lookup_by_instance_type (bgp);
if (vrf)
- {
- bgp_vrf_link (bgp, vrf);
- bgp_if_init (bgp);
- }
+ bgp_vrf_link (bgp, vrf);
}
/* Register with Zebra, if needed */
@@ -7655,19 +7651,6 @@ bgp_master_init (struct thread_master *master)
}
/*
- * Initialize interface list for instance, if needed. Invoked upon
- * instance create.
- */
-static void
-bgp_if_init (struct bgp *bgp)
-{
- if (bgp->inst_type == BGP_INSTANCE_TYPE_VIEW)
- return;
-
- vrf_iflist_create (bgp->vrf_id);
-}
-
-/*
* Free up connected routes and interfaces for a BGP instance. Invoked upon
* instance delete (non-default only) or BGP exit.
*/
diff --git a/lib/vrf.c b/lib/vrf.c
index 4fde134e44..41b6a05b3a 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -310,24 +310,6 @@ vrf_iflist_get (vrf_id_t vrf_id)
return vrf->iflist;
}
-/* Create the interface list for the specified VRF, if needed. */
-void
-vrf_iflist_create (vrf_id_t vrf_id)
-{
- struct vrf * vrf = vrf_lookup_by_id (vrf_id);
- if (vrf && !vrf->iflist)
- if_init (&vrf->iflist);
-}
-
-/* Free the interface list of the specified VRF. */
-void
-vrf_iflist_terminate (vrf_id_t vrf_id)
-{
- struct vrf * vrf = vrf_lookup_by_id (vrf_id);
- if (vrf && vrf->iflist)
- if_terminate (&vrf->iflist);
-}
-
/*
* VRF bit-map
*/
diff --git a/lib/vrf.h b/lib/vrf.h
index 418d891a35..053be89684 100644
--- a/lib/vrf.h
+++ b/lib/vrf.h
@@ -108,6 +108,8 @@ extern struct vrf_name_head vrfs_by_name;
*/
extern void vrf_add_hook (int, int (*)(struct vrf *));
+int (*vrf_callback)(struct vrf *);
+
extern struct vrf *vrf_lookup_by_id (vrf_id_t);
extern struct vrf *vrf_lookup_by_name (const char *);
extern struct vrf *vrf_get (vrf_id_t, const char *);
@@ -146,10 +148,6 @@ extern void *vrf_info_lookup (vrf_id_t);
extern struct list *vrf_iflist (vrf_id_t);
/* Get the interface list of the specified VRF. Create one if not find. */
extern struct list *vrf_iflist_get (vrf_id_t);
-/* Create the interface list for the specified VRF, if needed. */
-extern void vrf_iflist_create (vrf_id_t vrf_id);
-/* Free the interface list of the specified VRF. */
-extern void vrf_iflist_terminate (vrf_id_t vrf_id);
/*
* VRF bit-map: maintaining flags, one bit per VRF ID
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c
index 48a59344eb..2cbf63e7d5 100644
--- a/pimd/pim_iface.c
+++ b/pimd/pim_iface.c
@@ -61,7 +61,6 @@ pim_if_init (void)
for (i = 0; i < MAXVIFS; i++)
pim_iface_vif_index[i] = 0;
- vrf_iflist_create(VRF_DEFAULT);
pim_ifchannel_list = list_new();
pim_ifchannel_list->cmp = (int (*)(void *, void *))pim_ifchannel_compare;
}