summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-07-24 20:07:21 +0200
committerGitHub <noreply@github.com>2024-07-24 20:07:21 +0200
commitabe46eca69bceaa9f15434e9d834a32a3fd9b429 (patch)
tree3c4221d959606da47b9b0e14b93d676429459180
parentc3513444a98fd96342929724cb1ce35bb6695c31 (diff)
parentdc6a23b37cdad432a31adb88403bafcd6aa235a0 (diff)
downloadvyos-build-abe46eca69bceaa9f15434e9d834a32a3fd9b429.tar.gz
vyos-build-abe46eca69bceaa9f15434e9d834a32a3fd9b429.zip
Merge pull request #710 from vyos/revert-704-frr-ospfd-ldp-sync
Revert "frr: T6600: apply pending upstream patch for ospfd ldp-sync"
-rw-r--r--packages/frr/patches/0001-ospfd-fix-internal-ldp-sync-state-flags-when-feature.patch129
1 files changed, 0 insertions, 129 deletions
diff --git a/packages/frr/patches/0001-ospfd-fix-internal-ldp-sync-state-flags-when-feature.patch b/packages/frr/patches/0001-ospfd-fix-internal-ldp-sync-state-flags-when-feature.patch
deleted file mode 100644
index 5d05cdcd..00000000
--- a/packages/frr/patches/0001-ospfd-fix-internal-ldp-sync-state-flags-when-feature.patch
+++ /dev/null
@@ -1,129 +0,0 @@
-From 5a70378a47f541b0354fbb96770dd0a65ec552b8 Mon Sep 17 00:00:00 2001
-From: Christian Breunig <christian@breunig.cc>
-Date: Sat, 13 Jul 2024 08:43:36 +0200
-Subject: [PATCH] ospfd: fix internal ldp-sync state flags when feature is
- disabled
-
-When enabling "mpls ldp-sync" under "router ospf" ospfd configures
-SET_FLAG(ldp_sync_info->flags, LDP_SYNC_FLAG_IF_CONFIG) so internally knowing
-that the ldp-sync feature is enabled. However the flag is not cleared when
-turning of the feature using "nompls ldp-sync"!
-
-https://github.com/FRRouting/frr/issues/16375
-
-Signed-off-by: Christian Breunig <christian@breunig.cc>
----
- ospfd/ospf_ldp_sync.c | 2 +-
- tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync.ref | 4 ++--
- .../r2/show_ospf_ldp_sync_r1_eth1_shutdown.ref | 4 ++--
- .../r2/show_ospf_ldp_sync_r2_eth1_shutdown.ref | 4 ++--
- tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync.ref | 4 ++--
- .../r3/show_ospf_ldp_sync_r1_eth1_shutdown.ref | 4 ++--
- .../r3/show_ospf_ldp_sync_r2_eth1_shutdown.ref | 4 ++--
- 7 files changed, 13 insertions(+), 13 deletions(-)
-
-diff --git a/ospfd/ospf_ldp_sync.c b/ospfd/ospf_ldp_sync.c
-index d1ef85c9a..496ae5b4b 100644
---- a/ospfd/ospf_ldp_sync.c
-+++ b/ospfd/ospf_ldp_sync.c
-@@ -901,7 +901,7 @@ DEFPY (no_mpls_ldp_sync,
- * stop holddown timer if running
- * restore ospf cost
- */
-- SET_FLAG(ldp_sync_info->flags, LDP_SYNC_FLAG_IF_CONFIG);
-+ UNSET_FLAG(ldp_sync_info->flags, LDP_SYNC_FLAG_IF_CONFIG);
- ldp_sync_info->enabled = LDP_IGP_SYNC_DEFAULT;
- ldp_sync_info->state = LDP_IGP_SYNC_STATE_NOT_REQUIRED;
- EVENT_OFF(ldp_sync_info->t_holddown);
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync.ref b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync.ref
-index 6c27a1042..846be5b84 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync.ref
-@@ -5,8 +5,8 @@
- "ldpIgpSyncState":"Sync achieved"
- },
- "r2-eth2":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- }
- }
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r1_eth1_shutdown.ref b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-index 889f69ed7..ad3b8b5ca 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-@@ -5,8 +5,8 @@
- "ldpIgpSyncState":"Holding down until Sync"
- },
- "r2-eth2":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- }
- }
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r2_eth1_shutdown.ref b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-index d9036e124..d5e4b88d0 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r2/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-@@ -1,7 +1,7 @@
- {
- "r2-eth2":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- }
- }
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync.ref b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync.ref
-index b417ab040..5b9542d5a 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync.ref
-@@ -1,8 +1,8 @@
- {
- "r3-eth1":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- },
- "r3-eth2":{
- "ldpIgpSyncEnabled":true,
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r1_eth1_shutdown.ref b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-index b417ab040..5b9542d5a 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r1_eth1_shutdown.ref
-@@ -1,8 +1,8 @@
- {
- "r3-eth1":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- },
- "r3-eth2":{
- "ldpIgpSyncEnabled":true,
-diff --git a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r2_eth1_shutdown.ref b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-index b417ab040..5b9542d5a 100644
---- a/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-+++ b/tests/topotests/ldp_sync_ospf_topo1/r3/show_ospf_ldp_sync_r2_eth1_shutdown.ref
-@@ -1,8 +1,8 @@
- {
- "r3-eth1":{
-- "ldpIgpSyncEnabled":false,
-+ "ldpIgpSyncEnabled":true,
- "holdDownTimeInSec":50,
-- "ldpIgpSyncState":"Sync not required"
-+ "ldpIgpSyncState":"Sync achieved"
- },
- "r3-eth2":{
- "ldpIgpSyncEnabled":true,
---
-2.39.2
-