From 13fb40ac99823c405137a42d7666785fd7ac641a Mon Sep 17 00:00:00 2001 From: hasso Date: Sat, 1 Oct 2005 06:03:04 +0000 Subject: * isis_adjacency.c: Stop expire timer while deleting adjacency. * isis_events.c: Stop pseudo LSP thread while resigning circuit from level. * isis_route.c: Fix compiling with EXTREME_DEBUG. Mark route as not in sync with zebra if it's changed. * isis_spf.c: Schedule route validating etc even if tent was empty. It's probably because we just don't have any adjacencies. * isisd.c: Write minimum spf interval into configuration. --- isisd/isis_spf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'isisd/isis_spf.c') diff --git a/isisd/isis_spf.c b/isisd/isis_spf.c index d9375496..988ad9b2 100644 --- a/isisd/isis_spf.c +++ b/isisd/isis_spf.c @@ -1027,8 +1027,7 @@ isis_run_spf (struct isis_area *area, int level, int family) if (listcount (spftree->tents) == 0) { zlog_warn ("ISIS-Spf: TENT is empty"); - spftree->lastrun = time (NULL); - return retval; + goto out; } while (listcount (spftree->tents) > 0) @@ -1068,6 +1067,7 @@ isis_run_spf (struct isis_area *area, int level, int family) } } +out: thread_add_event (master, isis_route_validate, area, 0); spftree->lastrun = time (NULL); spftree->pending = 0; -- cgit v1.2.1