diff options
Diffstat (limited to 'ospfd/ospf_spf.c')
| -rw-r--r-- | ospfd/ospf_spf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ospfd/ospf_spf.c b/ospfd/ospf_spf.c index 22fff1b53d..9c747cd565 100644 --- a/ospfd/ospf_spf.c +++ b/ospfd/ospf_spf.c @@ -46,6 +46,7 @@ #include "ospfd/ospf_ase.h" #include "ospfd/ospf_abr.h" #include "ospfd/ospf_dump.h" +#include "ospfd/ospf_sr.h" /* Variables to ensure a SPF scheduled log message is printed only once */ @@ -1339,7 +1340,6 @@ static int ospf_spf_calculate_timer(struct thread *thread) ospf_ase_calculate_timer_add(ospf); - if (IS_DEBUG_OSPF_EVENT) zlog_debug("%s: ospf install new route, vrf %s id %u new_table count %lu", __PRETTY_FUNCTION__, @@ -1366,6 +1366,9 @@ static int ospf_spf_calculate_timer(struct thread *thread) ospf_abr_task(ospf); abr_time = monotime_since(&start_time, NULL); + /* Schedule Segment Routing update */ + ospf_sr_update_timer_add(ospf); + total_spf_time = monotime_since(&spf_start_time, &ospf->ts_spf_duration); |
