Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bgpd:'bgpd' core generated on Leaf device with system-test config #7433

Merged

Conversation

sudhanshukumar22
Copy link
Contributor

bgpd:'bgpd' core generated on Leaf device with system-test config

Description:
aggregate member route was enqueued for recalculation
while bgp instance was deleted.
As part of aggregate member route deletion, the aggregate route is
reinstalled with self-peer as source, but self-peer is already removed.
Assert() for null peer pointer is path attribute aborts bgp.

Problem Description/Summary :
BGP crashed while cleaning up aggregate route as part of bgp instance deletion.

Leaf-4(config)#
Leaf-4(config)# no router bgp 65179 vrf Vrf-red
Leaf-4(config)# no router bgp 65179
Leaf-4(config)#
Leaf-4(config)#
Leaf-4(config)# root@Leaf-4:~#

Sep 26 15:38:21.257554 System is not ready - Core services are down

router bgp 65179
bgp router-id 100.2.0.3
no bgp default ipv4-unicast
bgp network import-check
neighbor LeafToHostv4 peer-group
neighbor LeafToHostv4 remote-as 65003
neighbor LeafToHostv6 peer-group
neighbor LeafToHostv6 remote-as 65003
neighbor LeafToSpinev4 peer-group
neighbor LeafToSpinev4 remote-as 65134
neighbor LeafToSpinev4 bfd
neighbor LeafToSpinev6 peer-group
neighbor LeafToSpinev6 remote-as 65134
neighbor LeafToSpinev6 bfd
neighbor WindowsServer peer-group
neighbor WindowsServer remote-as 65201
neighbor 155.1.0.4 peer-group LeafToSpinev4
neighbor 155.2.0.4 peer-group LeafToSpinev4
neighbor 2000:155:1::4 peer-group LeafToSpinev6
neighbor 2000:155:2::4 peer-group LeafToSpinev6
neighbor 172.16.11.2 peer-group WindowsServer
neighbor 172.16.1.2 remote-as 65101
neighbor 2000:172:16:1::2 remote-as 65101
bgp listen limit 400
bgp listen range 133.3.0.0/16 peer-group LeafToHostv4
bgp listen range 2000:133:3::/48 peer-group LeafToHostv6
!
address-family ipv4 unicast
aggregate-address 133.1.0.0/16 as-set
aggregate-address 133.2.0.0/16 as-set
aggregate-address 133.3.0.0/16 as-set
aggregate-address 133.4.0.0/16 as-set
redistribute connected
neighbor LeafToHostv4 activate
neighbor LeafToSpinev4 activate
neighbor LeafToSpinev4 allowas-in 1
neighbor LeafToSpinev4 route-map spine_v4_export out
neighbor WindowsServer activate
neighbor 172.16.1.2 activate
exit-address-family
!
address-family ipv6 unicast
aggregate-address 2000:133:1::/48 as-set
aggregate-address 2000:133:2::/48 as-set
aggregate-address 2000:133:3::/48 as-set
aggregate-address 2000:133:4::/48 as-set
redistribute connected
..

(gdb) bt
name=0x55607dd49090 <FUNCTION.23915> "bgp_path_info_add")
at bgpd/bgpd.c:1159
name=name@entry=0x55607dd49090 <FUNCTION.23915> "bgp_path_info_add",
peer=) at bgpd/bgpd.c:1158
pi=) at bgpd/bgp_route.c:313
afi=afi@entry=AFI_IP, safi=safi@entry=SAFI_UNICAST,
p=p@entry=0x55607f1c4e10, origin=, aspath=0x55607f4bc8a0,
community=, ecommunity=,
lcommunity=, atomic_aggregate=0 '\000',
aggregate=0x55607f1c4ee0) at bgpd/bgp_route.c:5926
aggr_p=, aggregate=, pi=0x55607f41f9f0,
safi=SAFI_UNICAST, afi=AFI_IP, bgp=0x55607eeba5d0) at bgpd/bgp_route.c:6385
del=del@entry=0x55607f41f9f0, afi=afi@entry=AFI_IP,
--Type to continue, or q to quit--
safi=safi@entry=SAFI_UNICAST) at bgpd/bgp_route.c:6446
pi=0x55607f41f9f0, peer=0x55607ef22c10, afi=AFI_IP, safi=SAFI_UNICAST)
at bgpd/bgp_route.c:2885
data=) at bgpd/bgp_route.c:4125
at lib/workqueue.c:291
at lib/thread.c:1540
at bgpd/bgp_main.c:498
(gdb) fr 5
name=name@entry=0x55607dd49090 <FUNCTION.23915> "bgp_path_info_add",
peer=) at bgpd/bgpd.c:1158
1158 bgpd/bgpd.c: No such file or directory.
(gdb) fr 10
pi=0x55607f41f9f0, peer=0x55607ef22c10, afi=AFI_IP, safi=SAFI_UNICAST)
at bgpd/bgp_route.c:2885
2885 bgpd/bgp_route.c: No such file or directory.
(gdb) p peer->lock
$2 = 210
(gdb) p peer->status
$3 = 8
(gdb)
(gdb) p bgp
$11 = (struct bgp *) 0x56121ba315d0
(gdb) p bgp->peer_self
$12 = (struct peer *) 0x0
(gdb) p bgp->name
$13 = 0x0
(gdb) p bgp->name_pretty
$14 = 0x56121bb046a0 "VRF default"
(gdb) p bgp->inst_type
$15 = BGP_INSTANCE_TYPE_DEFAULT
(gdb)

bgp_aggregate_install():
5920
5921 new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
5922 bgp->peer_self, attr, rn);
5923
5924 SET_FLAG(new->flags, BGP_PATH_VALID);
5925
5926 bgp_path_info_add(rn, new);
5927 bgp_process(bgp, rn, afi, safi);

299 void bgp_path_info_add(struct bgp_node *rn, struct bgp_path_info pi):
...
310
311 bgp_path_info_lock(pi);
312 bgp_lock_node(rn);
313 peer_lock(pi->peer); /
bgp_path_info peer reference */ <<< This points to bgp->peer_self = NULL
314 }

1573 #define peer_lock(B) peer_lock_with_caller(FUNCTION, (B))

