-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
56 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/sonic-frr/patch/0001-Add-support-of-bgp-tcp-DSCP-value.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/sonic-frr/patch/0002-Reduce-severity-of-Vty-connected-from-message.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/sonic-frr/patch/0003-Use-vrf_id-for-vrf-not-tabled_id.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/sonic-frr/patch/0004-Allow-BGP-attr-NEXT_HOP-to-be-0.0.0.0-due-to-allevia.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/sonic-frr/patch/0005-nexthops-compare-vrf-only-if-ip-type.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
src/sonic-frr/patch/0006-frr-remove-frr-log-outchannel-to-var-log-frr.log.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...Link-local-scope-was-not-set-while-binding-socket-for-bgp-ipv6-link-local-neighbors.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/sonic-frr/patch/Disable-ipv6-src-address-test-in-pceplib.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From dfe0158344ea581370dd2dba8e4db189cf369147 Mon Sep 17 00:00:00 2001 | ||
From: Syed Hasan Raza Naqvi <syed.naqvi@broadcom.com> | ||
Date: Wed, 4 May 2022 05:11:01 +0000 | ||
Subject: [PATCH] Disable ipv6 src address test in pcep. Docker lo interface | ||
doesn't have ipv6 enabled. Socket bind returns cannot assign requested | ||
address. | ||
|
||
--- | ||
pceplib/test/pcep_socket_comm_test.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/pceplib/test/pcep_socket_comm_test.c b/pceplib/test/pcep_socket_comm_test.c | ||
index 116531f12..8b71a5090 100644 | ||
--- a/pceplib/test/pcep_socket_comm_test.c | ||
+++ b/pceplib/test/pcep_socket_comm_test.c | ||
@@ -92,7 +92,7 @@ void pcep_socket_comm_test_setup() | ||
inet_pton(AF_INET, "127.0.0.1", &(test_host_ip)); | ||
inet_pton(AF_INET, "127.0.0.1", &(test_src_ip)); | ||
inet_pton(AF_INET6, "::1", &(test_host_ipv6)); | ||
- inet_pton(AF_INET6, "::1", &(test_src_ipv6)); | ||
+ inet_pton(AF_INET6, "::", &(test_src_ipv6)); | ||
} | ||
|
||
void pcep_socket_comm_test_teardown() | ||
-- | ||
2.20.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters