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

zebra: treat vrf add for existing vrf as update #7508

Merged
merged 1 commit into from
Feb 10, 2021

Conversation

sudhanshukumar22
Copy link
Contributor

@sudhanshukumar22 sudhanshukumar22 commented Nov 12, 2020

Description: When we get a new vrf add and vrf with same name, but different vrf-id already
exists in the database, we should treat vrf add as update.
This happens mostly when there are lots of vrf and other configuration being replayed.
There may be a stale vrf delete followed by new vrf add. This
can cause timing race condition where vrf delete could be missed and
further same vrf add would get rejected instead of treating last arrived
vrf add as update.

Treat vrf add for existing vrf as update.
Implicitly disable this VRF to cleanup routes and other functions as part of vrf disable.
Update vrf_id for the vrf and update vrf_id tree.
Re-enable VRF so that all routes are freshly installed.

Above 3 steps are mandatory since it can happen that with config reload
stale routes which are installed in vrf-1 table might contain routes from
older vrf-0 table which might have got deleted due to missing vrf-0 in new configuration.
Problem Description/Summary :

Expected Behavior :
config should be retained after config reload.

Signed-off-by: sudhanshukumar22 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 does not have a blank line between the summary and body; this will break git log --oneline
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/d0181926e5194506794f35294baf8732/raw/b6614057ff6c218814068a1d77f76db4f564c8c5/cr_7508_1605184813.diff | git apply