1156 /* increase reference count on a struct peer */
1157 struct peer *peer_lock_with_caller(const char *name, struct peer *peer)
1158 {
1159 assert(peer && (peer->lock >= 0)); <<< asserted here
1160

Similar issue was fixed in community and we already have the fix:
#4816
root@sr407497_lxc2:/home/ubuntu/frr_repo/frr/bgpd# git diff dfb6fd1~ dfb6fd1
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index abad1db..a372568 100644
— a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -5332,6 +5332,13 @@ static void bgp_purge_af_static_redist_routes(struct bgp *bgp, afi_t afi,
struct bgp_node *rn;
struct bgp_path_info *pi;

  • /* Do not install the aggregate route if BGP is in the
    • process of termination.
  • */
  • if (bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS) ||
  • (bgp->peer_self == NULL))
  • return;

table = bgp->rib[afi][safi];
for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {

But looks like similar handling is required at other places as well:

Expected Behavior :
BGP daemon should not crash

Signed-off-by: sudhanshu kumar sudhanshu.kumar@broadcom.com

@polychaeta polychaeta added the bgp label Oct 31, 2020
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/e523de3773e94d38dcd397ffa9d0dfa8/raw/af63510ae8c37919de559a604ae7fbff74dc0c2e/cr_7433_1604156059.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index 331dff0a7..1c653cd38 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6538,7 +6538,8 @@ static void bgp_aggregate_install(
 
 		if (!attr) {
 			char buf1[INET6_ADDRSTRLEN];
-			inet_ntop(p->family, &p->u.prefix, buf1, INET6_ADDRSTRLEN);
+			inet_ntop(p->family, &p->u.prefix, buf1,
+				  INET6_ADDRSTRLEN);
 			bgp_aggregate_delete(bgp, p, afi, safi, aggregate);
 			zlog_info("%s(%s): null attribute", __FUNCTION__, buf1);
 			return;
@@ -6548,8 +6549,8 @@ static void bgp_aggregate_install(
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self &&
-					!bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
 
 
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/CENTOS8BUILD/config.status/config.status

Package building failed for CentOS 8 amd64 build
see package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/CENTOS8BUILD/ErrorLog/log_package_build.txt

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/CI009BUILD/ErrorLog/log_make.txt)

./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
ospfd/ospf_neighbor.c: In function 'ospf_nbr_lookup':
ospfd/ospf_neighbor.c:410:45: error: taking address of packed member of 'struct ip' may result in an unaligned pointer value [-Werror=address-of-packed-member]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7386: ospfd/ospf_neighbor.o] Error 1
In file included from ospfd/ospf_nsm.c:27:
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
In file included from ./lib/table.h:26,
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/CI009BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15093/frr-source'
In file included from ./lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7387: pimd/mtracebis.o] Error 1
In file included from lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
In file included from lib/table.h:26,
lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
Successful on other platforms/tests
  • Ubuntu 16.04 arm8 build
  • Fedora 29 amd64 build
  • Debian 10 amd64 build
  • Ubuntu 16.04 amd64 build
  • Ubuntu 18.04 amd64 build
  • FreeBSD 12 amd64 build
  • Ubuntu 16.04 arm7 build
  • Ubuntu 16.04 i386 build
  • Debian 8 amd64 build
  • Ubuntu 18.04 ppc64le build
  • Ubuntu 18.04 arm7 build
  • CentOS 7 amd64 build
  • Ubuntu 18.04 arm8 build
  • OpenBSD 6 amd64 build
  • Debian 9 amd64 build
  • NetBSD 8 amd64 build

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15093/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g25b85fa48-0 (missing) -> 7.3-dev-20201031-00-g25b85fa48-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g25b85fa48-0 (missing) -> 7.3-dev-20201031-00-g25b85fa48-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g25b85fa48-0 (missing) -> 7.3-dev-20201031-00-g25b85fa48-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g25b85fa48-0 (missing) -> 7.3-dev-20201031-00-g25b85fa48-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g25b85fa48-0 (missing) -> 7.3-dev-20201031-00-g25b85fa48-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 31, 2020

Outdated results 🚧

Basic BGPD CI results: Partial FAILURE, 0 tests failed, has VALGRIND issues

_ _
Result SUCCESS git pull/7433 25b85fa (merge failed)
Date 10/31/2020
Start 10:45:35
Finish 11:11:34
Run-Time 25:59
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 1
Details vncregress-2020-10-31-10:45:35.txt
Log autoscript-2020-10-31-10:46:29.log.bz2
Memory 420 434 360

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15094/frr-source'

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/FBSD12AMD64/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI014BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1604I386/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804AMD64/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
 6552 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6556 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:6: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI008BLD/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:6: warning: implicit declaration of function bgp_flag_check [-Wimplicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI005BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
 6552 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
 6556 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804PPC64LEBUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6560:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6561:21: error: use of undeclared identifier 'rn'
4 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check' [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI021BUILD/config.status/config.status

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15094/frr-source'

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/FBSD12AMD64/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15094/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI014BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1604I386/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804AMD64/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
 6552 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6556 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:6: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI008BLD/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:6: warning: implicit declaration of function bgp_flag_check [-Wimplicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI005BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
 6552 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
 6556 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/U1804PPC64LEBUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6560:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6561:21: error: use of undeclared identifier 'rn'
4 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6552:7: error: implicit declaration of function 'bgp_flag_check' [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15094/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6552:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6556:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6556:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15094/artifact/CI021BUILD/config.status/config.status

Report for bgp_route.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #6541: FILE: /tmp/f1-2130/bgp_route.c:6541:
< WARNING: Missing a blank line after declarations
< #6541: FILE: /tmp/f1-2130/bgp_route.c:6541:
< WARNING: __func__ should be used instead of gcc specific __FUNCTION__
< #6543: FILE: /tmp/f1-2130/bgp_route.c:6543:
< WARNING: line over 80 characters
< #6552: FILE: /tmp/f1-2130/bgp_route.c:6552:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 31, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result FAILURE git merge/7433 132fd36 frr.github Build
Date 10/31/2020
Start 11:15:52
Finish 11:16:42
Run-Time 00:50
Total
Pass
Fail
Valgrind-Errors
Valgrind-Loss
Details vncregress-2020-10-31-11:15:52.txt
Log make-2020-10-31-11:15:52.out.bz2
Memory

For details, please contact louberger

Copy link
Member

@donaldsharp donaldsharp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please fix your signed off by line as well as rebasing to latest master and force pushing your branch

bgpd/bgp_route.c Outdated Show resolved Hide resolved
bgpd/bgp_route.c Outdated Show resolved Hide resolved
bgpd/bgp_route.c Outdated Show resolved Hide resolved
@sudhanshukumar22
Copy link
Contributor Author

Please fix your signed off by line as well as rebasing to latest master and force pushing your branch
@donaldsharp : Can you tell me what is the correct way to provide signed off by.

I gave
Signed-off-by: sudhanshu kumar sudhanshu.kumar@broadcom.com

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/fc5474d7c3dff005a8d85337a8c95803/raw/186cb1e962fe0a58cfea406828319d3d0d530134/cr_7433_1604318303.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index 75fe73b38..0ff91ced4 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6538,7 +6538,8 @@ static void bgp_aggregate_install(
 
 		if (!attr) {
 			char buf1[INET6_ADDRSTRLEN];
-			inet_ntop(p->family, &p->u.prefix, buf1, INET6_ADDRSTRLEN);
+			inet_ntop(p->family, &p->u.prefix, buf1,
+				  INET6_ADDRSTRLEN);
 			bgp_aggregate_delete(bgp, p, afi, safi, aggregate);
 			zlog_info("%s(%s): null attribute", __FUNCTION__, buf1);
 			return;
@@ -6547,8 +6548,8 @@ static void bgp_aggregate_install(
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self &&
-					!bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
 
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, rn);

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/52e4845e54d11d01a5cc64822ad8d83d/raw/d0d314201f768f04ff9cd90179842b305835e16b/cr_7433_1604318896.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index a8a15da87..1c0ded283 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6545,7 +6545,8 @@ static void bgp_aggregate_install(
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, rn);
 

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/20d635fea9f768fe42a40c266992f5fb/raw/d0d314201f768f04ff9cd90179842b305835e16b/cr_7433_1604319181.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index a8a15da87..1c0ded283 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6545,7 +6545,8 @@ static void bgp_aggregate_install(
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, rn);
 

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI021BUILD/config.status/config.status

Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804PPC64LEBUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check' [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
 6551 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
 6554 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1604I386/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/DEB10BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:6: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI008BLD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
 6551 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6554 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/F29BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6558:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6559:21: error: use of undeclared identifier 'rn'
4 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI011BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:6: warning: implicit declaration of function bgp_flag_check [-Wimplicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15116/frr-source'

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/FBSD12AMD64/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Warnings Generated during build:

Checkout code: Successful with additional warnings
Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI021BUILD/config.status/config.status

Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804PPC64LEBUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check' [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
 6551 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
 6554 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1604I386/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/DEB10BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:6: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI008BLD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
 6551 |      !bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS)) {
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6554 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/F29BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6558:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6559:21: error: use of undeclared identifier 'rn'
4 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI011BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:6: warning: implicit declaration of function bgp_flag_check [-Wimplicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:7: error: implicit declaration of function 'bgp_flag_check'; did you mean 'bgp_option_check'? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15116/frr-source'

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/FBSD12AMD64/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check; did you mean bgp_option_check? [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15116/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15116/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15116/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:7: error: implicit declaration of function bgp_flag_check [-Werror=implicit-function-declaration]
bgpd/bgp_route.c:6554:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6554:28: note: each undeclared identifier is reported only once for each function it appears in
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
Report for bgp_route.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #6541: FILE: /tmp/f1-3503/bgp_route.c:6541:
< WARNING: Missing a blank line after declarations
< #6541: FILE: /tmp/f1-3503/bgp_route.c:6541:
< WARNING: __func__ should be used instead of gcc specific __FUNCTION__
< #6543: FILE: /tmp/f1-3503/bgp_route.c:6543:
< WARNING: line over 80 characters
< #6551: FILE: /tmp/f1-3503/bgp_route.c:6551:

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804PPC64LEBUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI021BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1604I386/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/DEB10BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI009BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI008BLD/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI005BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI011BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15117/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/FBSD12AMD64/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804PPC64LEBUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI021BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1604I386/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/DEB10BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15117/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI009BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI008BLD/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI005BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI011BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15117/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/FBSD12AMD64/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15117/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15117/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15117/frr-source'
Report for bgp_route.c | 4 issues
===============================================
< WARNING: __func__ should be used instead of gcc specific __FUNCTION__
< #6541: FILE: /tmp/f1-9984/bgp_route.c:6541:
< WARNING: line over 80 characters
< #6548: FILE: /tmp/f1-9984/bgp_route.c:6548:

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804PPC64LEBUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI021BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1604I386/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/F29BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI009BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15118/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/FBSD12AMD64/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI005BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI011BUILD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804AMD64/config.status/config.status

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804PPC64LEBUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI021BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1604I386/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/F29BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15118/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI009BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15118/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/FBSD12AMD64/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI005BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI011BUILD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15118/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15118/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15118/artifact/U1804AMD64/config.status/config.status

Report for bgp_route.c | 4 issues
===============================================
< WARNING: __func__ should be used instead of gcc specific __FUNCTION__
< #6541: FILE: /tmp/f1-14473/bgp_route.c:6541:
< WARNING: line over 80 characters
< #6548: FILE: /tmp/f1-14473/bgp_route.c:6548:

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/db822034ce69521db107b64c3a019601/raw/9bacada81e7cce5ea8beb8f180b28564ff24659b/cr_7433_1604320824.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index 72f2ae364..7e5d04987 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6545,7 +6545,8 @@ static void bgp_aggregate_install(
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, rn);
 

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI021BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804PPC64LEBUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1604I386/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/F29BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI005BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI008BLD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/DEB10BUILD/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15120/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/FBSD12AMD64/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI014BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804AMD64/config.status/config.status

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI021BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804PPC64LEBUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1604I386/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/F29BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI005BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI008BLD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/DEB10BUILD/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15120/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/FBSD12AMD64/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6550:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6554:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI014BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6550:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6550 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15120/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15120/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6550:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6550:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15120/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15120/artifact/U1804AMD64/config.status/config.status

Report for bgp_route.c | 2 issues
===============================================
< WARNING: line over 80 characters
< #6548: FILE: /tmp/f1-30062/bgp_route.c:6548:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 2, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result FAILURE git merge/7433 d030fd0 frr.github Build
Date 11/02/2020
Start 07:57:37
Finish 07:58:35
Run-Time 00:58
Total
Pass
Fail
Valgrind-Errors
Valgrind-Loss
Details vncregress-2020-11-02-07:57:37.txt
Log make-2020-11-02-07:57:37.out.bz2
Memory

For details, please contact louberger

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/ca858e40b2f647f2bff422eb637f7e1c/raw/7871a867ea6df4f9f58ddc4d851ec26b5af4c73c/cr_7433_1604321993.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index 5ee1e7b68..602620165 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6539,14 +6539,16 @@ static void bgp_aggregate_install(
 		if (!attr) {
 			bgp_aggregate_delete(bgp, p, afi, safi, aggregate);
 			if (BGP_DEBUG(update_groups, UPDATE_GROUPS))
-				zlog_debug("%s(%pFX): null attribute", __func__, p);
+				zlog_debug("%s(%pFX): null attribute", __func__,
+					   p);
 			return;
 		}
 
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, rn);
 

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
 6551 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1604I386/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/F29BUILD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15122/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/FBSD12AMD64/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI005BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI008BLD/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804PPC64LEBUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6551:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6556:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI021BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI014BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6551 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
 6551 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2
Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1604I386/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make: *** [Makefile:4854: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/F29BUILD/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8161: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4855: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/DEB10BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15122/frr-source'
gmake: *** [Makefile:4854: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/FBSD12AMD64/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI005BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory `/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/manpages/_build/man/man.stamp
make[1]: Target `all-am' not remade because of errors.

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI005BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7618: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI008BLD/config.status/config.status

CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CENTOS8BUILD/config.status/config.status

Make failed for CentOS 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4854: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U1804PPC64LEBUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c:6551:28: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6555:22: error: use of undeclared identifier 'rn'
bgpd/bgp_route.c:6556:21: error: use of undeclared identifier 'rn'
3 errors generated.
gmake[1]: *** [Makefile:8159: bgpd/bgp_route.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI011BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13940: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13950: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13960: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI012BUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI021BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function)
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI014BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_route.c: In function 'bgp_aggregate_install':
bgpd/bgp_route.c:6551:28: error: 'rn' undeclared (first use in this function); did you mean 'yn'?
 6551 |      bgp->peer_self, attr, rn);
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [Makefile:8160: bgpd/bgp_route.o] Error 1
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15122/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15122/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15122/frr-source'
bgpd/bgp_route.c: In function bgp_aggregate_install:
bgpd/bgp_route.c:6551:28: error: rn undeclared (first use in this function); did you mean yn?
bgpd/bgp_route.c:6551:28: note: each undeclared identifier is reported only once for each function it appears in
Makefile:7630: recipe for target 'bgpd/bgp_route.o' failed
make[1]: *** [bgpd/bgp_route.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15122/frr-source'
Report for bgp_route.c | 4 issues
===============================================
< WARNING: line over 80 characters
< #6542: FILE: /tmp/f1-22644/bgp_route.c:6542:
< WARNING: line over 80 characters
< #6549: FILE: /tmp/f1-22644/bgp_route.c:6549:

@polychaeta polychaeta dismissed stale reviews from themself November 2, 2020 13:19

blocking comments addressed

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/b863703ebb583530e953db4cb0e380fa/raw/e705d0c0fd39a9134b0171d94c17b2df78682b27/cr_7433_1604576633.diff | git apply

diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index 9a7483fed..38251a447 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -6543,14 +6543,16 @@ static void bgp_aggregate_install(
 		if (!attr) {
 			bgp_aggregate_delete(bgp, p, afi, safi, aggregate);
 			if (BGP_DEBUG(update_groups, UPDATE_GROUPS))
-				zlog_debug("%s(%pFX): null attribute", __func__, p);
+				zlog_debug("%s(%pFX): null attribute", __func__,
+					   p);
 			return;
 		}
 
 		/* Do not install the aggregate route if BGP is in the
 		 * process of termination.
 		 */
-		if (bgp->peer_self && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
+		if (bgp->peer_self
+		    && !CHECK_FLAG(bgp->flags, BGP_FLAG_DELETE_IN_PROGRESS)) {
 			new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
 					bgp->peer_self, attr, dest);
 

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@sudhanshukumar22 sudhanshukumar22 force-pushed the bgp-aggregate-member-issue branch 2 times, most recently from 1baf046 to 836b2cd Compare November 5, 2020 11:48
@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 5, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 1baf046
Date 11/05/2020
Start 06:45:50
Finish 07:12:12
Run-Time 26:22
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-05-06:45:50.txt
Log autoscript-2020-11-05-06:46:47.log.bz2
Memory 496 472 420

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 5, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 836b2cd
Date 11/05/2020
Start 07:15:50
Finish 07:42:22
Run-Time 26:32
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-05-07:15:50.txt
Log autoscript-2020-11-05-07:16:48.log.bz2
Memory 470 473 420

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 5, 2020

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15216/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15216/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g1baf0469e-0 (missing) -> 7.6-dev-20201105-00-g1baf0469e-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g1baf0469e-0 (missing) -> 7.6-dev-20201105-00-g1baf0469e-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g1baf0469e-0 (missing) -> 7.6-dev-20201105-00-g1baf0469e-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g1baf0469e-0 (missing) -> 7.6-dev-20201105-00-g1baf0469e-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g1baf0469e-0 (missing) -> 7.6-dev-20201105-00-g1baf0469e-0~deb10u1

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 5, 2020

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15215/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Checkout code: Successful with additional warnings
Report for bgp_route.c | 4 issues
===============================================
< WARNING: line over 80 characters
< #6546: FILE: /tmp/f1-1022/bgp_route.c:6546:
< WARNING: line over 80 characters
< #6553: FILE: /tmp/f1-1022/bgp_route.c:6553:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15215/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g3c817bf06-0 (missing) -> 7.6-dev-20201105-00-g3c817bf06-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g3c817bf06-0 (missing) -> 7.6-dev-20201105-00-g3c817bf06-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g3c817bf06-0 (missing) -> 7.6-dev-20201105-00-g3c817bf06-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g3c817bf06-0 (missing) -> 7.6-dev-20201105-00-g3c817bf06-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g3c817bf06-0 (missing) -> 7.6-dev-20201105-00-g3c817bf06-0~deb10u1

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 5, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15217/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPOI386-15217/test

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386:

*** defaultIntf: warning: r1 has no interfaces
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-11-05 13:45:36,911 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::e0e1:cff:fe53:7ea4/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::dc8e:efff:fea1:ba6b/64']
2020-11-05 13:45:36,912 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:45:37,176 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::6c18:72ff:feb3:ce0a/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::d416:d4ff:fe7d:eb6a/64']
2020-11-05 13:45:37,176 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:45:37,440 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::40f0:fbff:fe1f:44f/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::8417:39ff:fecf:db6f/64']
2020-11-05 13:45:37,440 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:45:54,218 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::dc8e:efff:fea1:ba6b/64']
2020-11-05 13:45:54,219 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:45:54,479 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::6c18:72ff:feb3:ce0a/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::d416:d4ff:fe7d:eb6a/64']
2020-11-05 13:45:54,480 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:45:54,719 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::40f0:fbff:fe1f:44f/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::8417:39ff:fecf:db6f/64']
2020-11-05 13:45:54,719 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:11,029 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::e0e1:cff:fe53:7ea4/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::dc8e:efff:fea1:ba6b/64']
2020-11-05 13:46:11,029 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:11,324 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::6c18:72ff:feb3:ce0a/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::d416:d4ff:fe7d:eb6a/64']
2020-11-05 13:46:11,324 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:11,567 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::40f0:fbff:fe1f:44f/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::8417:39ff:fecf:db6f/64']
2020-11-05 13:46:11,567 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:25,752 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::e0e1:cff:fe53:7ea4/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::dc8e:efff:fea1:ba6b/64']
2020-11-05 13:46:25,752 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:26,022 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::d416:d4ff:fe7d:eb6a/64']
2020-11-05 13:46:26,022 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:26,298 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::40f0:fbff:fe1f:44f/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::8417:39ff:fecf:db6f/64']
2020-11-05 13:46:26,299 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:43,341 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::e0e1:cff:fe53:7ea4/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::dc8e:efff:fea1:ba6b/64']
2020-11-05 13:46:43,341 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:43,605 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::6c18:72ff:feb3:ce0a/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::d416:d4ff:fe7d:eb6a/64']
2020-11-05 13:46:43,605 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:46:43,883 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::40f0:fbff:fe1f:44f/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::8417:39ff:fecf:db6f/64']
2020-11-05 13:46:43,884 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2020-11-05 13:54:34,453 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:54:41,772 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:54:49,064 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:54:56,335 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:03,623 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:10,902 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:18,191 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:25,488 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:32,715 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:39,924 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:47,203 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:55:54,423 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:01,684 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:08,934 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:16,159 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:23,463 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:30,746 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:38,035 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:45,271 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:52,559 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:56:59,823 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:07,121 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:14,404 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:21,603 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:28,856 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:36,104 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:43,383 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:50,573 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:57:57,810 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:58:05,061 WARNING: vtysh_cmd: failed to convert json output
2020-11-05 13:58:12,069 ERROR: 'router_json_cmp' failed after 307.33 seconds
2020-11-05 13:58:12,111 ERROR: assert failed at "test_route_scale/test_route_install": Route scale test remove failed:
  Generated JSON diff error report:
  
  
  > $: d2 has key 'routes' which is not present in d1
  > $: d2 has key 'routesTotalFib' which is not present in d1
  > $: d2 has key 'routesTotal' which is not present in d1
  
  
assert False
No function contains program counter for selected frame.
No function contains program counter for selected frame.
No function contains program counter for selected frame.

r1: zebra crashed. Core file found - Backtrace follows:
[New LWP 28101]
[New LWP 28329]
[New LWP 28115]
[New LWP 28164]
[New LWP 28113]
[New LWP 28114]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/i386-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/lib/frr/zebra --log stdout --log-level debug -s 90000000 -d'.
Program terminated with signal SIGABRT, Aborted.
#0  0xb7fc9cf5 in ?? ()
[Current thread is 1 (Thread 0xb78d97c0 (LWP 28101))]
  Id   Target Id         Frame 
* 1    Thread 0xb78d97c0 (LWP 28101) 0xb7fc9cf5 in ?? ()
  2    Thread 0xb54feb40 (LWP 28329) 0xb7fc9cf5 in ?? ()
  3    Thread 0xb6887b40 (LWP 28115) 0xb7fc9cf5 in ?? ()
  4    Thread 0xb5cffb40 (LWP 28164) 0xb7fc9cf5 in ?? ()
  5    Thread 0xb7889b40 (LWP 28113) 0xb7fc9cf5 in ?? ()
  6    Thread 0xb7088b40 (LWP 28114) 0xb7fc9cf5 in ?? ()
#0  0xb7fc9cf5 in ?? ()
No symbol table info available.
#1  0xb7efab54 in qmalloc () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#2  0xb7f2438a in stream_new () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#3  0x00500e8e in ?? ()
No symbol table info available.
#4  0x0050655f in zsend_route_notify_owner_ctx ()
No symbol table info available.
#5  0x00536290 in ?? ()
No symbol table info available.
#6  0xb7f2f379 in thread_call () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#7  0xb7ef5ec1 in frr_run () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#8  0x004de32e in main ()
No symbol table info available.
#1  0xb7efab54 in qmalloc () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
Dump of assembler code for function qmalloc:
   0xb7efaa60 <+0>:	push   %ebp
   0xb7efaa61 <+1>:	mov    %esp,%ebp
   0xb7efaa63 <+3>:	push   %edi
   0xb7efaa64 <+4>:	push   %esi
   0xb7efaa65 <+5>:	push   %ebx
   0xb7efaa66 <+6>:	call   0xb7ecdc00
   0xb7efaa6b <+11>:	add    $0xbcfa5,%ebx
   0xb7efaa71 <+17>:	sub    $0x28,%esp
   0xb7efaa74 <+20>:	pushl  0xc(%ebp)
   0xb7efaa77 <+23>:	mov    0x8(%ebp),%esi
   0xb7efaa7a <+26>:	mov    %gs:0x14,%eax
   0xb7efaa80 <+32>:	mov    %eax,-0x1c(%ebp)
   0xb7efaa83 <+35>:	xor    %eax,%eax
   0xb7efaa85 <+37>:	call   0xb7ec8fe8
   0xb7efaa8a <+42>:	add    $0x10,%esp
   0xb7efaa8d <+45>:	test   %eax,%eax
   0xb7efaa8f <+47>:	mov    %eax,%edi
   0xb7efaa91 <+49>:	je     0xb7efab40 <qmalloc+224>
   0xb7efaa97 <+55>:	mov    $0x1,%edx
   0xb7efaa9c <+60>:	lock xadd %edx,0xc(%esi)
   0xb7efaaa1 <+65>:	mov    0x10(%esi),%eax
   0xb7efaaa4 <+68>:	add    $0x1,%edx
   0xb7efaaa7 <+71>:	lea    0x10(%esi),%ecx
   0xb7efaaaa <+74>:	cmp    %eax,%edx
   0xb7efaaac <+76>:	mov    %eax,-0x20(%ebp)
   0xb7efaaaf <+79>:	ja     0xb7efab30 <qmalloc+208>
   0xb7efaab1 <+81>:	mov    0x14(%esi),%eax
   0xb7efaab4 <+84>:	lea    0x14(%esi),%edx
   0xb7efaab7 <+87>:	test   %eax,%eax
   0xb7efaab9 <+89>:	mov    %eax,-0x20(%ebp)
   0xb7efaabc <+92>:	je     0xb7efab20 <qmalloc+192>
   0xb7efaabe <+94>:	lea    -0x1(%eax),%edx
   0xb7efaac1 <+97>:	cmp    $0xfffffffd,%edx
   0xb7efaac4 <+100>:	ja     0xb7efaad2 <qmalloc+114>
   0xb7efaac6 <+102>:	cmp    %eax,0xc(%ebp)
   0xb7efaac9 <+105>:	je     0xb7efaad2 <qmalloc+114>
   0xb7efaacb <+107>:	movl   $0xffffffff,0x14(%esi)
   0xb7efaad2 <+114>:	sub    $0xc,%esp
   0xb7efaad5 <+117>:	push   %edi
   0xb7efaad6 <+118>:	call   0xb7ec9138
   0xb7efaadb <+123>:	mov    %eax,%edx
   0xb7efaadd <+125>:	lock xadd %edx,0x18(%esi)
   0xb7efaae2 <+130>:	add    %eax,%edx
   0xb7efaae4 <+132>:	mov    0x1c(%esi),%eax
   0xb7efaae7 <+135>:	add    $0x10,%esp
   0xb7efaaea <+138>:	lea    0x1c(%esi),%ecx
   0xb7efaaed <+141>:	cmp    %eax,%edx
   0xb7efaaef <+143>:	mov    %eax,-0x20(%ebp)
   0xb7efaaf2 <+146>:	ja     0xb7efab10 <qmalloc+176>
   0xb7efaaf4 <+148>:	mov    -0x1c(%ebp),%ecx
   0xb7efaaf7 <+151>:	xor    %gs:0x14,%ecx
   0xb7efaafe <+158>:	mov    %edi,%eax
   0xb7efab00 <+160>:	jne    0xb7efab54 <qmalloc+244>
   0xb7efab02 <+162>:	lea    -0xc(%ebp),%esp
   0xb7efab05 <+165>:	pop    %ebx
   0xb7efab06 <+166>:	pop    %esi
   0xb7efab07 <+167>:	pop    %edi
   0xb7efab08 <+168>:	pop    %ebp
   0xb7efab09 <+169>:	ret    
   0xb7efab0a <+170>:	lea    0x0(%esi),%esi
   0xb7efab10 <+176>:	lock cmpxchg %edx,(%ecx)
   0xb7efab14 <+180>:	je     0xb7efaaf4 <qmalloc+148>
   0xb7efab16 <+182>:	mov    %eax,-0x20(%ebp)
   0xb7efab19 <+185>:	jmp    0xb7efaaf4 <qmalloc+148>
   0xb7efab1b <+187>:	nop
   0xb7efab1c <+188>:	lea    0x0(%esi,%eiz,1),%esi
   0xb7efab20 <+192>:	mov    0xc(%ebp),%eax
   0xb7efab23 <+195>:	xchg   %eax,(%edx)
   0xb7efab25 <+197>:	mov    %eax,-0x20(%ebp)
   0xb7efab28 <+200>:	jmp    0xb7efaabe <qmalloc+94>
   0xb7efab2a <+202>:	lea    0x0(%esi),%esi
   0xb7efab30 <+208>:	lock cmpxchg %edx,(%ecx)
   0xb7efab34 <+212>:	cmove  -0x20(%ebp),%eax
   0xb7efab38 <+216>:	mov    %eax,-0x20(%ebp)
   0xb7efab3b <+219>:	jmp    0xb7efaab1 <qmalloc+81>
   0xb7efab40 <+224>:	mov    0xc(%ebp),%edx
   0xb7efab43 <+227>:	test   %edx,%edx
   0xb7efab45 <+229>:	je     0xb7efaaf4 <qmalloc+148>
   0xb7efab47 <+231>:	push   %eax
   0xb7efab48 <+232>:	push   %eax
   0xb7efab49 <+233>:	pushl  0x8(%esi)
   0xb7efab4c <+236>:	pushl  0xc(%ebp)
   0xb7efab4f <+239>:	call   0xb7ef7760 <memory_oom>
=> 0xb7efab54 <+244>:	call   0xb7f4c8f0
End of assembler dump.
#2  0xb7f2438a in stream_new () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
Dump of assembler code for function stream_new:
   0xb7f24360 <+0>:	push   %ebp
   0xb7f24361 <+1>:	mov    %esp,%ebp
   0xb7f24363 <+3>:	push   %esi
   0xb7f24364 <+4>:	push   %ebx
   0xb7f24365 <+5>:	mov    0x8(%ebp),%esi
   0xb7f24368 <+8>:	call   0xb7ecdc00
   0xb7f2436d <+13>:	add    $0x936a3,%ebx
   0xb7f24373 <+19>:	test   %esi,%esi
   0xb7f24375 <+21>:	je     0xb7f243a8 <stream_new+72>
   0xb7f24377 <+23>:	lea    0x10(%esi),%eax
   0xb7f2437a <+26>:	sub    $0x8,%esp
   0xb7f2437d <+29>:	push   %eax
   0xb7f2437e <+30>:	lea    0x23d0(%ebx),%eax
   0xb7f24384 <+36>:	push   %eax
   0xb7f24385 <+37>:	call   0xb7efaa60 <qmalloc>
=> 0xb7f2438a <+42>:	movl   $0x0,0x8(%eax)
   0xb7f24391 <+49>:	movl   $0x0,0x4(%eax)
   0xb7f24398 <+56>:	movl   $0x0,(%eax)
   0xb7f2439e <+62>:	mov    %esi,0xc(%eax)
   0xb7f243a1 <+65>:	lea    -0x8(%ebp),%esp
   0xb7f243a4 <+68>:	pop    %ebx
   0xb7f243a5 <+69>:	pop    %esi
   0xb7f243a6 <+70>:	pop    %ebp
   0xb7f243a7 <+71>:	ret    
   0xb7f243a8 <+72>:	lea    -0x4db70(%ebx),%eax
   0xb7f243ae <+78>:	push   %eax
   0xb7f243af <+79>:	lea    -0x4e56b(%ebx),%eax
   0xb7f243b5 <+85>:	push   $0x6c
   0xb7f243b7 <+87>:	push   %eax
   0xb7f243b8 <+88>:	lea    -0x4e55e(%ebx),%eax
   0xb7f243be <+94>:	push   %eax
   0xb7f243bf <+95>:	call   0xb7ec94e0
End of assembler dump.
#3  0x00500e8e in ?? ()
#4  0x0050655f in zsend_route_notify_owner_ctx ()
Dump of assembler code for function zsend_route_notify_owner_ctx:
   0x00506500 <+0>:	push   %ebp
   0x00506501 <+1>:	mov    %esp,%ebp
   0x00506503 <+3>:	push   %edi
   0x00506504 <+4>:	push   %esi
   0x00506505 <+5>:	push   %ebx
   0x00506506 <+6>:	call   0x4def00 <_start+58>
   0x0050650b <+11>:	add    $0xb3185,%ebx
   0x00506511 <+17>:	sub    $0x28,%esp
   0x00506514 <+20>:	mov    0x8(%ebp),%esi
   0x00506517 <+23>:	push   %esi
   0x00506518 <+24>:	call   0x509fc0 <dplane_ctx_get_table>
   0x0050651d <+29>:	mov    %esi,(%esp)
   0x00506520 <+32>:	mov    %eax,-0x1c(%ebp)
   0x00506523 <+35>:	call   0x509e70 <dplane_ctx_get_vrf>
   0x00506528 <+40>:	mov    %esi,(%esp)
   0x0050652b <+43>:	mov    %eax,%edi
   0x0050652d <+45>:	call   0x50a010 <dplane_ctx_get_instance>
   0x00506532 <+50>:	mov    %esi,(%esp)
   0x00506535 <+53>:	mov    %ax,-0x1e(%ebp)
   0x00506539 <+57>:	call   0x509f30 <dplane_ctx_get_type>
   0x0050653e <+62>:	mov    %esi,(%esp)
   0x00506541 <+65>:	mov    %eax,-0x24(%ebp)
   0x00506544 <+68>:	call   0x509d60 <dplane_ctx_get_dest>
   0x00506549 <+73>:	movzwl -0x1e(%ebp),%ecx
   0x0050654d <+77>:	add    $0xc,%esp
   0x00506550 <+80>:	mov    -0x24(%ebp),%edx
   0x00506553 <+83>:	pushl  0xc(%ebp)
   0x00506556 <+86>:	pushl  -0x1c(%ebp)
   0x00506559 <+89>:	push   %edi
   0x0050655a <+90>:	call   0x500e30
=> 0x0050655f <+95>:	lea    -0xc(%ebp),%esp
   0x00506562 <+98>:	pop    %ebx
   0x00506563 <+99>:	pop    %esi
   0x00506564 <+100>:	pop    %edi
   0x00506565 <+101>:	pop    %ebp
   0x00506566 <+102>:	ret    
End of assembler dump.
#5  0x00536290 in ?? ()
2020-11-05 13:58:19,501 ERROR: assert failed at "test_route_scale/test_memory_leak": 
r1: zebra crashed. Core file found - Backtrace follows:
[New LWP 28101]
[New LWP 28329]
[New LWP 28115]
[New LWP 28164]
[New LWP 28113]
[New LWP 28114]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/i386-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/lib/frr/zebra --log stdout --log-level debug -s 90000000 -d'.
Program terminated with signal SIGABRT, Aborted.
#0  0xb7fc9cf5 in ?? ()
[Current thread is 1 (Thread 0xb78d97c0 (LWP 28101))]
  Id   Target Id         Frame 
* 1    Thread 0xb78d97c0 (LWP 28101) 0xb7fc9cf5 in ?? ()
  2    Thread 0xb54feb40 (LWP 28329) 0xb7fc9cf5 in ?? ()
  3    Thread 0xb6887b40 (LWP 28115) 0xb7fc9cf5 in ?? ()
  4    Thread 0xb5cffb40 (LWP 28164) 0xb7fc9cf5 in ?? ()
  5    Thread 0xb7889b40 (LWP 28113) 0xb7fc9cf5 in ?? ()
  6    Thread 0xb7088b40 (LWP 28114) 0xb7fc9cf5 in ?? ()
#0  0xb7fc9cf5 in ?? ()
No symbol table info available.
#1  0xb7efab54 in qmalloc () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#2  0xb7f2438a in stream_new () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#3  0x00500e8e in ?? ()
No symbol table info available.
#4  0x0050655f in zsend_route_notify_owner_ctx ()
No symbol table info available.
#5  0x00536290 in ?? ()
No symbol table info available.
#6  0xb7f2f379 in thread_call () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#7  0xb7ef5ec1 in frr_run () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
No symbol table info available.
#8  0x004de32e in main ()
No symbol table info available.
#1  0xb7efab54 in qmalloc () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
Dump of assembler code for function qmalloc:
   0xb7efaa60 <+0>:	push   %ebp
   0xb7efaa61 <+1>:	mov    %esp,%ebp
   0xb7efaa63 <+3>:	push   %edi
   0xb7efaa64 <+4>:	push   %esi
   0xb7efaa65 <+5>:	push   %ebx
   0xb7efaa66 <+6>:	call   0xb7ecdc00
   0xb7efaa6b <+11>:	add    $0xbcfa5,%ebx
   0xb7efaa71 <+17>:	sub    $0x28,%esp
   0xb7efaa74 <+20>:	pushl  0xc(%ebp)
   0xb7efaa77 <+23>:	mov    0x8(%ebp),%esi
   0xb7efaa7a <+26>:	mov    %gs:0x14,%eax
   0xb7efaa80 <+32>:	mov    %eax,-0x1c(%ebp)
   0xb7efaa83 <+35>:	xor    %eax,%eax
   0xb7efaa85 <+37>:	call   0xb7ec8fe8
   0xb7efaa8a <+42>:	add    $0x10,%esp
   0xb7efaa8d <+45>:	test   %eax,%eax
   0xb7efaa8f <+47>:	mov    %eax,%edi
   0xb7efaa91 <+49>:	je     0xb7efab40 <qmalloc+224>
   0xb7efaa97 <+55>:	mov    $0x1,%edx
   0xb7efaa9c <+60>:	lock xadd %edx,0xc(%esi)
   0xb7efaaa1 <+65>:	mov    0x10(%esi),%eax
   0xb7efaaa4 <+68>:	add    $0x1,%edx
   0xb7efaaa7 <+71>:	lea    0x10(%esi),%ecx
   0xb7efaaaa <+74>:	cmp    %eax,%edx
   0xb7efaaac <+76>:	mov    %eax,-0x20(%ebp)
   0xb7efaaaf <+79>:	ja     0xb7efab30 <qmalloc+208>
   0xb7efaab1 <+81>:	mov    0x14(%esi),%eax
   0xb7efaab4 <+84>:	lea    0x14(%esi),%edx
   0xb7efaab7 <+87>:	test   %eax,%eax
   0xb7efaab9 <+89>:	mov    %eax,-0x20(%ebp)
   0xb7efaabc <+92>:	je     0xb7efab20 <qmalloc+192>
   0xb7efaabe <+94>:	lea    -0x1(%eax),%edx
   0xb7efaac1 <+97>:	cmp    $0xfffffffd,%edx
   0xb7efaac4 <+100>:	ja     0xb7efaad2 <qmalloc+114>
   0xb7efaac6 <+102>:	cmp    %eax,0xc(%ebp)
   0xb7efaac9 <+105>:	je     0xb7efaad2 <qmalloc+114>
   0xb7efaacb <+107>:	movl   $0xffffffff,0x14(%esi)
   0xb7efaad2 <+114>:	sub    $0xc,%esp
   0xb7efaad5 <+117>:	push   %edi
   0xb7efaad6 <+118>:	call   0xb7ec9138
   0xb7efaadb <+123>:	mov    %eax,%edx
   0xb7efaadd <+125>:	lock xadd %edx,0x18(%esi)
   0xb7efaae2 <+130>:	add    %eax,%edx
   0xb7efaae4 <+132>:	mov    0x1c(%esi),%eax
   0xb7efaae7 <+135>:	add    $0x10,%esp
   0xb7efaaea <+138>:	lea    0x1c(%esi),%ecx
   0xb7efaaed <+141>:	cmp    %eax,%edx
   0xb7efaaef <+143>:	mov    %eax,-0x20(%ebp)
   0xb7efaaf2 <+146>:	ja     0xb7efab10 <qmalloc+176>
   0xb7efaaf4 <+148>:	mov    -0x1c(%ebp),%ecx
   0xb7efaaf7 <+151>:	xor    %gs:0x14,%ecx
   0xb7efaafe <+158>:	mov    %edi,%eax
   0xb7efab00 <+160>:	jne    0xb7efab54 <qmalloc+244>
   0xb7efab02 <+162>:	lea    -0xc(%ebp),%esp
   0xb7efab05 <+165>:	pop    %ebx
   0xb7efab06 <+166>:	pop    %esi
   0xb7efab07 <+167>:	pop    %edi
   0xb7efab08 <+168>:	pop    %ebp
   0xb7efab09 <+169>:	ret    
   0xb7efab0a <+170>:	lea    0x0(%esi),%esi
   0xb7efab10 <+176>:	lock cmpxchg %edx,(%ecx)
   0xb7efab14 <+180>:	je     0xb7efaaf4 <qmalloc+148>
   0xb7efab16 <+182>:	mov    %eax,-0x20(%ebp)
   0xb7efab19 <+185>:	jmp    0xb7efaaf4 <qmalloc+148>
   0xb7efab1b <+187>:	nop
   0xb7efab1c <+188>:	lea    0x0(%esi,%eiz,1),%esi
   0xb7efab20 <+192>:	mov    0xc(%ebp),%eax
   0xb7efab23 <+195>:	xchg   %eax,(%edx)
   0xb7efab25 <+197>:	mov    %eax,-0x20(%ebp)
   0xb7efab28 <+200>:	jmp    0xb7efaabe <qmalloc+94>
   0xb7efab2a <+202>:	lea    0x0(%esi),%esi
   0xb7efab30 <+208>:	lock cmpxchg %edx,(%ecx)
   0xb7efab34 <+212>:	cmove  -0x20(%ebp),%eax
   0xb7efab38 <+216>:	mov    %eax,-0x20(%ebp)
   0xb7efab3b <+219>:	jmp    0xb7efaab1 <qmalloc+81>
   0xb7efab40 <+224>:	mov    0xc(%ebp),%edx
   0xb7efab43 <+227>:	test   %edx,%edx
   0xb7efab45 <+229>:	je     0xb7efaaf4 <qmalloc+148>
   0xb7efab47 <+231>:	push   %eax
   0xb7efab48 <+232>:	push   %eax
   0xb7efab49 <+233>:	pushl  0x8(%esi)
   0xb7efab4c <+236>:	pushl  0xc(%ebp)
   0xb7efab4f <+239>:	call   0xb7ef7760 <memory_oom>
=> 0xb7efab54 <+244>:	call   0xb7f4c8f0
End of assembler dump.
#2  0xb7f2438a in stream_new () from /usr/lib/i386-linux-gnu/frr/libfrr.so.0
Dump of assembler code for function stream_new:
   0xb7f24360 <+0>:	push   %ebp
   0xb7f24361 <+1>:	mov    %esp,%ebp
   0xb7f24363 <+3>:	push   %esi
   0xb7f24364 <+4>:	push   %ebx
   0xb7f24365 <+5>:	mov    0x8(%ebp),%esi
   0xb7f24368 <+8>:	call   0xb7ecdc00
   0xb7f2436d <+13>:	add    $0x936a3,%ebx
   0xb7f24373 <+19>:	test   %esi,%esi
   0xb7f24375 <+21>:	je     0xb7f243a8 <stream_new+72>
   0xb7f24377 <+23>:	lea    0x10(%esi),%eax
   0xb7f2437a <+26>:	sub    $0x8,%esp
   0xb7f2437d <+29>:	push   %eax
   0xb7f2437e <+30>:	lea    0x23d0(%ebx),%eax
   0xb7f24384 <+36>:	push   %eax
   0xb7f24385 <+37>:	call   0xb7efaa60 <qmalloc>
=> 0xb7f2438a <+42>:	movl   $0x0,0x8(%eax)
   0xb7f24391 <+49>:	movl   $0x0,0x4(%eax)
   0xb7f24398 <+56>:	movl   $0x0,(%eax)
   0xb7f2439e <+62>:	mov    %esi,0xc(%eax)
   0xb7f243a1 <+65>:	lea    -0x8(%ebp),%esp
   0xb7f243a4 <+68>:	pop    %ebx
   0xb7f243a5 <+69>:	pop    %esi
   0xb7f243a6 <+70>:	pop    %ebp
   0xb7f243a7 <+71>:	ret    
   0xb7f243a8 <+72>:	lea    -0x4db70(%ebx),%eax
   0xb7f243ae <+78>:	push   %eax
   0xb7f243af <+79>:	lea    -0x4e56b(%ebx),%eax
   0xb7f243b5 <+85>:	push   $0x6c
   0xb7f243b7 <+87>:	push   %eax
   0xb7f243b8 <+88>:	lea    -0x4e55e(%ebx),%eax
   0xb7f243be <+94>:	push   %eax
   0xb7f243bf <+95>:	call   0xb7ec94e0
End of assembler dump.
#3  0x00500e8e in ?? ()
#4  0x0050655f in zsend_route_notify_owner_ctx ()
Dump of assembler code for function zsend_route_notify_owner_ctx:
   0x00506500 <+0>:	push   %ebp
   0x00506501 <+1>:	mov    %esp,%ebp
   0x00506503 <+3>:	push   %edi
   0x00506504 <+4>:	push   %esi
   0x00506505 <+5>:	push   %ebx
   0x00506506 <+6>:	call   0x4def00 <_start+58>
   0x0050650b <+11>:	add    $0xb3185,%ebx
   0x00506511 <+17>:	sub    $0x28,%esp
   0x00506514 <+20>:	mov    0x8(%ebp),%esi
   0x00506517 <+23>:	push   %esi
   0x00506518 <+24>:	call   0x509fc0 <dplane_ctx_get_table>
   0x0050651d <+29>:	mov    %esi,(%esp)
   0x00506520 <+32>:	mov    %eax,-0x1c(%ebp)
   0x00506523 <+35>:	call   0x509e70 <dplane_ctx_get_vrf>
   0x00506528 <+40>:	mov    %esi,(%esp)
   0x0050652b <+43>:	mov    %eax,%edi
   0x0050652d <+45>:	call   0x50a010 <dplane_ctx_get_instance>
   0x00506532 <+50>:	mov    %esi,(%esp)
   0x00506535 <+53>:	mov    %ax,-0x1e(%ebp)
   0x00506539 <+57>:	call   0x509f30 <dplane_ctx_get_type>
   0x0050653e <+62>:	mov    %esi,(%esp)
   0x00506541 <+65>:	mov    %eax,-0x24(%ebp)
   0x00506544 <+68>:	call   0x509d60 <dplane_ctx_get_dest>
   0x00506549 <+73>:	movzwl -0x1e(%ebp),%ecx
   0x0050654d <+77>:	add    $0xc,%esp
   0x00506550 <+80>:	mov    -0x24(%ebp),%edx
   0x00506553 <+83>:	pushl  0xc(%ebp)
   0x00506556 <+86>:	pushl  -0x1c(%ebp)
   0x00506559 <+89>:	push   %edi
   0x0050655a <+90>:	call   0x500e30
=> 0x0050655f <+95>:	lea    -0xc(%ebp),%esp
   0x00506562 <+98>:	pop    %ebx
   0x00506563 <+99>:	pop    %esi
   0x00506564 <+100>:	pop    %edi
   0x00506565 <+101>:	pop    %ebp
   0x00506566 <+102>:	ret    
End of assembler dump.
#5  0x00536290 in ?? ()

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15217/artifact/TOPOI386/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • Addresssanitizer topotests part 1
  • CentOS 7 rpm pkg check
  • Addresssanitizer topotests part 0
  • IPv4 ldp protocol on Ubuntu 18.04
  • Debian 8 deb pkg check
  • Addresssanitizer topotests part 2
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 1 on Ubuntu 18.04 arm8
  • Topo tests part 1 on Ubuntu 16.04 amd64
  • IPv6 protocols on Ubuntu 18.04
  • Topo tests part 2 on Ubuntu 18.04 arm8
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • Topo tests part 1 on Ubuntu 16.04 i386
  • Ubuntu 16.04 deb pkg check
  • Debian 10 deb pkg check
  • Topo tests part 2 on Ubuntu 18.04 amd64
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • Fedora 29 rpm pkg check
  • Debian 9 deb pkg check
  • Topo tests part 0 on Ubuntu 18.04 arm8
  • Static analyzer (clang)
  • Topo tests part 2 on Ubuntu 16.04 i386
  • Ubuntu 18.04 deb pkg check
  • Topo tests part 1 on Ubuntu 18.04 amd64
  • Ubuntu 20.04 deb pkg check

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15217/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1

CLANG Static Analyzer Summary

  • Github Pull Request 7433, comparing to Git base SHA 898fde3

No Changes in Static Analysis warnings compared to base

3 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15217/artifact/shared/static_analysis/index.html

bgpd/bgp_route.c Outdated Show resolved Hide resolved
@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 15, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 0cb3056
Date 01/15/2021
Start 06:15:50
Finish 06:51:16
Run-Time 35:26
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-15-06:15:50.txt
Log autoscript-2021-01-15-06:16:52.log.bz2
Memory 491 491 426

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 15, 2021

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16541/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16541/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210115-02-g0cb30562e-0 (missing) -> 7.6-dev-20210115-02-g0cb30562e-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210115-02-g0cb30562e-0 (missing) -> 7.6-dev-20210115-02-g0cb30562e-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210115-02-g0cb30562e-0 (missing) -> 7.6-dev-20210115-02-g0cb30562e-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210115-02-g0cb30562e-0 (missing) -> 7.6-dev-20210115-02-g0cb30562e-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210115-02-g0cb30562e-0 (missing) -> 7.6-dev-20210115-02-g0cb30562e-0~deb10u1

@sudhanshukumar22 sudhanshukumar22 force-pushed the bgp-aggregate-member-issue branch 2 times, most recently from 836b2cd to 8ae4791 Compare January 18, 2021 07:07
@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 18, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 836b2cd
Date 01/18/2021
Start 01:55:47
Finish 02:31:16
Run-Time 35:29
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-18-01:55:47.txt
Log autoscript-2021-01-18-01:56:50.log.bz2
Memory 493 496 428

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 18, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 8ae4791
Date 01/18/2021
Start 02:35:47
Finish 03:11:11
Run-Time 35:24
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-18-02:35:47.txt
Log autoscript-2021-01-18-02:36:49.log.bz2
Memory 501 503 427

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 18, 2021

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16566/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16566/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201105-00-g836b2cdc0-0 (missing) -> 7.6-dev-20201105-00-g836b2cdc0-0~deb10u1

CLANG Static Analyzer Summary

  • Github Pull Request 7433, comparing to Git base SHA 849909e
  • Base image data for Git 849909e does not exist - compare skipped

3 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16566/artifact/shared/static_analysis/index.html

bgpd/bgp_route.c Outdated Show resolved Hide resolved
Description:
aggregate member route was enqueued for recalculation
    while bgp instance was deleted.
    As part of aggregate member route deletion, the aggregate route is
    reinstalled with self-peer as source, but self-peer is already removed.
    Assert() for null peer pointer is path attribute aborts bgp.
Problem Description/Summary :
BGP crashed while cleaning up aggregate route as part of bgp instance deletion.
-----------------------
Leaf-4(config)#
Leaf-4(config)# no router bgp 65179 vrf Vrf-red
Leaf-4(config)# no router bgp 65179
Leaf-4(config)#
Leaf-4(config)#
Leaf-4(config)# root@Leaf-4:~#

Sep 26 15:38:21.257554 System is not ready - Core services are down
------------
router bgp 65179
bgp router-id 100.2.0.3
no bgp default ipv4-unicast
bgp network import-check
neighbor LeafToHostv4 peer-group
neighbor LeafToHostv4 remote-as 65003
neighbor LeafToHostv6 peer-group
neighbor LeafToHostv6 remote-as 65003
neighbor LeafToSpinev4 peer-group
neighbor LeafToSpinev4 remote-as 65134
neighbor LeafToSpinev4 bfd
neighbor LeafToSpinev6 peer-group
neighbor LeafToSpinev6 remote-as 65134
neighbor LeafToSpinev6 bfd
neighbor WindowsServer peer-group
neighbor WindowsServer remote-as 65201
neighbor 155.1.0.4 peer-group LeafToSpinev4
neighbor 155.2.0.4 peer-group LeafToSpinev4
neighbor 2000:155:1::4 peer-group LeafToSpinev6
neighbor 2000:155:2::4 peer-group LeafToSpinev6
neighbor 172.16.11.2 peer-group WindowsServer
neighbor 172.16.1.2 remote-as 65101
neighbor 2000:172:16:1::2 remote-as 65101
bgp listen limit 400
bgp listen range 133.3.0.0/16 peer-group LeafToHostv4
bgp listen range 2000:133:3::/48 peer-group LeafToHostv6
!
address-family ipv4 unicast
aggregate-address 133.1.0.0/16 as-set
aggregate-address 133.2.0.0/16 as-set
aggregate-address 133.3.0.0/16 as-set
aggregate-address 133.4.0.0/16 as-set
redistribute connected
neighbor LeafToHostv4 activate
neighbor LeafToSpinev4 activate
neighbor LeafToSpinev4 allowas-in 1
neighbor LeafToSpinev4 route-map spine_v4_export out
neighbor WindowsServer activate
neighbor 172.16.1.2 activate
exit-address-family
!
address-family ipv6 unicast
aggregate-address 2000:133:1::/48 as-set
aggregate-address 2000:133:2::/48 as-set
aggregate-address 2000:133:3::/48 as-set
aggregate-address 2000:133:4::/48 as-set
redistribute connected
..
------------
(gdb) bt
name=0x55607dd49090 <_FUNCTION_.23915> "bgp_path_info_add")
at bgpd/bgpd.c:1159
name=name@entry=0x55607dd49090 <_FUNCTION_.23915> "bgp_path_info_add",
peer=<optimized out>) at bgpd/bgpd.c:1158
pi=<optimized out>) at bgpd/bgp_route.c:313
afi=afi@entry=AFI_IP, safi=safi@entry=SAFI_UNICAST,
p=p@entry=0x55607f1c4e10, origin=<optimized out>, aspath=0x55607f4bc8a0,
community=<optimized out>, ecommunity=<optimized out>,
lcommunity=<optimized out>, atomic_aggregate=0 '\000',
aggregate=0x55607f1c4ee0) at bgpd/bgp_route.c:5926
aggr_p=<optimized out>, aggregate=<optimized out>, pi=0x55607f41f9f0,
safi=SAFI_UNICAST, afi=AFI_IP, bgp=0x55607eeba5d0) at bgpd/bgp_route.c:6385
del=del@entry=0x55607f41f9f0, afi=afi@entry=AFI_IP,
--Type <return> to continue, or q <return> to quit--
safi=safi@entry=SAFI_UNICAST) at bgpd/bgp_route.c:6446
pi=0x55607f41f9f0, peer=0x55607ef22c10, afi=AFI_IP, safi=SAFI_UNICAST)
at bgpd/bgp_route.c:2885
data=<optimized out>) at bgpd/bgp_route.c:4125
at lib/workqueue.c:291
at lib/thread.c:1540
at bgpd/bgp_main.c:498
(gdb) fr 5
name=name@entry=0x55607dd49090 <_FUNCTION_.23915> "bgp_path_info_add",
peer=<optimized out>) at bgpd/bgpd.c:1158
1158 bgpd/bgpd.c: No such file or directory.
(gdb) fr 10
pi=0x55607f41f9f0, peer=0x55607ef22c10, afi=AFI_IP, safi=SAFI_UNICAST)
at bgpd/bgp_route.c:2885
2885 bgpd/bgp_route.c: No such file or directory.
(gdb) p peer->lock
$2 = 210
(gdb) p peer->status
$3 = 8
(gdb)
(gdb) p bgp
$11 = (struct bgp *) 0x56121ba315d0
(gdb) p bgp->peer_self
$12 = (struct peer *) 0x0
(gdb) p bgp->name
$13 = 0x0
(gdb) p bgp->name_pretty
$14 = 0x56121bb046a0 "VRF default"
(gdb) p bgp->inst_type
$15 = BGP_INSTANCE_TYPE_DEFAULT
(gdb)

bgp_aggregate_install():
5920
5921 new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
5922 bgp->peer_self, attr, rn);
5923
5924 SET_FLAG(new->flags, BGP_PATH_VALID);
5925
5926 bgp_path_info_add(rn, new);
5927 bgp_process(bgp, rn, afi, safi);

299 void bgp_path_info_add(struct bgp_node *rn, struct bgp_path_info *pi):
...
310
311 bgp_path_info_lock(pi);
312 bgp_lock_node(rn);
313 peer_lock(pi->peer); /* bgp_path_info peer reference */ <<< This points to bgp->peer_self = NULL
314 }

1573 #define peer_lock(B) peer_lock_with_caller(_FUNCTION_, (B))

1156 /* increase reference count on a struct peer */
1157 struct peer *peer_lock_with_caller(const char *name, struct peer *peer)
1158 {
1159 assert(peer && (peer->lock >= 0)); <<< asserted here
1160

Similar issue was fixed in community and we already have the fix:
FRRouting#4816
root@sr407497_lxc2:/home/ubuntu/frr_repo/frr/bgpd# git diff dfb6fd1~ dfb6fd1
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index abad1db..a372568 100644
— a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -5332,6 +5332,13 @@ static void bgp_purge_af_static_redist_routes(struct bgp *bgp, afi_t afi,
struct bgp_node *rn;
struct bgp_path_info *pi;

+ /* Do not install the aggregate route if BGP is in the
+ * process of termination.
+ */
+ if (bgp_flag_check(bgp, BGP_FLAG_DELETE_IN_PROGRESS) ||
+ (bgp->peer_self == NULL))
+ return;
+
table = bgp->rib[afi][safi];
for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {

But looks like similar handling is required at other places as well:

Expected Behavior :
BGP daemon should not crash

Signed-off-by: sudhanshukumar22 <sudhanshu.kumar@broadcom.com>
Copy link
Member

@ton31337 ton31337 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 18, 2021

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16567/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16567/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-g8ae4791b1-0 (missing) -> 7.6-dev-20210118-00-g8ae4791b1-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-g8ae4791b1-0 (missing) -> 7.6-dev-20210118-00-g8ae4791b1-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-g8ae4791b1-0 (missing) -> 7.6-dev-20210118-00-g8ae4791b1-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-g8ae4791b1-0 (missing) -> 7.6-dev-20210118-00-g8ae4791b1-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-g8ae4791b1-0 (missing) -> 7.6-dev-20210118-00-g8ae4791b1-0~deb10u1

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 18, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7433 dfb19e9
Date 01/18/2021
Start 04:30:50
Finish 05:06:16
Run-Time 35:26
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-18-04:30:50.txt
Log autoscript-2021-01-18-04:31:52.log.bz2
Memory 491 502 425

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 18, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16570/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 3 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP3U1604AMD64-16570/test

Topology Tests failed for Topo tests part 3 on Ubuntu 16.04 amd64:

2021-01-18 10:34:20,957 ERROR: could not find /usr/lib/frr directory
Exit: enviroment has errors, please read the logs

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16570/artifact/TP3U1604AMD64/ErrorLog/log_topotests.txt
Topo tests part 3 on Ubuntu 16.04 amd64: Unknown Log <diagnostics.txt>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16570/artifact/TP3U1604AMD64/TestExecutionLogs/diagnostics.txt

Successful on other platforms/tests
  • IPv6 protocols on Ubuntu 18.04
  • Topo tests part 3 on Ubuntu 18.04 arm8
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 1
  • Topo tests part 3 on Ubuntu 18.04 amd64
  • Topo tests part 4 on Ubuntu 16.04 amd64
  • Topo tests part 1 on Ubuntu 16.04 amd64
  • Debian 8 deb pkg check
  • Topo tests part 4 on Ubuntu 18.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 1 on Ubuntu 18.04 arm8
  • Static analyzer (clang)
  • Topo tests part 2 on Ubuntu 18.04 arm8
  • Topo tests part 2 on Ubuntu 16.04 i386
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • Topo tests part 4 on Ubuntu 16.04 i386
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 0 on Ubuntu 18.04 arm8
  • Topo tests part 1 on Ubuntu 16.04 i386
  • Topo tests part 4 on Ubuntu 18.04 arm8
  • IPv4 ldp protocol on Ubuntu 18.04
  • Ubuntu 20.04 deb pkg check
  • Topo tests part 1 on Ubuntu 18.04 amd64
  • Addresssanitizer topotests part 2
  • Ubuntu 18.04 deb pkg check
  • Debian 9 deb pkg check
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • CentOS 7 rpm pkg check
  • Topo tests part 2 on Ubuntu 18.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Debian 10 deb pkg check
  • Addresssanitizer topotests part 0
  • Topo tests part 3 on Ubuntu 16.04 i386

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16570/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-gdfb19e997-0 (missing) -> 7.6-dev-20210118-00-gdfb19e997-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-gdfb19e997-0 (missing) -> 7.6-dev-20210118-00-gdfb19e997-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-gdfb19e997-0 (missing) -> 7.6-dev-20210118-00-gdfb19e997-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-gdfb19e997-0 (missing) -> 7.6-dev-20210118-00-gdfb19e997-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-gdfb19e997-0 (missing) -> 7.6-dev-20210118-00-gdfb19e997-0~deb10u1

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 18, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7433 a455974
Date 01/18/2021
Start 06:23:08
Finish 06:58:48
Run-Time 35:40
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-18-06:23:08.txt
Log autoscript-2021-01-18-06:24:12.log.bz2
Memory 478 505 427

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16571/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16571/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-ga4559740e-0 (missing) -> 7.6-dev-20210118-00-ga4559740e-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-ga4559740e-0 (missing) -> 7.6-dev-20210118-00-ga4559740e-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-ga4559740e-0 (missing) -> 7.6-dev-20210118-00-ga4559740e-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-ga4559740e-0 (missing) -> 7.6-dev-20210118-00-ga4559740e-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210118-00-ga4559740e-0 (missing) -> 7.6-dev-20210118-00-ga4559740e-0~deb10u1

@ton31337 ton31337 merged commit 218c799 into FRRouting:master Jan 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants