summaryrefslogtreecommitdiff
path: root/isisd/fabricd.c
diff options
context:
space:
mode:
authorKaushik <kaushik@niralnetworks.com>2020-07-13 05:37:59 -0700
committerKaushik <kaushik@niralnetworks.com>2020-08-14 13:46:22 -0700
commiteab88f3655ba7549211f6bcc6fbc8edc3d51ede1 (patch)
treeb8b2601b48d5f19a3d6648174567c8c364a2e8f3 /isisd/fabricd.c
parent40ce7a420341c7609945727de9dcbd71b0c17485 (diff)
isisd : Transformational changes to support different VRFs.
1. Created a structure "isis master". 2. All the changes are related to handle ISIS with different vrf. 3. A new variable added in structure "isis" to store the vrf name. 4. The display commands for isis is changed to support different VRFs. Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Diffstat (limited to 'isisd/fabricd.c')
-rw-r--r--isisd/fabricd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/fabricd.c b/isisd/fabricd.c
index e9dfd46010..ebaf14461e 100644
--- a/isisd/fabricd.c
+++ b/isisd/fabricd.c
@@ -475,7 +475,7 @@ void fabricd_run_spf(struct isis_area *area)
if (!f)
return;
- isis_run_hopcount_spf(area, isis->sysid, f->spftree);
+ isis_run_hopcount_spf(area, area->isis->sysid, f->spftree);
neighbors_neighbors_update(f);
fabricd_bump_tier_calculation_timer(f);
}