diff --git a/zebra/if_netlink.c b/zebra/if_netlink.c
index 602896b07..a6e7ee9d5 100644
--- a/zebra/if_netlink.c
+++ b/zebra/if_netlink.c
@@ -352,17 +352,19 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 
 		/*Treat VRF add for existing vrf as update
 		 * Update VRF ID and also update in VRF ID table
-		*/
+		 */
 		if (name)
 			vrf = vrf_lookup_by_name(name);
 		if (vrf && (vrf_id_t)ifi->ifi_index != VRF_UNKNOWN
-			&& vrf->vrf_id != VRF_UNKNOWN
-			&& vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
-			zlog_info("Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
-				name, vrf->vrf_id, ((struct zebra_vrf*)vrf->info)->table_id,
+		    && vrf->vrf_id != VRF_UNKNOWN
+		    && vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
+			zlog_info(
+				"Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
+				name, vrf->vrf_id,
+				((struct zebra_vrf *)vrf->info)->table_id,
 				(vrf_id_t)ifi->ifi_index, nl_table_id);
 
-			/*Disable the vrf to simulate implicit delete 
+			/*Disable the vrf to simulate implicit delete
 			 * so that all stale routes are deleted
 			 * This vrf will be enabled down the line*/
 			vrf_disable(vrf);
@@ -372,12 +374,12 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 			vrf->vrf_id = (vrf_id_t)ifi->ifi_index;
 			RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
 
-			} else {
+		} else {
 			/*
 			 * vrf_get is implied creation if it does not exist
-			*/
+			 */
 			vrf = vrf_get((vrf_id_t)ifi->ifi_index,
-				name); // It would create vrf
+				      name); // It would create vrf
 		}
 
 		if (!vrf) {

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 12, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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 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-15394/artifact/U1804AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/artifact/U1804AMD64/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-15394/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
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-15394/artifact/CI008BLD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/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-15394/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/frr-source'
make[1]: Target 'all-am' not remade because of errors.
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-15394/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
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-15394/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-15394/artifact/CI021BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/artifact/CI014BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/artifact/CI014BUILD/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-15394/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
copying selected object files to avoid basename conflicts...
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-15394/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
copying selected object files to avoid basename conflicts...
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-15394/artifact/U1604I386/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/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-15394/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-15394/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/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-15394/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-15394/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
Successful on other platforms/tests
  • CentOS 7 amd64 build
  • FreeBSD 12 amd64 build
  • OpenBSD 6 amd64 build
  • NetBSD 8 amd64 build
  • FreeBSD 11 amd64 build
  • Ubuntu 20.04 amd64 build

Warnings Generated during build:

Checkout code: Successful with additional warnings
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-15394/artifact/U1804AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/artifact/U1804AMD64/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-15394/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
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-15394/artifact/CI008BLD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7618: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/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-15394/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/frr-source'
make[1]: Target 'all-am' not remade because of errors.
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-15394/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
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-15394/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-15394/artifact/CI021BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/artifact/CI014BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/artifact/CI014BUILD/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-15394/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
copying selected object files to avoid basename conflicts...
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-15394/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
copying selected object files to avoid basename conflicts...
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-15394/artifact/U1604I386/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15394/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-15394/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8160: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/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-15394/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-15394/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8161: zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:5: WARNING: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:5: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
make[1]: Leaving directory '/home/ci/cibuild.15394/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-15394/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-15394/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15394/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7630: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
/home/ci/cibuild.15394/frr-source/doc/user/ipv6.rst:23: WARNING: duplicate label ipv6-support, other instance in /home/ci/cibuild.15394/frr-source/doc/user/bgp.rst
/home/ci/cibuild.15394/frr-source/doc/user/bgp.rst:23: SEVERE: Duplicate ID: "clicmd-[no]bgpdefaultipv4-unicast".
<stdin>:26: trailing whitespace.
			/*Disable the vrf to simulate implicit delete 
warning: 1 line adds whitespace errors.
Report for if_netlink.c | 14 issues
===============================================
< WARNING: Block comments should align the * on each line
< #355: FILE: /tmp/f1-32021/if_netlink.c:355:
< WARNING: line over 80 characters
< #362: FILE: /tmp/f1-32021/if_netlink.c:362:
< ERROR: "(foo*)" should be "(foo *)"
< #362: FILE: /tmp/f1-32021/if_netlink.c:362:
< ERROR: trailing whitespace
< #365: FILE: /tmp/f1-32021/if_netlink.c:365:
< WARNING: Block comments use a trailing */ on a separate line
< #367: FILE: /tmp/f1-32021/if_netlink.c:367:
< WARNING: suspect code indent for conditional statements (24, 24)
< #375: FILE: /tmp/f1-32021/if_netlink.c:375:
< WARNING: Block comments should align the * on each line
< #378: FILE: /tmp/f1-32021/if_netlink.c:378:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 12, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7508 8051e19
Date 11/12/2020
Start 12:38:39
Finish 13:13:57
Run-Time 35:18
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-12-12:38:39.txt
Log autoscript-2020-11-12-12:39:41.log.bz2
Memory 489 465 417

For details, please contact louberger

@sworleys
Copy link
Member

your commit doesn't have a summary line and it has a lot of empty sections. Just delete those if you aren't going to fill them out.

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 does not have a blank line between the summary and body; this will break git log --oneline
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/afd34ee2e1506b5f1413e8f7ac76cf6d/raw/276e6ac7d47d7354bae4c256d6fbad74330a8004/cr_7508_1610520934.diff | git apply

diff --git a/zebra/if_netlink.c b/zebra/if_netlink.c
index e00a2337a..8e31a2d7c 100644
--- a/zebra/if_netlink.c
+++ b/zebra/if_netlink.c
@@ -352,17 +352,19 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 
 		/*Treat VRF add for existing vrf as update
 		 * Update VRF ID and also update in VRF ID table
-		*/
+		 */
 		if (name)
 			vrf = vrf_lookup_by_name(name);
 		if (vrf && (vrf_id_t)ifi->ifi_index != VRF_UNKNOWN
-			&& vrf->vrf_id != VRF_UNKNOWN
-			&& vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
-			zlog_info("Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
-				name, vrf->vrf_id, ((struct zebra_vrf*)vrf->info)->table_id,
+		    && vrf->vrf_id != VRF_UNKNOWN
+		    && vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
+			zlog_info(
+				"Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
+				name, vrf->vrf_id,
+				((struct zebra_vrf *)vrf->info)->table_id,
 				(vrf_id_t)ifi->ifi_index, nl_table_id);
 
-			/*Disable the vrf to simulate implicit delete 
+			/*Disable the vrf to simulate implicit delete
 			 * so that all stale routes are deleted
 			 * This vrf will be enabled down the line*/
 			vrf_disable(vrf);
@@ -372,12 +374,12 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 			vrf->vrf_id = (vrf_id_t)ifi->ifi_index;
 			RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
 
-			} else {
+		} else {
 			/*
 			 * vrf_get is implied creation if it does not exist
-			*/
+			 */
 			vrf = vrf_get((vrf_id_t)ifi->ifi_index,
-				name); // It would create vrf
+				      name); // It would create vrf
 		}
 
 		if (!vrf) {

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 does not have a blank line between the summary and body; this will break git log --oneline
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/888863a6e2b41c8d052dffc193de3db0/raw/276e6ac7d47d7354bae4c256d6fbad74330a8004/cr_7508_1610521129.diff | git apply

diff --git a/zebra/if_netlink.c b/zebra/if_netlink.c
index e00a2337a..8e31a2d7c 100644
--- a/zebra/if_netlink.c
+++ b/zebra/if_netlink.c
@@ -352,17 +352,19 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 
 		/*Treat VRF add for existing vrf as update
 		 * Update VRF ID and also update in VRF ID table
-		*/
+		 */
 		if (name)
 			vrf = vrf_lookup_by_name(name);
 		if (vrf && (vrf_id_t)ifi->ifi_index != VRF_UNKNOWN
-			&& vrf->vrf_id != VRF_UNKNOWN
-			&& vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
-			zlog_info("Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
-				name, vrf->vrf_id, ((struct zebra_vrf*)vrf->info)->table_id,
+		    && vrf->vrf_id != VRF_UNKNOWN
+		    && vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
+			zlog_info(
+				"Vrf Update event: %s old id: %u table:%u new id: %u table: %u",
+				name, vrf->vrf_id,
+				((struct zebra_vrf *)vrf->info)->table_id,
 				(vrf_id_t)ifi->ifi_index, nl_table_id);
 
-			/*Disable the vrf to simulate implicit delete 
+			/*Disable the vrf to simulate implicit delete
 			 * so that all stale routes are deleted
 			 * This vrf will be enabled down the line*/
 			vrf_disable(vrf);
@@ -372,12 +374,12 @@ static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
 			vrf->vrf_id = (vrf_id_t)ifi->ifi_index;
 			RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
 
-			} else {
+		} else {
 			/*
 			 * vrf_get is implied creation if it does not exist
-			*/
+			 */
 			vrf = vrf_get((vrf_id_t)ifi->ifi_index,
-				name); // It would create vrf
+				      name); // It would create vrf
 		}
 
 		if (!vrf) {

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 Jan 13, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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-16502/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U16ARM8BUILD/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-16502/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16502/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/F29BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/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-16502/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-16502/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16502/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CENTOS8BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/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-16502/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI014BUILD/config.log/config.log.gz

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-16502/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1604I386/config.log/config.log.gz

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-16502/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804AMD64/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'
Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/CI008BLD/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-16502/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16502/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM7BUILD/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-16502/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/frr-source'
Makefile:4514: recipe for target 'all' failed

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI021BUILD/config.log/config.log.gz

Successful on other platforms/tests
  • FreeBSD 12 amd64 build
  • FreeBSD 11 amd64 build
  • Ubuntu 20.04 amd64 build
  • CentOS 7 amd64 build
  • OpenBSD 6 amd64 build
  • NetBSD 8 amd64 build

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-16502/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U16ARM8BUILD/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-16502/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16502/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/F29BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/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-16502/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-16502/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16502/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CENTOS8BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/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-16502/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI014BUILD/config.log/config.log.gz

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-16502/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1604I386/config.log/config.log.gz

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-16502/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804AMD64/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'
Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/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-16502/artifact/CI008BLD/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-16502/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16502/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16502/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/U18ARM7BUILD/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-16502/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16502/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16502/frr-source'
Makefile:4514: recipe for target 'all' failed

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16502/artifact/CI021BUILD/config.log/config.log.gz

<stdin>:26: trailing whitespace.
			/*Disable the vrf to simulate implicit delete 
warning: 1 line adds whitespace errors.
Report for if_netlink.c | 14 issues
===============================================
< WARNING: Block comments should align the * on each line
< #355: FILE: /tmp/f1-32236/if_netlink.c:355:
< WARNING: line over 80 characters
< #362: FILE: /tmp/f1-32236/if_netlink.c:362:
< ERROR: "(foo*)" should be "(foo *)"
< #362: FILE: /tmp/f1-32236/if_netlink.c:362:
< ERROR: trailing whitespace
< #365: FILE: /tmp/f1-32236/if_netlink.c:365:
< WARNING: Block comments use a trailing */ on a separate line
< #367: FILE: /tmp/f1-32236/if_netlink.c:367:
< WARNING: suspect code indent for conditional statements (24, 24)
< #375: FILE: /tmp/f1-32236/if_netlink.c:375:
< WARNING: Block comments should align the * on each line
< #378: FILE: /tmp/f1-32236/if_netlink.c:378:

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 does not have a blank line between the summary and body; this will break git log --oneline

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 Jan 13, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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-16501/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U16ARM8BUILD/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-16501/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16501/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/F29BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/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-16501/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI014BUILD/config.log/config.log.gz

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-16501/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1804AMD64/config.log/config.log.gz

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-16501/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-16501/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CENTOS8BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/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-16501/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1604I386/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI008BLD/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-16501/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16501/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM7BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/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-16501/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI021BUILD/config.log/config.log.gz

Successful on other platforms/tests
  • FreeBSD 12 amd64 build
  • FreeBSD 11 amd64 build
  • CentOS 7 amd64 build
  • Ubuntu 20.04 amd64 build
  • OpenBSD 6 amd64 build
  • NetBSD 8 amd64 build

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-16501/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U16ARM8BUILD/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-16501/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16501/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/F29BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/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-16501/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI014BUILD/config.log/config.log.gz

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-16501/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1804AMD64/config.log/config.log.gz

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-16501/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-16501/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CENTOS8BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/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-16501/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1604I386/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI008BLD/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-16501/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16501/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM7BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16501/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-16501/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16501/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:10: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16501/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-16501/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16501/artifact/CI021BUILD/config.log/config.log.gz

<stdin>:26: trailing whitespace.
			/*Disable the vrf to simulate implicit delete 
warning: 1 line adds whitespace errors.
Report for if_netlink.c | 14 issues
===============================================
< WARNING: Block comments should align the * on each line
< #355: FILE: /tmp/f1-22840/if_netlink.c:355:
< WARNING: line over 80 characters
< #362: FILE: /tmp/f1-22840/if_netlink.c:362:
< ERROR: "(foo*)" should be "(foo *)"
< #362: FILE: /tmp/f1-22840/if_netlink.c:362:
< ERROR: trailing whitespace
< #365: FILE: /tmp/f1-22840/if_netlink.c:365:
< WARNING: Block comments use a trailing */ on a separate line
< #367: FILE: /tmp/f1-22840/if_netlink.c:367:
< WARNING: suspect code indent for conditional statements (24, 24)
< #375: FILE: /tmp/f1-22840/if_netlink.c:375:
< WARNING: Block comments should align the * on each line
< #378: FILE: /tmp/f1-22840/if_netlink.c:378:

@polychaeta polychaeta dismissed stale reviews from themself January 13, 2021 07:35

blocking comments addressed

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 13, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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-16503/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U16ARM8BUILD/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-16503/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/F29BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/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-16503/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-16503/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CENTOS8BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/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-16503/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/frr-source'
Makefile:4514: recipe for target 'all' failed

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI014BUILD/config.log/config.log.gz

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-16503/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804AMD64/config.log/config.log.gz

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-16503/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1604I386/config.log/config.log.gz

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-16503/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM7BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/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-16503/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16503/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/frr-source'
Makefile:4514: recipe for target 'all' failed

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI021BUILD/config.log/config.log.gz

Successful on other platforms/tests
  • FreeBSD 11 amd64 build
  • FreeBSD 12 amd64 build
  • NetBSD 8 amd64 build
  • CentOS 7 amd64 build
  • Ubuntu 20.04 amd64 build
  • OpenBSD 6 amd64 build

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-16503/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U16ARM8BUILD/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-16503/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/F29BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/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-16503/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-16503/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CENTOS8BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.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.16503/frr-source'
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/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-16503/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/frr-source'
Makefile:4514: recipe for target 'all' failed

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI014BUILD/config.log/config.log.gz

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-16503/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804AMD64/config.log/config.log.gz

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-16503/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1604I386/config.log/config.log.gz

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-16503/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM7BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16503/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-16503/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/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-16503/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16503/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16503/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16503/frr-source'
Makefile:4514: recipe for target 'all' failed

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16503/artifact/CI021BUILD/config.log/config.log.gz

Report for if_netlink.c | 2 issues
===============================================
< WARNING: Block comments use a trailing */ on a separate line
< #369: FILE: /tmp/f1-28094/if_netlink.c:369:

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 13, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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-16504/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U16ARM8BUILD/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-16504/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16504/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/F29BUILD/config.log/config.log.gz

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-16504/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-16504/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16504/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CENTOS8BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'
Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/DEB10BUILD/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-16504/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1604I386/config.log/config.log.gz

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-16504/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI014BUILD/config.log/config.log.gz

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-16504/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804AMD64/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'
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-16504/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM7BUILD/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-16504/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI021BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/CI008BLD/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-16504/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

Successful on other platforms/tests
  • OpenBSD 6 amd64 build
  • FreeBSD 11 amd64 build
  • FreeBSD 12 amd64 build
  • NetBSD 8 amd64 build
  • CentOS 7 amd64 build
  • Ubuntu 20.04 amd64 build

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-16504/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U16ARM8BUILD/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-16504/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16504/frr-source'
make: *** [Makefile:5058: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/F29BUILD/config.log/config.log.gz

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-16504/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-16504/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8476: zebra/if_netlink.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.16504/frr-source'
make: *** [Makefile:5058: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CENTOS8BUILD/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI101BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'
Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/DEB10BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8477: zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5059: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/DEB10BUILD/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-16504/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1604I386/config.log/config.log.gz

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-16504/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI014BUILD/config.log/config.log.gz

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-16504/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804AMD64/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM8BUILD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'
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-16504/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U18ARM7BUILD/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-16504/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.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.16504/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI021BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/CI008BLD/config.log/config.log.gz

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

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7914: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/CI008BLD/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-16504/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.16504/frr-source'
zebra/if_netlink.c: In function netlink_vrf_change:
zebra/if_netlink.c:359:13: error: vrf may be used uninitialized in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
Makefile:7926: recipe for target 'zebra/if_netlink.o' failed
make[1]: *** [zebra/if_netlink.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.16504/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-16504/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16504/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

Report for if_netlink.c | 2 issues
===============================================
< WARNING: Block comments use a trailing */ on a separate line
< #369: FILE: /tmp/f1-6414/if_netlink.c:369:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 13, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7508 8667db7
Date 01/13/2021
Start 02:35:59
Finish 03:11:22
Run-Time 35:23
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-13-02:35:59.txt
Log autoscript-2021-01-13-02:37:01.log.bz2
Memory 501 495 427

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 13, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7508 71835bb
Date 01/13/2021
Start 03:51:06
Finish 04:26:26
Run-Time 35:20
Total 1815
Pass 1815
Fail 0
Valgrind-Errors
Valgrind-Loss
Details vncregress-2021-01-13-03:51:06.txt
Log autoscript-2021-01-13-03:51:59.log.bz2
Memory 503 507 427

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 13, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7508 f61eb0d
Date 01/13/2021
Start 05:41:21
Finish 06:16:46
Run-Time 35:25
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-13-05:41:21.txt
Log autoscript-2021-01-13-05:42:22.log.bz2
Memory 465 473 427

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 13, 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-16507/

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 if_netlink.c | 2 issues
===============================================
< WARNING: Block comments use a trailing */ on a separate line
< #369: FILE: /tmp/f1-15103/if_netlink.c:369:

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-16507/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-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210113-00-gf61eb0d0d-0 (missing) -> 7.6-dev-20210113-00-gf61eb0d0d-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210113-00-gf61eb0d0d-0 (missing) -> 7.6-dev-20210113-00-gf61eb0d0d-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210113-00-gf61eb0d0d-0 (missing) -> 7.6-dev-20210113-00-gf61eb0d0d-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210113-00-gf61eb0d0d-0 (missing) -> 7.6-dev-20210113-00-gf61eb0d0d-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210113-00-gf61eb0d0d-0 (missing) -> 7.6-dev-20210113-00-gf61eb0d0d-0~deb10u1

if (vrf && (vrf_id_t)ifi->ifi_index != VRF_UNKNOWN
&& vrf->vrf_id != VRF_UNKNOWN
&& vrf->vrf_id != (vrf_id_t)ifi->ifi_index) {
zlog_info(
Copy link
Member

Choose a reason for hiding this comment

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

This should be a guarded debug statement.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I have done the changes.

vrf_disable(vrf);


RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
Copy link
Member

Choose a reason for hiding this comment

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

This code seems a bit overly complex to be in netlink dataplane logic. Can we not abstract this to be a vrf_update() call or something?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I have done the changes.

Copy link
Member

@sworleys sworleys Jan 27, 2021

Choose a reason for hiding this comment

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

You haven't done this. Maybe I was not clear in my wording... my apologies. I meant this code should be abstracting out of the if_netlink.c file and handled similarly to how is being done for vrf_delete() and vrf_get() you should create a new vrf_update() or something that can handle both add/update and call that in lib/vrf.c

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@sworleys I have done the changes , please approve.

@sworleys
Copy link
Member

Report for if_netlink.c | 2 issues
===============================================
< WARNING: Block comments use a trailing */ on a separate line
< #369: FILE: /tmp/f1-15103/if_netlink.c:369:

@sworleys
Copy link
Member

A few other comments:

please follow our commit guidelines: http://docs.frrouting.org/projects/dev-guide/en/latest/workflow.html#coding-practices-style

note the space after bgpd bgpd: short summary

The first line should be no longer than 50 characters

Also your commit summary makes no sense with what you are doing here. Please change it to describe what the code change is exactly.

@sworleys sworleys changed the title zebra: zebra: treat vrf add for existing vrf as update Jan 13, 2021
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/20e9b97845ec4e6a9710534df4f7b239/raw/aa98ce4462f2507030487feea6af98ed67e26914/cr_7508_1611806169.diff | git apply

diff --git a/lib/vrf.c b/lib/vrf.c
index 0f1b7912b..5a17bdf49 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -216,51 +216,50 @@ struct vrf *vrf_get(vrf_id_t vrf_id, const char *name)
 
 /* Update a VRF. If not found, create one.
  * Arg:
- *   name   - The name of the vrf.  
+ *   name   - The name of the vrf.
  *   vrf_id - The vrf_id of the vrf.
- * Description: This function first finds the vrf using its name. If the vrf is found
- * and the vrf-id of the existing vrf does not match the new vrf id, it will disable
- * the existing vrf and update it with new vrf-id. 
- * If the vrf is not found, it will create the vrf with given name and the new vrf id.
+ * Description: This function first finds the vrf using its name. If the vrf is
+ * found and the vrf-id of the existing vrf does not match the new vrf id, it
+ * will disable the existing vrf and update it with new vrf-id. If the vrf is
+ * not found, it will create the vrf with given name and the new vrf id.
  */
 struct vrf *vrf_update(vrf_id_t new_vrf_id, const char *name)
 {
-        struct vrf *vrf = NULL;
-
-        /*Treat VRF add for existing vrf as update
-         * Update VRF ID and also update in VRF ID table
-         */
-        if (name)
-                vrf = vrf_lookup_by_name(name);
-        if (vrf && new_vrf_id != VRF_UNKNOWN
-            && vrf->vrf_id != VRF_UNKNOWN
-            && vrf->vrf_id != new_vrf_id) {
-                if (debug_vrf) {
-                        zlog_debug(
-                                "Vrf Update event: %s old id: %u table:%u new id: %u",
-                                name, vrf->vrf_id,
-                                ((struct zebra_vrf *)vrf->info)->table_id,
-                                new_vrf_id);
-                }
-
-                /*Disable the vrf to simulate implicit delete
-                 * so that all stale routes are deleted
-                 * This vrf will be enabled down the line
-                 */
-                vrf_disable(vrf);
-
-
-                RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
-                vrf->vrf_id = new_vrf_id;
-                RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
-
-        } else {
-                /*
-                 * vrf_get is implied creation if it does not exist
-                 */
-                vrf = vrf_get(new_vrf_id, name); // It would create vrf
-        }
-        return vrf;
+	struct vrf *vrf = NULL;
+
+	/*Treat VRF add for existing vrf as update
+	 * Update VRF ID and also update in VRF ID table
+	 */
+	if (name)
+		vrf = vrf_lookup_by_name(name);
+	if (vrf && new_vrf_id != VRF_UNKNOWN && vrf->vrf_id != VRF_UNKNOWN
+	    && vrf->vrf_id != new_vrf_id) {
+		if (debug_vrf) {
+			zlog_debug(
+				"Vrf Update event: %s old id: %u table:%u new id: %u",
+				name, vrf->vrf_id,
+				((struct zebra_vrf *)vrf->info)->table_id,
+				new_vrf_id);
+		}
+
+		/*Disable the vrf to simulate implicit delete
+		 * so that all stale routes are deleted
+		 * This vrf will be enabled down the line
+		 */
+		vrf_disable(vrf);
+
+
+		RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
+		vrf->vrf_id = new_vrf_id;
+		RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
+
+	} else {
+		/*
+		 * vrf_get is implied creation if it does not exist
+		 */
+		vrf = vrf_get(new_vrf_id, name); // It would create vrf
+	}
+	return vrf;
 }
 
 /* Delete a VRF. This is called when the underlying VRF goes away, a

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
Copy link
Contributor Author

See previous discussion above, you didn't move the logic out of the netlink code.

@sworleys : I have done the changes.

@sworleys
Copy link
Member

Thanks for the changes, I think this still needs to be addressed:

Also your commit summary makes no sense with what you are doing here. Please change it to describe what the code change is exactly.

I changed the title of this PR to match what I thought would be a good one.

@sworleys
Copy link
Member

sworleys commented Jan 28, 2021

Thanks for your contribution to FRR!

Click for style suggestions
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.

you also have a lot of style issues, it seems you are using spaces instead of tabs. please address this.

you can use git clang-format to automagically do it

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 28, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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 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-16746/artifact/U1604I386/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1604I386/config.log/config.log.gz

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-16746/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI012BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14552: 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-16746/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-16746/artifact/CI021BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI021BUILD/config.log/config.log.gz

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-16746/artifact/CI014BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI014BUILD/config.log/config.log.gz

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-16746/artifact/CI005BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [lib/vrf.lo] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/bgp_addpath.o
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/rfapi/rfapi.o
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-16746/artifact/CI005BUILD/config.status/config.status
CentOS 7 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI005BUILD/config.log/config.log.gz

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-16746/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM7BUILD/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-16746/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-16746/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make: *** [Makefile:5069: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U2004AMD64BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI008BLD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7946: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
Makefile:4510: recipe for target 'all' failed

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI008BLD/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-16746/artifact/F29BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make: *** [Makefile:5068: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/F29BUILD/config.log/config.log.gz

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-16746/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.16746/frr-source'
lib/vrf.c:242:64: error: incomplete definition of type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: expanded from macro 'zlog_debug'
#define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
lib/vrf.c:242:42: note: forward declaration of 'struct zebra_vrf'
1 error generated.
gmake[1]: *** [Makefile:8509: lib/vrf.lo] 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-16746/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI011BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/DEB10BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/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-16746/artifact/CI009BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:165: WARNING: duplicate clicmd description of redistribute ospf, 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-16746/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI009BUILD/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM8BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
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-16746/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U16ARM8BUILD/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-16746/artifact/U1804AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1804AMD64/config.log/config.log.gz

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-16746/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.16746/frr-source'
gmake: *** [Makefile:5068: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/FBSD12AMD64/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI101BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/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-16746/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CENTOS8BUILD/config.log/config.log.gz

Warnings Generated during build:

Checkout code: Successful with additional warnings
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-16746/artifact/U1604I386/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1604I386/config.log/config.log.gz

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-16746/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI012BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14552: 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-16746/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-16746/artifact/CI021BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI021BUILD/config.log/config.log.gz

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-16746/artifact/CI014BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI014BUILD/config.log/config.log.gz

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-16746/artifact/CI005BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [lib/vrf.lo] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/bgp_addpath.o
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/rfapi/rfapi.o
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-16746/artifact/CI005BUILD/config.status/config.status
CentOS 7 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI005BUILD/config.log/config.log.gz

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-16746/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM7BUILD/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-16746/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-16746/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make: *** [Makefile:5069: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U2004AMD64BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI008BLD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7946: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
Makefile:4510: recipe for target 'all' failed

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI008BLD/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-16746/artifact/F29BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make: *** [Makefile:5068: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/F29BUILD/config.log/config.log.gz

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-16746/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.16746/frr-source'
lib/vrf.c:242:64: error: incomplete definition of type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: expanded from macro 'zlog_debug'
#define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
lib/vrf.c:242:42: note: forward declaration of 'struct zebra_vrf'
1 error generated.
gmake[1]: *** [Makefile:8509: lib/vrf.lo] 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-16746/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI011BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/DEB10BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/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-16746/artifact/CI009BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.16746/frr-source/doc/user/eigrpd.rst:165: WARNING: duplicate clicmd description of redistribute ospf, 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-16746/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI009BUILD/config.log/config.log.gz

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U18ARM8BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
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-16746/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U16ARM8BUILD/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-16746/artifact/U1804AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/U1804AMD64/config.log/config.log.gz

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-16746/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.16746/frr-source'
gmake: *** [Makefile:5068: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/FBSD12AMD64/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CI101BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16746/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-16746/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-16746/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:242:64: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16746/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16746/artifact/CENTOS8BUILD/config.log/config.log.gz

<stdin>:11: trailing whitespace.
 *   name   - The name of the vrf.  
<stdin>:15: trailing whitespace.
 * the existing vrf and update it with new vrf-id. 
warning: 2 lines add whitespace errors.
Report for vrf.c | 116 issues
===============================================
< ERROR: trailing whitespace
< #219: FILE: /tmp/f1-32604/vrf.c:219:
< WARNING: line over 80 characters
< #221: FILE: /tmp/f1-32604/vrf.c:221:
< WARNING: line over 80 characters
< #222: FILE: /tmp/f1-32604/vrf.c:222:
< ERROR: trailing whitespace
< #223: FILE: /tmp/f1-32604/vrf.c:223:
< WARNING: line over 80 characters
< #224: FILE: /tmp/f1-32604/vrf.c:224:
< ERROR: code indent should use tabs where possible
< #228: FILE: /tmp/f1-32604/vrf.c:228:
< WARNING: please, no spaces at the start of a line
< #228: FILE: /tmp/f1-32604/vrf.c:228:
< ERROR: code indent should use tabs where possible
< #230: FILE: /tmp/f1-32604/vrf.c:230:
< ERROR: code indent should use tabs where possible
< #231: FILE: /tmp/f1-32604/vrf.c:231:
< ERROR: code indent should use tabs where possible
< #232: FILE: /tmp/f1-32604/vrf.c:232:
< ERROR: code indent should use tabs where possible
< #233: FILE: /tmp/f1-32604/vrf.c:233:
< WARNING: please, no spaces at the start of a line
< #233: FILE: /tmp/f1-32604/vrf.c:233:
< ERROR: code indent should use tabs where possible
< #234: FILE: /tmp/f1-32604/vrf.c:234:
< WARNING: please, no spaces at the start of a line
< #234: FILE: /tmp/f1-32604/vrf.c:234:
< ERROR: code indent should use tabs where possible
< #235: FILE: /tmp/f1-32604/vrf.c:235:
< WARNING: please, no spaces at the start of a line
< #235: FILE: /tmp/f1-32604/vrf.c:235:
< ERROR: code indent should use tabs where possible
< #236: FILE: /tmp/f1-32604/vrf.c:236:
< WARNING: please, no spaces at the start of a line
< #236: FILE: /tmp/f1-32604/vrf.c:236:
< ERROR: code indent should use tabs where possible
< #237: FILE: /tmp/f1-32604/vrf.c:237:
< WARNING: please, no spaces at the start of a line
< #237: FILE: /tmp/f1-32604/vrf.c:237:
< ERROR: code indent should use tabs where possible
< #238: FILE: /tmp/f1-32604/vrf.c:238:
< WARNING: please, no spaces at the start of a line
< #238: FILE: /tmp/f1-32604/vrf.c:238:
< ERROR: code indent should use tabs where possible
< #239: FILE: /tmp/f1-32604/vrf.c:239:
< WARNING: please, no spaces at the start of a line
< #239: FILE: /tmp/f1-32604/vrf.c:239:
< ERROR: code indent should use tabs where possible
< #240: FILE: /tmp/f1-32604/vrf.c:240:
< WARNING: please, no spaces at the start of a line
< #240: FILE: /tmp/f1-32604/vrf.c:240:
< ERROR: code indent should use tabs where possible
< #241: FILE: /tmp/f1-32604/vrf.c:241:
< WARNING: please, no spaces at the start of a line
< #241: FILE: /tmp/f1-32604/vrf.c:241:
< ERROR: code indent should use tabs where possible
< #242: FILE: /tmp/f1-32604/vrf.c:242:
< WARNING: please, no spaces at the start of a line
< #242: FILE: /tmp/f1-32604/vrf.c:242:
< ERROR: code indent should use tabs where possible
< #243: FILE: /tmp/f1-32604/vrf.c:243:
< WARNING: please, no spaces at the start of a line
< #243: FILE: /tmp/f1-32604/vrf.c:243:
< ERROR: code indent should use tabs where possible
< #244: FILE: /tmp/f1-32604/vrf.c:244:
< WARNING: please, no spaces at the start of a line
< #244: FILE: /tmp/f1-32604/vrf.c:244:
< ERROR: code indent should use tabs where possible
< #246: FILE: /tmp/f1-32604/vrf.c:246:
< ERROR: code indent should use tabs where possible
< #247: FILE: /tmp/f1-32604/vrf.c:247:
< ERROR: code indent should use tabs where possible
< #248: FILE: /tmp/f1-32604/vrf.c:248:
< ERROR: code indent should use tabs where possible
< #249: FILE: /tmp/f1-32604/vrf.c:249:
< ERROR: code indent should use tabs where possible
< #250: FILE: /tmp/f1-32604/vrf.c:250:
< WARNING: please, no spaces at the start of a line
< #250: FILE: /tmp/f1-32604/vrf.c:250:
< ERROR: code indent should use tabs where possible
< #253: FILE: /tmp/f1-32604/vrf.c:253:
< WARNING: please, no spaces at the start of a line
< #253: FILE: /tmp/f1-32604/vrf.c:253:
< ERROR: code indent should use tabs where possible
< #254: FILE: /tmp/f1-32604/vrf.c:254:
< WARNING: please, no spaces at the start of a line
< #254: FILE: /tmp/f1-32604/vrf.c:254:
< ERROR: code indent should use tabs where possible
< #255: FILE: /tmp/f1-32604/vrf.c:255:
< WARNING: please, no spaces at the start of a line
< #255: FILE: /tmp/f1-32604/vrf.c:255:
< ERROR: code indent should use tabs where possible
< #257: FILE: /tmp/f1-32604/vrf.c:257:
< WARNING: please, no spaces at the start of a line
< #257: FILE: /tmp/f1-32604/vrf.c:257:
< ERROR: code indent should use tabs where possible
< #258: FILE: /tmp/f1-32604/vrf.c:258:
< ERROR: code indent should use tabs where possible
< #259: FILE: /tmp/f1-32604/vrf.c:259:
< ERROR: code indent should use tabs where possible
< #260: FILE: /tmp/f1-32604/vrf.c:260:
< ERROR: code indent should use tabs where possible
< #261: FILE: /tmp/f1-32604/vrf.c:261:
< WARNING: please, no spaces at the start of a line
< #261: FILE: /tmp/f1-32604/vrf.c:261:
< WARNING: C99 // comments do not match recommendation
< #261: FILE: /tmp/f1-32604/vrf.c:261:
< ERROR: code indent should use tabs where possible
< #262: FILE: /tmp/f1-32604/vrf.c:262:
< WARNING: please, no spaces at the start of a line
< #262: FILE: /tmp/f1-32604/vrf.c:262:
< ERROR: code indent should use tabs where possible
< #263: FILE: /tmp/f1-32604/vrf.c:263:
< WARNING: please, no spaces at the start of a line
< #263: FILE: /tmp/f1-32604/vrf.c:263:
Report for vrf.h | 4 issues
===============================================
< WARNING: function definition argument 'vrf_id_t' should also have an identifier name
< #117: FILE: /tmp/f1-32604/vrf.h:117:
< WARNING: function definition argument 'const char *' should also have an identifier name
< #117: FILE: /tmp/f1-32604/vrf.h:117:

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jan 28, 2021

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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-16747/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16747/artifact/CI021BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI021BUILD/config.log/config.log.gz

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-16747/artifact/U1604I386/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1604I386/config.log/config.log.gz

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI012BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14552: 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-16747/artifact/CI012BUILD/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-16747/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM7BUILD/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-16747/artifact/CI014BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI014BUILD/config.log/config.log.gz

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-16747/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-16747/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U2004AMD64BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI008BLD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7946: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/CI008BLD/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-16747/artifact/F29BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/F29BUILD/config.log/config.log.gz

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-16747/artifact/CI009BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:165: WARNING: duplicate clicmd description of redistribute ospf, 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-16747/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI009BUILD/config.log/config.log.gz

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-16747/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.16747/frr-source'
lib/vrf.c:241:36: error: incomplete definition of type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: expanded from macro 'zlog_debug'
#define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
lib/vrf.c:241:14: note: forward declaration of 'struct zebra_vrf'
1 error generated.
gmake[1]: *** [Makefile:8509: lib/vrf.lo] 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-16747/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI011BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/DEB10BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/DEB10BUILD/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-16747/artifact/CI005BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [lib/vrf.lo] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/bgp_addpath.o
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/rfapi/rfapi.o
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-16747/artifact/CI005BUILD/config.status/config.status
CentOS 7 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI005BUILD/config.log/config.log.gz

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-16747/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U16ARM8BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM8BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1804AMD64/config.log/config.log.gz

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-16747/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.16747/frr-source'
gmake: *** [Makefile:5068: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/FBSD12AMD64/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI101BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/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-16747/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CENTOS8BUILD/config.log/config.log.gz

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-16747/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804PPC64LEBUILD/config.status/config.status
Ubuntu 18.04 ppc64le build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1804PPC64LEBUILD/config.log/config.log.gz

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-16747/artifact/CI021BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI021BUILD/config.log/config.log.gz

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-16747/artifact/U1604I386/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1604I386/config.status/config.status
Ubuntu 16.04 i386 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1604I386/config.log/config.log.gz

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI012BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14552: 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-16747/artifact/CI012BUILD/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-16747/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM7BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM7BUILD/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-16747/artifact/CI014BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI014BUILD/config.log/config.log.gz

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-16747/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-16747/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U2004AMD64BUILD/config.log/config.log.gz

Debian 8 amd64 build: Failed (click for details) Debian 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI008BLD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7946: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/CI008BLD/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-16747/artifact/F29BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/F29BUILD/config.status/config.status
Fedora 29 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/F29BUILD/config.log/config.log.gz

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-16747/artifact/CI009BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.16747/frr-source/doc/user/eigrpd.rst:165: WARNING: duplicate clicmd description of redistribute ospf, 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-16747/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI009BUILD/config.log/config.log.gz

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-16747/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.16747/frr-source'
lib/vrf.c:241:36: error: incomplete definition of type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: expanded from macro 'zlog_debug'
#define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
lib/vrf.c:241:14: note: forward declaration of 'struct zebra_vrf'
1 error generated.
gmake[1]: *** [Makefile:8509: lib/vrf.lo] 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-16747/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI011BUILD/config.log/config.log.gz

Debian 10 amd64 build: Failed (click for details) Debian 10 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/DEB10BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8511: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5069: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/DEB10BUILD/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-16747/artifact/CI005BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [lib/vrf.lo] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/bgp_addpath.o
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  CC       bgpd/rfapi/rfapi.o
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-16747/artifact/CI005BUILD/config.status/config.status
CentOS 7 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI005BUILD/config.log/config.log.gz

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-16747/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U16ARM8BUILD/config.log/config.log.gz
Ubuntu 16.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U16ARM8BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details) Ubuntu 18.04 arm8 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U18ARM8BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/artifact/U1804AMD64/config.status/config.status
Ubuntu 18.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/U1804AMD64/config.log/config.log.gz

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-16747/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

In file included from lib/log.h:34:0,
lib/vrf.c: In function 'vrf_update':
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type 'struct zebra_vrf'
./lib/zlog.h:64:42: note: in definition of macro 'zlog_debug'
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
gmake[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.16747/frr-source'
gmake: *** [Makefile:5068: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/FBSD12AMD64/config.log/config.log.gz

Ubuntu 16.04 arm7 build: Failed (click for details) Ubuntu 16.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CI101BUILD/config.log/config.log.gz

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

In file included from lib/log.h:34:0,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
Makefile:7958: recipe for target 'lib/vrf.lo' failed
make[1]: *** [lib/vrf.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.16747/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-16747/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-16747/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

In file included from lib/log.h:34,
lib/vrf.c: In function vrf_update:
lib/vrf.c:241:36: error: dereferencing pointer to incomplete type struct zebra_vrf
./lib/zlog.h:64:42: note: in definition of macro zlog_debug
 #define zlog_debug(...)  zlog(LOG_DEBUG, __VA_ARGS__)
make[1]: *** [Makefile:8510: lib/vrf.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.16747/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:5068: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-16747/artifact/CENTOS8BUILD/config.log/config.log.gz

Report for vrf.c | 2 issues
===============================================
< WARNING: C99 // comments do not match recommendation
< #260: FILE: /tmp/f1-4714/vrf.c:260:
Report for vrf.h | 4 issues
===============================================
< WARNING: function definition argument 'vrf_id_t' should also have an identifier name
< #117: FILE: /tmp/f1-4714/vrf.h:117:
< WARNING: function definition argument 'const char *' should also have an identifier name
< #117: FILE: /tmp/f1-4714/vrf.h:117:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 28, 2021

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result 0
Date 0
Start 0
Finish vncregress-2020-11-03-23:25:35.txt
Run-Time autoscript-2020-11-03-23:26:34.log.bz2
Total 485 477 421
Pass SUCCESS git merge/7303 6629ef9
Fail 11/01/2020
Valgrind-Errors 23:25:37
Valgrind-Loss 23:52:06
Details 26:29
Log 1815
Memory 1815
FAILURE git merge/7508 353d9c8 frr.github Build 0
01/27/2021 0
23:25:33 0
23:26:00 vncregress-2020-11-01-23:25:37.txt
00:27 autoscript-2020-11-01-23:26:38.log.bz2
475 498 427
SUCCESS git merge/7137 f67b5ee
09/20/2020
23:25:34
23:51:27
vncregress-2021-01-27-23:25:33.txt 25:53
make-2021-01-27-23:25:33.out.bz2 1815
1815
SUCCESS git merge/7296 1539c64 0
11/03/2020 0
23:25:35 0
23:51:56 vncregress-2020-09-20-23:25:34.txt
26:21 autoscript-2020-09-20-23:26:30.log.bz2
1815 445 455 422
1815

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!

Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/8913a4df19a2917eedd2fbeace779172/raw/fdeed8f35d2d862029afbddf1c1aa95f36b6de34/cr_7508_1611808188.diff | git apply

diff --git a/lib/vrf.c b/lib/vrf.c
index 5cd6b705a..2bb0d7ba7 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -237,8 +237,7 @@ struct vrf *vrf_update(vrf_id_t new_vrf_id, const char *name)
 		if (debug_vrf) {
 			zlog_debug(
 				"Vrf Update event: %s old id: %u, new id: %u",
-				name, vrf->vrf_id,
-				new_vrf_id);
+				name, vrf->vrf_id, new_vrf_id);
 		}
 
 		/*Disable the vrf to simulate implicit delete

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.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 28, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7761 4907bcd
Date 12/22/2020
Start 23:30:37
Finish 00:05:27
Run-Time 34:50
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-12-22-23:30:37.txt
Log autoscript-2020-12-22-23:31:40.log.bz2
Memory 501 489 425
SUCCESS git merge/7508 8771858 SUCCESS git merge/7296 35a45de
01/27/2021 11/16/2020
23:30:34 23:30:32
00:09:29 00:05:29
38:55 34:57
1815 1815
1815 1815
0 0
0 0
0 0
vncregress-2021-01-27-23:30:34.txt vncregress-2020-11-16-23:30:32.txt
autoscript-2021-01-27-23:31:39.log.bz2 autoscript-2020-11-16-23:31:35.log.bz2
502 486 427 477 483 417
SUCCESS git merge/7402 35aeb29 SUCCESS git merge/7454 d15713b
01/26/2021 11/04/2020
23:30:34 23:30:35
00:09:14 23:56:51
38:40 26:16
1815 1815
1815 1815
0 0
0 0
0 0
vncregress-2021-01-26-23:30:34.txt vncregress-2020-11-04-23:30:35.txt
autoscript-2021-01-26-23:31:35.log.bz2 autoscript-2020-11-04-23:31:35.log.bz2
490 500 427 497 433 420

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jan 28, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7508 ac2b15b
Date 01/28/2021
Start 00:10:33
Finish 00:49:48
Run-Time 39:15
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-01-28-00:10:33.txt
Log autoscript-2021-01-28-00:11:35.log.bz2
Memory 502 505 428

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-16749/

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 vrf.c | 2 issues
===============================================
< WARNING: C99 // comments do not match recommendation
< #259: FILE: /tmp/f1-20866/vrf.c:259:
Report for vrf.h | 4 issues
===============================================
< WARNING: function definition argument 'vrf_id_t' should also have an identifier name
< #117: FILE: /tmp/f1-20866/vrf.h:117:
< WARNING: function definition argument 'const char *' should also have an identifier name
< #117: FILE: /tmp/f1-20866/vrf.h:117:

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-16749/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-20210128-00-g877185841-0 (missing) -> 7.6-dev-20210128-00-g877185841-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-g877185841-0 (missing) -> 7.6-dev-20210128-00-g877185841-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-g877185841-0 (missing) -> 7.6-dev-20210128-00-g877185841-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-g877185841-0 (missing) -> 7.6-dev-20210128-00-g877185841-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-g877185841-0 (missing) -> 7.6-dev-20210128-00-g877185841-0~deb10u1

@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-16750/

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 vrf.c | 2 issues
===============================================
< WARNING: C99 // comments do not match recommendation
< #258: FILE: /tmp/f1-25482/vrf.c:258:
Report for vrf.h | 4 issues
===============================================
< WARNING: function definition argument 'vrf_id_t' should also have an identifier name
< #117: FILE: /tmp/f1-25482/vrf.h:117:
< WARNING: function definition argument 'const char *' should also have an identifier name
< #117: FILE: /tmp/f1-25482/vrf.h:117:

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-16750/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-20210128-00-gac2b15bdb-0 (missing) -> 7.6-dev-20210128-00-gac2b15bdb-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-gac2b15bdb-0 (missing) -> 7.6-dev-20210128-00-gac2b15bdb-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-gac2b15bdb-0 (missing) -> 7.6-dev-20210128-00-gac2b15bdb-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-gac2b15bdb-0 (missing) -> 7.6-dev-20210128-00-gac2b15bdb-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20210128-00-gac2b15bdb-0 (missing) -> 7.6-dev-20210128-00-gac2b15bdb-0~deb10u1

@sworleys
Copy link
Member

you still have style issues:

diff --git a/lib/vrf.c b/lib/vrf.c
index 5cd6b705a..2bb0d7ba7 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -237,8 +237,7 @@ struct vrf *vrf_update(vrf_id_t new_vrf_id, const char *name)
if (debug_vrf) {
zlog_debug(
"Vrf Update event: %s old id: %u, new id: %u",
- name, vrf->vrf_id,
- new_vrf_id);
+ name, vrf->vrf_id, new_vrf_id);
}

Report for vrf.c | 2 issues
===============================================
< WARNING: C99 // comments do not match recommendation
< #258: FILE: /tmp/f1-25482/vrf.c:258:
Report for vrf.h | 4 issues
===============================================
< WARNING: function definition argument 'vrf_id_t' should also have an identifier name
< #117: FILE: /tmp/f1-25482/vrf.h:117:
< WARNING: function definition argument 'const char *' should also have an identifier name
< #117: FILE: /tmp/f1-25482/vrf.h:117:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Feb 1, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7508 c8f0ed2
Date 02/01/2021
Start 00:30:33
Finish 01:09:57
Run-Time 39:24
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-02-01-00:30:33.txt
Log autoscript-2021-02-01-00:31:36.log.bz2
Memory 506 504 425

For details, please contact louberger

@sudhanshukumar22
Copy link
Contributor Author

@sworleys : I have fixed the style issues. Please approve.

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2021-02-01 06:05:47,251 ERROR: ce3: bgpd left a dead pidfile (pid=26548)
2021-02-01 06:07:52,330 ERROR: ce3: zebra left a dead pidfile (pid=28611)
2021-02-01 06:09:30,927 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2021-02-01 06:09:31,063 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2021-02-01 06:09:31,200 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2021-02-01 06:09:31,333 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2021-02-01 06:09:32,254 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 1:a:2 



2021-02-01 06:11:34,127 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



r1: Daemon bgpd not running

From frr r1 bgpd log file:
2021/02/01 06:12:59 BGP: bgpd 7.7-dev-20210201-00-gc8f0ed2c7 starting: vty@2605, bgp@10.0.0.1:179
2021/02/01 06:13:00 BGP: vty[??]@(config)# log file bgpd.log
2021/02/01 06:13:01 BGP: vty[??]@> enable
2021/02/01 06:13:01 BGP: vty[??]@# configure terminal
2021/02/01 06:13:01 BGP: vty[??]@(config)# XFRR_start_configuration
2021/02/01 06:13:01 BGP: vty[??]@(config)# router bgp 1000 

2021/02/01 06:13:01 BGP: [EC 100663299] bind: Cannot assign requested address
2021/02/01 06:13:01 BGP: [EC 100663299] bgp_socket: no usable addresses please check other programs usage of specified port 179
2021/02/01 06:13:01 BGP: [EC 100663299] bgp_socket: Program cannot continue

2021-02-01 06:13:02,894 ERROR: assert failed at "test_bgp_listen_on_multiple_addresses/test_peering": r1: Daemon bgpd not running

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

Successful on other platforms/tests
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 1 on Ubuntu 16.04 i386
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Debian 10 deb pkg check
  • Topo tests part 3 on Ubuntu 16.04 amd64
  • Topo tests part 4 on Ubuntu 16.04 i386
  • Debian 9 deb pkg check
  • Topo tests part 0 on Ubuntu 18.04 arm8
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 0
  • Topo tests part 3 on Ubuntu 16.04 i386
  • Topo tests part 4 on Ubuntu 18.04 arm8
  • Static analyzer (clang)
  • Ubuntu 20.04 deb pkg check
  • Topo tests part 2 on Ubuntu 16.04 i386
  • Topo tests part 1 on Ubuntu 18.04 amd64
  • Ubuntu 18.04 deb pkg check
  • Topo tests part 3 on Ubuntu 18.04 arm8
  • Addresssanitizer topotests part 1
  • CentOS 7 rpm pkg check
  • Topo tests part 4 on Ubuntu 16.04 amd64
  • 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 3 on Ubuntu 18.04 amd64
  • Topo tests part 1 on Ubuntu 16.04 amd64
  • Topo tests part 2 on Ubuntu 18.04 arm8
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • IPv6 protocols on Ubuntu 18.04
  • Topo tests part 4 on Ubuntu 18.04 amd64

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2021-02-01 06:05:47,251 ERROR: ce3: bgpd left a dead pidfile (pid=26548)
2021-02-01 06:07:52,330 ERROR: ce3: zebra left a dead pidfile (pid=28611)
2021-02-01 06:09:30,927 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2021-02-01 06:09:31,063 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2021-02-01 06:09:31,200 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2021-02-01 06:09:31,333 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2021-02-01 06:09:32,254 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 1:a:2 



2021-02-01 06:11:34,127 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 2416, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 289, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 575, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



r1: Daemon bgpd not running

From frr r1 bgpd log file:
2021/02/01 06:12:59 BGP: bgpd 7.7-dev-20210201-00-gc8f0ed2c7 starting: vty@2605, bgp@10.0.0.1:179
2021/02/01 06:13:00 BGP: vty[??]@(config)# log file bgpd.log
2021/02/01 06:13:01 BGP: vty[??]@> enable
2021/02/01 06:13:01 BGP: vty[??]@# configure terminal
2021/02/01 06:13:01 BGP: vty[??]@(config)# XFRR_start_configuration
2021/02/01 06:13:01 BGP: vty[??]@(config)# router bgp 1000 

2021/02/01 06:13:01 BGP: [EC 100663299] bind: Cannot assign requested address
2021/02/01 06:13:01 BGP: [EC 100663299] bgp_socket: no usable addresses please check other programs usage of specified port 179
2021/02/01 06:13:01 BGP: [EC 100663299] bgp_socket: Program cannot continue

2021-02-01 06:13:02,894 ERROR: assert failed at "test_bgp_listen_on_multiple_addresses/test_peering": r1: Daemon bgpd not running

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

Report for vrf.c | 2 issues
===============================================
< WARNING: C99 // comments do not match recommendation
< #258: FILE: /tmp/f1-11378/vrf.c:258:

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-16850/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.7-dev-20210201-00-gc8f0ed2c7-0 (missing) -> 7.7-dev-20210201-00-gc8f0ed2c7-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-gc8f0ed2c7-0 (missing) -> 7.7-dev-20210201-00-gc8f0ed2c7-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-gc8f0ed2c7-0 (missing) -> 7.7-dev-20210201-00-gc8f0ed2c7-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-gc8f0ed2c7-0 (missing) -> 7.7-dev-20210201-00-gc8f0ed2c7-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-gc8f0ed2c7-0 (missing) -> 7.7-dev-20210201-00-gc8f0ed2c7-0~deb10u1

Description: When we get a new vrf add and vrf with same name, but different vrf-id already
exists in the database, we should treat vrf add as update.
This happens mostly when there are lots of vrf and other configuration being replayed.
There may be a stale vrf delete followed by new vrf add. This
can cause timing race condition where vrf delete could be missed and
further same vrf add would get rejected instead of treating last arrived
vrf add as update.

Treat vrf add for existing vrf as update.
Implicitly disable this VRF to cleanup routes and other functions as part of vrf disable.
Update vrf_id for the vrf and update vrf_id tree.
Re-enable VRF so that all routes are freshly installed.

Above 3 steps are mandatory since it can happen that with config reload
stale routes which are installed in vrf-1 table might contain routes from
older vrf-0 table which might have got deleted due to missing vrf-0 in new configuration.

Signed-off-by: sudhanshukumar22 <sudhanshu.kumar@broadcom.com>
@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-16866/

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-16866/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.7-dev-20210201-00-g75d26fb31-0 (missing) -> 7.7-dev-20210201-00-g75d26fb31-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-g75d26fb31-0 (missing) -> 7.7-dev-20210201-00-g75d26fb31-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-g75d26fb31-0 (missing) -> 7.7-dev-20210201-00-g75d26fb31-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-g75d26fb31-0 (missing) -> 7.7-dev-20210201-00-g75d26fb31-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.7-dev-20210201-00-g75d26fb31-0 (missing) -> 7.7-dev-20210201-00-g75d26fb31-0~deb10u1

@LabN-CI
Copy link
Collaborator

LabN-CI commented Feb 1, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7508 75d26fb
Date 02/01/2021
Start 14:24:27
Finish 15:03:39
Run-Time 39:12
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-02-01-14:24:27.txt
Log autoscript-2021-02-01-14:25:30.log.bz2
Memory 486 496 427

For details, please contact louberger

@sudhanshukumar22
Copy link
Contributor Author

sudhanshukumar22 commented Feb 2, 2021

See previous discussion above, you didn't move the logic out of the netlink code.

@sworleys : I have done the changes. Please review.
@sworleys : I have done the changes. Please review.

@sworleys
Copy link
Member

i tested locally, doesn't seem to break any vrf update workflows in staticd, pbrd, sharpd that I could find.

@sworleys sworleys merged commit 3d26211 into FRRouting:master Feb 10, 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