mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-30 00:50:03 +00:00
bgpd: Optimizing route-map's processing of dependencies.
Say for eg., 256 prefix-list entries are pasted to VTYSH. This results in BGP processing the events for several minutes. BGPD starts a timer for 5 seconds when the first dependency configuraion is received. On timer expiry, BGP process dependent route-maps. After this processing, BGPD reads the configurations received in the next 5 seconds and then re-processes the route-maps from the beginning. This cyclic re-processing consumes time and CPU cycles. Instead of starting a timer when the first configuration is received, everytime a configuration is received, the existing timer is reset. This would mean that all the configurations are read first before the timer expires. This eliminates the cyclic re-processing. Signed-off-by: NaveenThanikachalam nthanikachal@vmware.com
This commit is contained in:
parent
ab0ef7a392
commit
47c8fa1f87
@ -3406,13 +3406,17 @@ int bgp_route_map_update_timer(struct thread *thread)
|
||||
|
||||
static void bgp_route_map_mark_update(const char *rmap_name)
|
||||
{
|
||||
if (bm->t_rmap_update == NULL) {
|
||||
struct listnode *node, *nnode;
|
||||
struct bgp *bgp;
|
||||
|
||||
/* If new update is received before the current timer timed out,
|
||||
* turn it off and start a new timer.
|
||||
*/
|
||||
if (bm->t_rmap_update != NULL)
|
||||
THREAD_OFF(bm->t_rmap_update);
|
||||
|
||||
/* rmap_update_timer of 0 means don't do route updates */
|
||||
if (bm->rmap_update_timer) {
|
||||
bm->t_rmap_update = NULL;
|
||||
thread_add_timer(bm->master, bgp_route_map_update_timer,
|
||||
NULL, bm->rmap_update_timer,
|
||||
&bm->t_rmap_update);
|
||||
@ -3431,7 +3435,6 @@ static void bgp_route_map_mark_update(const char *rmap_name)
|
||||
vnc_routemap_update(bgp, __func__);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void bgp_route_map_add(const char *rmap_name)
|
||||
|
Loading…
Reference in New Issue
Block a user