diff options
| author | Stephen Worley <sworley@nvidia.com> | 2021-06-24 12:46:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-24 12:46:31 -0400 |
| commit | a7c91c4246d8560a41367a8c331f17b45e31d04a (patch) | |
| tree | 2ffe88a3631e2a58473bb682fec6a885427101bc /zebra/zebra_mpls.c | |
| parent | 7bee25fa2005ee27498b19793fecf2e083d36c05 (diff) | |
| parent | 072b487b8f1b07829ccc547627ef7a0aa84ab289 (diff) | |
Merge pull request #8731 from mjstapp/fix_pw_backups
zebra: Fix pseudowires with backup nexthops
Diffstat (limited to 'zebra/zebra_mpls.c')
| -rw-r--r-- | zebra/zebra_mpls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_mpls.c b/zebra/zebra_mpls.c index 850ca17636..a4576b310e 100644 --- a/zebra/zebra_mpls.c +++ b/zebra/zebra_mpls.c @@ -54,6 +54,7 @@ DEFINE_MTYPE_STATIC(ZEBRA, FEC, "MPLS FEC object"); DEFINE_MTYPE_STATIC(ZEBRA, NHLFE, "MPLS nexthop object"); int mpls_enabled; +bool mpls_pw_reach_strict; /* Strict reachability checking */ /* static function declarations */ @@ -3977,6 +3978,7 @@ void zebra_mpls_init_tables(struct zebra_vrf *zvrf) void zebra_mpls_init(void) { mpls_enabled = 0; + mpls_pw_reach_strict = false; if (mpls_kernel_init() < 0) { flog_warn(EC_ZEBRA_MPLS_SUPPORT_DISABLED, |
