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

Routemap nb #7419

Merged
merged 6 commits into from
Mar 30, 2021
Merged

Routemap nb #7419

merged 6 commits into from
Mar 30, 2021

Conversation

patrasar
Copy link
Contributor

@patrasar patrasar commented Oct 30, 2020

This PR introduces the following changes:

Modifications to the existing library route-map yang definitions.
Introduction of yang definitions for bgpd, ospfd, ospf6d, and zebra route-map match and set clauses.
North-bound callbacks implementation for all the route-map yang elements.

Signed-off-by: NaveenThanikachalam nthanikachal@vmware.com
Signed-off-by: Sarita Patra saritap@vmware.com

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 30, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result 10/30/2020
Date 03:50:34
Start 03:59:14
Finish 08:40
Run-Time 61
Total 36
Pass 25
Fail 0
Valgrind-Errors 3
Valgrind-Loss 748
Details vncregress-2020-10-30-03:50:34.txt
Log autoscript-2020-10-30-03:51:35.log.bz2
Memory
FAILURE git pull/7419 b66a5bb Autoscript (merge failed)

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 30, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 18.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm7 build:
(see full PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U18ARM7BUILD/ErrorLog/log_pytests.txt)

=================================== FAILURES ===================================
__________________________ TestFlag.test_exit_cleanly __________________________
self = <test_peer_attr.TestFlag object at 0xf6a2ca30>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0xf6a2ca30>
    def _exit_cleanly(self):
        if self.exitcode != 0:
>           raise MultiTestFailure("Program did not terminate with exit code 0")
E           frrtest.MultiTestFailure: Program did not terminate with exit code 0
helpers/python/frrtest.py:90: MultiTestFailure
__________________ TestFlag.test_peer_advertisement_interval ___________________
self = <test_peer_attr.TestFlag object at 0xf69b6bb0>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0xf6a2ca30>
line = b'peer\\advertisement-interval'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\advertisement-interval' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
____________________ TestFlag.test_peer_capability_dynamic _____________________
self = <test_peer_attr.TestFlag object at 0xf69f4890>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0xf6a2ca30>
line = b'peer\\capability dynamic'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\capability dynamic' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
________________ TestFlag.test_peer_capability_extended_nexthop ________________
self = <test_peer_attr.TestFlag object at 0xf6a12390>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
Debian 9 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 9 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI021BUILD/ErrorLog/log_pytests.txt
Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI021BUILD/config.status/config.status

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

DejaGNU Unittests (make check) failed for Ubuntu 20.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U2004AMD64BUILD/ErrorLog/log_pytests.txt

Ubuntu 18.04 ppc64le build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 ppc64le build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1804PPC64LEBUILD/ErrorLog/log_pytests.txt
Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1804PPC64LEBUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 i386 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1604I386/ErrorLog/log_pytests.txt
Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1604I386/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U16ARM8BUILD/ErrorLog/log_pytests.txt

Fedora 29 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Fedora 29 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/F29BUILD/ErrorLog/log_pytests.txt
Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/F29BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U18ARM8BUILD/ErrorLog/log_pytests.txt

CentOS 7 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for CentOS 7 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI005BUILD/ErrorLog/log_pytests.txt
CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI005BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm7 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI101BUILD/ErrorLog/log_pytests.txt

Debian 10 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 10 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/DEB10BUILD/ErrorLog/log_pytests.txt
Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/DEB10BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI008BLD/ErrorLog/log_pytests.txt
Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI008BLD/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 12 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/FBSD12AMD64/ErrorLog/log_pytests.txt
FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/FBSD12AMD64/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for NetBSD 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI012BUILD/ErrorLog/log_pytests.txt
NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI012BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

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

copying selected object files to avoid basename conflicts...
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef _FRR_OSPF6__ROUTEMAP_NB_H_
ospf6d/ospf6_routemap_nb.h:21:9: note: '_FRR_OSPF6_ROUTEMAP_NB_H_' is defined here; did you mean '_FRR_OSPF6__ROUTEMAP_NB_H_'?
#define _FRR_OSPF6_ROUTEMAP_NB_H_
1 error generated.
gmake[1]: *** [Makefile:8158: ospf6d/ospf6_routemap_nb.o] Error 1
In file included from ospf6d/ospf6_routemap_nb_config.c:24:

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

Ubuntu 16.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI014BUILD/ErrorLog/log_pytests.txt
Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI014BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 11 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI009BUILD/ErrorLog/log_pytests.txt
FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1804AMD64/ErrorLog/log_pytests.txt
Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15056/artifact/U1804AMD64/config.status/config.status

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 30, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result FAILURE git merge/7419 185f702 frr.github Build
Date 10/30/2020
Start 04:46:01
Finish 04:46:53
Run-Time 00:52
Total
Pass
Fail
Valgrind-Errors
Valgrind-Loss
Details vncregress-2020-10-30-04:46:01.txt
Log make-2020-10-30-04:46:01.out.bz2
Memory

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 30, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15057/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-15057/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15057/frr-source'
make[1]: Target 'all-am' not remade because of errors.
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-15057/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
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-15057/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 16.04 arm8 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI005BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory `/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [bgpd/bgp_routemap.o] Error 1
copying selected object files to avoid basename conflicts...

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI101BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI008BLD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7642: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Debian 10 amd64 build: Failed (click for details)

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

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15057/frr-source'

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

FreeBSD 12 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

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

OpenBSD 6 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '('
<<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
^
1 error generated.
gmake[1]: *** [Makefile:8184: bgpd/bgp_routemap.o] Error 1
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]

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

NetBSD 8 amd64 build: Failed (click for details)

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

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '(' before '<<' token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
/usr/home/ci/cibuild.15057/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15057/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, 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-15057/artifact/CI009BUILD/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-15057/artifact/CI014BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 18.04 amd64 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15057/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-15057/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15057/frr-source'
make[1]: Target 'all-am' not remade because of errors.
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-15057/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
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-15057/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 16.04 arm8 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI005BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory `/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [bgpd/bgp_routemap.o] Error 1
copying selected object files to avoid basename conflicts...

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI101BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15057/artifact/CI008BLD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7642: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Debian 10 amd64 build: Failed (click for details)

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

make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15057/frr-source'

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

FreeBSD 12 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

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

OpenBSD 6 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '('
<<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
^
1 error generated.
gmake[1]: *** [Makefile:8184: bgpd/bgp_routemap.o] Error 1
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]

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

NetBSD 8 amd64 build: Failed (click for details)

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

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '(' before '<<' token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15057/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
/usr/home/ci/cibuild.15057/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15057/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, 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-15057/artifact/CI009BUILD/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-15057/artifact/CI014BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 18.04 amd64 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15057/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

<stdin>:5393: trailing whitespace.
	return NB_OK; 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 50 issues
===============================================
< WARNING: line over 80 characters
< #4064: FILE: /tmp/f1-14653/bgp_routemap.c:4064:
< WARNING: line over 80 characters
< #4083: FILE: /tmp/f1-14653/bgp_routemap.c:4083:
< ERROR: spaces required around that '<' (ctx:OxW)
< #4089: FILE: /tmp/f1-14653/bgp_routemap.c:4089:
< WARNING: line over 80 characters
< #4152: FILE: /tmp/f1-14653/bgp_routemap.c:4152:
< WARNING: line over 80 characters
< #4180: FILE: /tmp/f1-14653/bgp_routemap.c:4180:
< WARNING: line over 80 characters
< #4228: FILE: /tmp/f1-14653/bgp_routemap.c:4228:
< WARNING: line over 80 characters
< #4246: FILE: /tmp/f1-14653/bgp_routemap.c:4246:
< WARNING: line over 80 characters
< #4470: FILE: /tmp/f1-14653/bgp_routemap.c:4470:
< WARNING: line over 80 characters
< #4514: FILE: /tmp/f1-14653/bgp_routemap.c:4514:
< WARNING: line over 80 characters
< #4529: FILE: /tmp/f1-14653/bgp_routemap.c:4529:
< WARNING: line over 80 characters
< #4551: FILE: /tmp/f1-14653/bgp_routemap.c:4551:
< WARNING: line over 80 characters
< #4566: FILE: /tmp/f1-14653/bgp_routemap.c:4566:
< WARNING: line over 80 characters
< #4588: FILE: /tmp/f1-14653/bgp_routemap.c:4588:
< WARNING: line over 80 characters
< #4616: FILE: /tmp/f1-14653/bgp_routemap.c:4616:
< WARNING: line over 80 characters
< #4703: FILE: /tmp/f1-14653/bgp_routemap.c:4703:
< WARNING: line over 80 characters
< #4720: FILE: /tmp/f1-14653/bgp_routemap.c:4720:
< WARNING: line over 80 characters
< #4807: FILE: /tmp/f1-14653/bgp_routemap.c:4807:
< WARNING: line over 80 characters
< #4822: FILE: /tmp/f1-14653/bgp_routemap.c:4822:
< WARNING: line over 80 characters
< #4860: FILE: /tmp/f1-14653/bgp_routemap.c:4860:
< WARNING: line over 80 characters
< #5526: FILE: /tmp/f1-14653/bgp_routemap.c:5526:
< WARNING: line over 80 characters
< #5561: FILE: /tmp/f1-14653/bgp_routemap.c:5561:
< WARNING: line over 80 characters
< #6080: FILE: /tmp/f1-14653/bgp_routemap.c:6080:
< WARNING: line over 80 characters
< #6089: FILE: /tmp/f1-14653/bgp_routemap.c:6089:
< WARNING: line over 80 characters
< #6120: FILE: /tmp/f1-14653/bgp_routemap.c:6120:
< WARNING: line over 80 characters
< #6124: FILE: /tmp/f1-14653/bgp_routemap.c:6124:
Report for bgp_routemap_nb.c | 125 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-14653/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-14653/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-14653/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-14653/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-14653/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-14653/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-14653/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-14653/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-14653/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-14653/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-14653/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-14653/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-14653/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-14653/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-14653/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-14653/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-14653/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-14653/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-14653/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-14653/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-14653/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-14653/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-14653/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-14653/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-14653/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-14653/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-14653/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-14653/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-14653/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-14653/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-14653/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-14653/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-14653/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-14653/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-14653/bgp_routemap_nb.c:112:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-14653/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-14653/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-14653/bgp_routemap_nb.c:119:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-14653/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-14653/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-14653/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-14653/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-14653/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-14653/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-14653/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-14653/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-14653/bgp_routemap_nb.c:140:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#141: FILE: /tmp/f1-14653/bgp_routemap_nb.c:141:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#145: FILE: /tmp/f1-14653/bgp_routemap_nb.c:145:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard",

WARNING: line over 80 characters
#147: FILE: /tmp/f1-14653/bgp_routemap_nb.c:147:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-14653/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-14653/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-14653/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-14653/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-14653/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-14653/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-14653/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-14653/bgp_routemap_nb.c:167:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish,

WARNING: line over 80 characters
#171: FILE: /tmp/f1-14653/bgp_routemap_nb.c:171:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended",

WARNING: line over 80 characters
#173: FILE: /tmp/f1-14653/bgp_routemap_nb.c:173:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify,

WARNING: line over 80 characters
#174: FILE: /tmp/f1-14653/bgp_routemap_nb.c:174:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#178: FILE: /tmp/f1-14653/bgp_routemap_nb.c:178:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match",

WARNING: line over 80 characters
#180: FILE: /tmp/f1-14653/bgp_routemap_nb.c:180:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify,

WARNING: line over 80 characters
#181: FILE: /tmp/f1-14653/bgp_routemap_nb.c:181:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy,

WARNING: line over 80 characters
#185: FILE: /tmp/f1-14653/bgp_routemap_nb.c:185:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#187: FILE: /tmp/f1-14653/bgp_routemap_nb.c:187:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#191: FILE: /tmp/f1-14653/bgp_routemap_nb.c:191:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#193: FILE: /tmp/f1-14653/bgp_routemap_nb.c:193:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#194: FILE: /tmp/f1-14653/bgp_routemap_nb.c:194:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#198: FILE: /tmp/f1-14653/bgp_routemap_nb.c:198:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#200: FILE: /tmp/f1-14653/bgp_routemap_nb.c:200:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#201: FILE: /tmp/f1-14653/bgp_routemap_nb.c:201:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#205: FILE: /tmp/f1-14653/bgp_routemap_nb.c:205:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#207: FILE: /tmp/f1-14653/bgp_routemap_nb.c:207:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#208: FILE: /tmp/f1-14653/bgp_routemap_nb.c:208:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#212: FILE: /tmp/f1-14653/bgp_routemap_nb.c:212:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#214: FILE: /tmp/f1-14653/bgp_routemap_nb.c:214:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#215: FILE: /tmp/f1-14653/bgp_routemap_nb.c:215:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#219: FILE: /tmp/f1-14653/bgp_routemap_nb.c:219:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#221: FILE: /tmp/f1-14653/bgp_routemap_nb.c:221:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#222: FILE: /tmp/f1-14653/bgp_routemap_nb.c:222:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#226: FILE: /tmp/f1-14653/bgp_routemap_nb.c:226:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#228: FILE: /tmp/f1-14653/bgp_routemap_nb.c:228:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#229: FILE: /tmp/f1-14653/bgp_routemap_nb.c:229:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#233: FILE: /tmp/f1-14653/bgp_routemap_nb.c:233:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#235: FILE: /tmp/f1-14653/bgp_routemap_nb.c:235:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#236: FILE: /tmp/f1-14653/bgp_routemap_nb.c:236:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#240: FILE: /tmp/f1-14653/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

ERROR: spaces required around that '=' (ctx:WxV)
#240: FILE: /tmp/f1-14653/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",
 			       ^

WARNING: line over 80 characters
#242: FILE: /tmp/f1-14653/bgp_routemap_nb.c:242:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#243: FILE: /tmp/f1-14653/bgp_routemap_nb.c:243:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#247: FILE: /tmp/f1-14653/bgp_routemap_nb.c:247:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#249: FILE: /tmp/f1-14653/bgp_routemap_nb.c:249:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#250: FILE: /tmp/f1-14653/bgp_routemap_nb.c:250:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#254: FILE: /tmp/f1-14653/bgp_routemap_nb.c:254:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#256: FILE: /tmp/f1-14653/bgp_routemap_nb.c:256:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#257: FILE: /tmp/f1-14653/bgp_routemap_nb.c:257:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#261: FILE: /tmp/f1-14653/bgp_routemap_nb.c:261:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#263: FILE: /tmp/f1-14653/bgp_routemap_nb.c:263:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#264: FILE: /tmp/f1-14653/bgp_routemap_nb.c:264:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#268: FILE: /tmp/f1-14653/bgp_routemap_nb.c:268:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#270: FILE: /tmp/f1-14653/bgp_routemap_nb.c:270:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#271: FILE: /tmp/f1-14653/bgp_routemap_nb.c:271:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#275: FILE: /tmp/f1-14653/bgp_routemap_nb.c:275:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#277: FILE: /tmp/f1-14653/bgp_routemap_nb.c:277:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#278: FILE: /tmp/f1-14653/bgp_routemap_nb.c:278:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#282: FILE: /tmp/f1-14653/bgp_routemap_nb.c:282:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#284: FILE: /tmp/f1-14653/bgp_routemap_nb.c:284:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#285: FILE: /tmp/f1-14653/bgp_routemap_nb.c:285:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#289: FILE: /tmp/f1-14653/bgp_routemap_nb.c:289:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#291: FILE: /tmp/f1-14653/bgp_routemap_nb.c:291:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#292: FILE: /tmp/f1-14653/bgp_routemap_nb.c:292:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#296: FILE: /tmp/f1-14653/bgp_routemap_nb.c:296:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#298: FILE: /tmp/f1-14653/bgp_routemap_nb.c:298:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#299: FILE: /tmp/f1-14653/bgp_routemap_nb.c:299:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#303: FILE: /tmp/f1-14653/bgp_routemap_nb.c:303:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#305: FILE: /tmp/f1-14653/bgp_routemap_nb.c:305:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#306: FILE: /tmp/f1-14653/bgp_routemap_nb.c:306:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#310: FILE: /tmp/f1-14653/bgp_routemap_nb.c:310:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#312: FILE: /tmp/f1-14653/bgp_routemap_nb.c:312:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#313: FILE: /tmp/f1-14653/bgp_routemap_nb.c:313:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#317: FILE: /tmp/f1-14653/bgp_routemap_nb.c:317:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#319: FILE: /tmp/f1-14653/bgp_routemap_nb.c:319:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#320: FILE: /tmp/f1-14653/bgp_routemap_nb.c:320:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#324: FILE: /tmp/f1-14653/bgp_routemap_nb.c:324:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#326: FILE: /tmp/f1-14653/bgp_routemap_nb.c:326:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#327: FILE: /tmp/f1-14653/bgp_routemap_nb.c:327:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#331: FILE: /tmp/f1-14653/bgp_routemap_nb.c:331:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#333: FILE: /tmp/f1-14653/bgp_routemap_nb.c:333:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#334: FILE: /tmp/f1-14653/bgp_routemap_nb.c:334:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#338: FILE: /tmp/f1-14653/bgp_routemap_nb.c:338:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#340: FILE: /tmp/f1-14653/bgp_routemap_nb.c:340:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#341: FILE: /tmp/f1-14653/bgp_routemap_nb.c:341:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#345: FILE: /tmp/f1-14653/bgp_routemap_nb.c:345:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#347: FILE: /tmp/f1-14653/bgp_routemap_nb.c:347:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#348: FILE: /tmp/f1-14653/bgp_routemap_nb.c:348:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-14653/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-14653/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-14653/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-14653/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-14653/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-14653/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-14653/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-14653/bgp_routemap_nb.c:368:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#372: FILE: /tmp/f1-14653/bgp_routemap_nb.c:372:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#374: FILE: /tmp/f1-14653/bgp_routemap_nb.c:374:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#375: FILE: /tmp/f1-14653/bgp_routemap_nb.c:375:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#379: FILE: /tmp/f1-14653/bgp_routemap_nb.c:379:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#381: FILE: /tmp/f1-14653/bgp_routemap_nb.c:381:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#382: FILE: /tmp/f1-14653/bgp_routemap_nb.c:382:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#386: FILE: /tmp/f1-14653/bgp_routemap_nb.c:386:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num",

WARNING: line over 80 characters
#388: FILE: /tmp/f1-14653/bgp_routemap_nb.c:388:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify,

WARNING: line over 80 characters
#389: FILE: /tmp/f1-14653/bgp_routemap_nb.c:389:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy,

WARNING: line over 80 characters
#393: FILE: /tmp/f1-14653/bgp_routemap_nb.c:393:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended",

WARNING: line over 80 characters
#395: FILE: /tmp/f1-14653/bgp_routemap_nb.c:395:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify,

WARNING: line over 80 characters
#396: FILE: /tmp/f1-14653/bgp_routemap_nb.c:396:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#400: FILE: /tmp/f1-14653/bgp_routemap_nb.c:400:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#402: FILE: /tmp/f1-14653/bgp_routemap_nb.c:402:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#403: FILE: /tmp/f1-14653/bgp_routemap_nb.c:403:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,
Report for bgp_routemap_nb_config.c | 204 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:28:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:31:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#53: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:53:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "local-preference",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:66:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#82: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:82:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#136: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:136:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#190: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:190:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#243: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#297: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:297:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#300: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:300:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#335: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:335:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#351: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:351:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#405: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:405:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#408: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:408:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#443: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:443:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#459: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:459:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#485: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:485:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "peer", "local",

WARNING: line over 80 characters
#515: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:515:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: suspect code indent for conditional statements (16, 16)
#546: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:546:
+		} else if (IS_MATCH_MAC_LIST(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#560: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:560:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "ip route-source",

WARNING: suspect code indent for conditional statements (16, 16)
#562: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:562:
+		} else if (IS_MATCH_ROUTE_SRC_PL(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#599: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:599:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num

WARNING: line over 80 characters
#637: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:637:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(

WARNING: line over 80 characters
#653: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:653:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended

WARNING: line over 80 characters
#656: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:656:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(

WARNING: line over 80 characters
#691: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:691:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(

WARNING: line over 80 characters
#707: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:707:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#710: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:710:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#730: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:730:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn default-route",

WARNING: line over 80 characters
#743: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:743:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#759: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:759:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#813: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:813:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#838: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:838:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn route-type", type,

WARNING: line over 80 characters
#851: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:851:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#867: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:867:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#870: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:870:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#905: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:905:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#921: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:921:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard

WARNING: line over 80 characters
#924: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:924:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(

WARNING: line over 80 characters
#978: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:978:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num

WARNING: line over 80 characters
#981: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:981:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(

WARNING: line over 80 characters
#996: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:996:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(

WARNING: line over 80 characters
#1012: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1012:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match

WARNING: line over 80 characters
#1015: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1015:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(

ERROR: code indent should use tabs where possible
#1024: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: please, no spaces at the start of a line
#1024: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: line over 80 characters
#1030: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1030:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(

WARNING: line over 80 characters
#1046: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1046:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended

WARNING: line over 80 characters
#1049: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1049:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(

WARNING: line over 80 characters
#1104: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1104:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended

WARNING: line over 80 characters
#1107: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1107:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(

WARNING: line over 80 characters
#1122: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1122:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(

WARNING: line over 80 characters
#1138: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1138:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match

WARNING: line over 80 characters
#1141: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1141:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(

WARNING: line over 80 characters
#1156: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1156:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(

WARNING: line over 80 characters
#1172: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1172:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1229: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1229:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1232: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1232:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1247: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1247:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1264: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1264:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1267: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1267:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1282: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1282:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1298: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1298:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1323: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1323:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1352: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1352:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1377: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1377:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1407: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1458: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1458:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1483: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1483:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity rt", type);

WARNING: line over 80 characters
#1511: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1511:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1536: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1536:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity soo", type);

WARNING: line over 80 characters
#1564: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1564:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1615: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1615:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1667: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1667:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

ERROR: trailing whitespace
#1733: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1733:
+^Ireturn NB_OK; $

WARNING: line over 80 characters
#1738: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1738:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1771: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1771:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, NULL);

WARNING: line over 80 characters
#1800: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1800:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1851: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1851:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1875: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1875:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "local-preference", type);

WARNING: line over 80 characters
#1902: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1902:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1953: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:1953:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#2005: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2005:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

ERROR: code indent should use tabs where possible
#2042: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: please, no spaces at the start of a line
#2042: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: line over 80 characters
#2056: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2056:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#2107: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2107:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#2158: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2158:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2183: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2183:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", type);

WARNING: line over 80 characters
#2211: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2211:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2239: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2239:
+		snprintf(argstr, (strlen(value) + strlen("last-as") + 2), "last-as %s",

WARNING: line over 80 characters
#2242: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2242:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", argstr);

WARNING: line over 80 characters
#2272: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2272:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2297: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2297:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path exclude", type);

WARNING: line over 80 characters
#2325: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2325:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2350: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2350:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "community", "none");

WARNING: line over 80 characters
#2382: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2382:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2435: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2435:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2461: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2461:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community",

WARNING: line over 80 characters
#2494: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2494:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2519: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2519:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community", type);

WARNING: line over 80 characters
#2547: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2547:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2577: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2577:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2595: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2595:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2612: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2612:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

ERROR: code indent should use tabs where possible
#2626: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2626: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: line over 80 characters
#2630: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2630:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

ERROR: code indent should use tabs where possible
#2642: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2642: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: line over 80 characters
#2647: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2647:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num

WARNING: line over 80 characters
#2707: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2707:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended

WARNING: line over 80 characters
#2769: FILE: /tmp/f1-14653/bgp_routemap_nb_config.c:2769:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name
Report for bgp_routemap_nb.h | 160 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/bgp_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/bgp_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-14653/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-14653/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-14653/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-14653/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-14653/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-14653/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-14653/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-14653/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-14653/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-14653/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-14653/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-14653/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-14653/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-14653/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-14653/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-14653/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-14653/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-14653/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-14653/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-14653/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-14653/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-14653/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-14653/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-14653/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-14653/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-14653/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-14653/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-14653/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-14653/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-14653/bgp_routemap_nb.h:60:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-14653/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-14653/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-14653/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-14653/bgp_routemap_nb.h:64:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-14653/bgp_routemap_nb.h:65:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-14653/bgp_routemap_nb.h:66:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-14653/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-14653/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-14653/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-14653/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-14653/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-14653/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-14653/bgp_routemap_nb.h:73:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-14653/bgp_routemap_nb.h:74:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-14653/bgp_routemap_nb.h:75:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-14653/bgp_routemap_nb.h:76:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-14653/bgp_routemap_nb.h:77:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-14653/bgp_routemap_nb.h:78:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-14653/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-14653/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-14653/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-14653/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-14653/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-14653/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-14653/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-14653/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-14653/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-14653/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-14653/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-14653/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-14653/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-14653/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-14653/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-14653/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-14653/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-14653/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-14653/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-14653/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-14653/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-14653/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-14653/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-14653/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-14653/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-14653/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-14653/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-14653/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-14653/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-14653/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-14653/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-14653/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-14653/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-14653/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-14653/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-14653/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-14653/bgp_routemap_nb.h:115:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-14653/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-14653/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-14653/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-14653/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-14653/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-14653/bgp_routemap_nb.h:121:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-14653/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-14653/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-14653/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-14653/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-14653/bgp_routemap_nb.h:126:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-14653/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-14653/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-14653/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-14653/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-14653/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:38:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-14653/ospf6_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 12 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#79: FILE: /tmp/f1-14653/ospf6_routemap_nb_config.c:79:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#103: FILE: /tmp/f1-14653/ospf6_routemap_nb_config.c:103:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "forwarding-address", ipv6_addr);
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/ospf6_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/ospf6_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-14653/ospf6_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-14653/ospf_routemap_nb.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-14653/ospf_routemap_nb.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-14653/ospf_routemap_nb.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-14653/ospf_routemap_nb.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-14653/ospf_routemap_nb.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-14653/ospf_routemap_nb.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-14653/ospf_routemap_nb.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-14653/ospf_routemap_nb.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb_config.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-14653/ospf_routemap_nb_config.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/ospf_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/ospf_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-14653/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_northbound.c | 32 issues
===============================================
WARNING: line over 80 characters
#8: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:8:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#46: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:46:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#65: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:65:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#67: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:67:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:68:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#72: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:72:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#74: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:74:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-14653/ospf_routemap_northbound.c:75:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for routemap_cli.c | 224 issues
===============================================
< WARNING: line over 80 characters
< #302: FILE: /tmp/f1-14653/routemap_cli.c:302:
< WARNING: line over 80 characters
< #360: FILE: /tmp/f1-14653/routemap_cli.c:360:
< WARNING: line over 80 characters
< #383: FILE: /tmp/f1-14653/routemap_cli.c:383:
< WARNING: line over 80 characters
< #401: FILE: /tmp/f1-14653/routemap_cli.c:401:
< WARNING: line over 80 characters
< #424: FILE: /tmp/f1-14653/routemap_cli.c:424:
< WARNING: line over 80 characters
< #441: FILE: /tmp/f1-14653/routemap_cli.c:441:
< WARNING: line over 80 characters
< #461: FILE: /tmp/f1-14653/routemap_cli.c:461:
< WARNING: line over 80 characters
< #477: FILE: /tmp/f1-14653/routemap_cli.c:477:
< WARNING: line over 80 characters
< #498: FILE: /tmp/f1-14653/routemap_cli.c:498:
< WARNING: line over 80 characters
< #554: FILE: /tmp/f1-14653/routemap_cli.c:554:
< WARNING: line over 80 characters
< #574: FILE: /tmp/f1-14653/routemap_cli.c:574:
< ERROR: do not use assignment in if condition
< #665: FILE: /tmp/f1-14653/routemap_cli.c:665:
< ERROR: do not use assignment in if condition
< #669: FILE: /tmp/f1-14653/routemap_cli.c:669:
< ERROR: do not use assignment in if condition
< #674: FILE: /tmp/f1-14653/routemap_cli.c:674:
< WARNING: line over 80 characters
< #677: FILE: /tmp/f1-14653/routemap_cli.c:677:
< WARNING: line over 80 characters
< #725: FILE: /tmp/f1-14653/routemap_cli.c:725:
< WARNING: line over 80 characters
< #730: FILE: /tmp/f1-14653/routemap_cli.c:730:
< WARNING: line over 80 characters
< #735: FILE: /tmp/f1-14653/routemap_cli.c:735:
< WARNING: line over 80 characters
< #740: FILE: /tmp/f1-14653/routemap_cli.c:740:
< WARNING: line over 80 characters
< #745: FILE: /tmp/f1-14653/routemap_cli.c:745:
< WARNING: line over 80 characters
< #750: FILE: /tmp/f1-14653/routemap_cli.c:750:
< WARNING: line over 80 characters
< #755: FILE: /tmp/f1-14653/routemap_cli.c:755:
< WARNING: line over 80 characters
< #760: FILE: /tmp/f1-14653/routemap_cli.c:760:
< WARNING: line over 80 characters
< #765: FILE: /tmp/f1-14653/routemap_cli.c:765:
< WARNING: line over 80 characters
< #770: FILE: /tmp/f1-14653/routemap_cli.c:770:
< ERROR: do not use assignment in if condition
< #773: FILE: /tmp/f1-14653/routemap_cli.c:773:
< WARNING: line over 80 characters
< #775: FILE: /tmp/f1-14653/routemap_cli.c:775:
< ERROR: do not use assignment in if condition
< #778: FILE: /tmp/f1-14653/routemap_cli.c:778:
< WARNING: line over 80 characters
< #781: FILE: /tmp/f1-14653/routemap_cli.c:781:
< ERROR: do not use assignment in if condition
< #784: FILE: /tmp/f1-14653/routemap_cli.c:784:
< WARNING: line over 80 characters
< #787: FILE: /tmp/f1-14653/routemap_cli.c:787:
< ERROR: do not use assignment in if condition
< #790: FILE: /tmp/f1-14653/routemap_cli.c:790:
< WARNING: line over 80 characters
< #793: FILE: /tmp/f1-14653/routemap_cli.c:793:
< WARNING: line over 80 characters
< #802: FILE: /tmp/f1-14653/routemap_cli.c:802:
< WARNING: line over 80 characters
< #807: FILE: /tmp/f1-14653/routemap_cli.c:807:
< WARNING: line over 80 characters
< #814: FILE: /tmp/f1-14653/routemap_cli.c:814:
< WARNING: line over 80 characters
< #819: FILE: /tmp/f1-14653/routemap_cli.c:819:
< WARNING: line over 80 characters
< #824: FILE: /tmp/f1-14653/routemap_cli.c:824:
< WARNING: line over 80 characters
< #829: FILE: /tmp/f1-14653/routemap_cli.c:829:
< ERROR: do not use assignment in if condition
< #832: FILE: /tmp/f1-14653/routemap_cli.c:832:
< WARNING: line over 80 characters
< #834: FILE: /tmp/f1-14653/routemap_cli.c:834:
< ERROR: do not use assignment in if condition
< #837: FILE: /tmp/f1-14653/routemap_cli.c:837:
< WARNING: line over 80 characters
< #840: FILE: /tmp/f1-14653/routemap_cli.c:840:
< ERROR: do not use assignment in if condition
< #843: FILE: /tmp/f1-14653/routemap_cli.c:843:
< WARNING: line over 80 characters
< #846: FILE: /tmp/f1-14653/routemap_cli.c:846:
< WARNING: line over 80 characters
< #857: FILE: /tmp/f1-14653/routemap_cli.c:857:
< ERROR: do not use assignment in if condition
< #860: FILE: /tmp/f1-14653/routemap_cli.c:860:
< WARNING: line over 80 characters
< #862: FILE: /tmp/f1-14653/routemap_cli.c:862:
< ERROR: do not use assignment in if condition
< #865: FILE: /tmp/f1-14653/routemap_cli.c:865:
< WARNING: line over 80 characters
< #868: FILE: /tmp/f1-14653/routemap_cli.c:868:
< ERROR: do not use assignment in if condition
< #871: FILE: /tmp/f1-14653/routemap_cli.c:871:
< WARNING: line over 80 characters
< #874: FILE: /tmp/f1-14653/routemap_cli.c:874:
< ERROR: do not use assignment in if condition
< #883: FILE: /tmp/f1-14653/routemap_cli.c:883:
< WARNING: line over 80 characters
< #885: FILE: /tmp/f1-14653/routemap_cli.c:885:
< WARNING: line over 80 characters
< #892: FILE: /tmp/f1-14653/routemap_cli.c:892:
< ERROR: do not use assignment in if condition
< #898: FILE: /tmp/f1-14653/routemap_cli.c:898:
< WARNING: line over 80 characters
< #901: FILE: /tmp/f1-14653/routemap_cli.c:901:
< WARNING: line over 80 characters
< #908: FILE: /tmp/f1-14653/routemap_cli.c:908:
< ERROR: do not use assignment in if condition
< #915: FILE: /tmp/f1-14653/routemap_cli.c:915:
< WARNING: line over 80 characters
< #918: FILE: /tmp/f1-14653/routemap_cli.c:918:
< WARNING: line over 80 characters
< #925: FILE: /tmp/f1-14653/routemap_cli.c:925:
< ERROR: do not use assignment in if condition
< #936: FILE: /tmp/f1-14653/routemap_cli.c:936:
< WARNING: line over 80 characters
< #938: FILE: /tmp/f1-14653/routemap_cli.c:938:
< WARNING: line over 80 characters
< #945: FILE: /tmp/f1-14653/routemap_cli.c:945:
< ERROR: do not use assignment in if condition
< #952: FILE: /tmp/f1-14653/routemap_cli.c:952:
< WARNING: line over 80 characters
< #955: FILE: /tmp/f1-14653/routemap_cli.c:955:
< WARNING: line over 80 characters
< #962: FILE: /tmp/f1-14653/routemap_cli.c:962:
< ERROR: do not use assignment in if condition
< #970: FILE: /tmp/f1-14653/routemap_cli.c:970:
< WARNING: line over 80 characters
< #973: FILE: /tmp/f1-14653/routemap_cli.c:973:
< WARNING: line over 80 characters
< #980: FILE: /tmp/f1-14653/routemap_cli.c:980:
< ERROR: do not use assignment in if condition
< #992: FILE: /tmp/f1-14653/routemap_cli.c:992:
< WARNING: line over 80 characters
< #994: FILE: /tmp/f1-14653/routemap_cli.c:994:
< ERROR: do not use assignment in if condition
< #997: FILE: /tmp/f1-14653/routemap_cli.c:997:
< WARNING: line over 80 characters
< #1000: FILE: /tmp/f1-14653/routemap_cli.c:1000:
< ERROR: do not use assignment in if condition
< #1003: FILE: /tmp/f1-14653/routemap_cli.c:1003:
< WARNING: line over 80 characters
< #1006: FILE: /tmp/f1-14653/routemap_cli.c:1006:
< WARNING: line over 80 characters
< #1017: FILE: /tmp/f1-14653/routemap_cli.c:1017:
< WARNING: line over 80 characters
< #1022: FILE: /tmp/f1-14653/routemap_cli.c:1022:
< WARNING: line over 80 characters
< #1243: FILE: /tmp/f1-14653/routemap_cli.c:1243:
< WARNING: line over 80 characters
< #1247: FILE: /tmp/f1-14653/routemap_cli.c:1247:
< WARNING: line over 80 characters
< #1252: FILE: /tmp/f1-14653/routemap_cli.c:1252:
< WARNING: line over 80 characters
< #1257: FILE: /tmp/f1-14653/routemap_cli.c:1257:
< WARNING: line over 80 characters
< #1262: FILE: /tmp/f1-14653/routemap_cli.c:1262:
< WARNING: line over 80 characters
< #1277: FILE: /tmp/f1-14653/routemap_cli.c:1277:
< WARNING: line over 80 characters
< #1282: FILE: /tmp/f1-14653/routemap_cli.c:1282:
< WARNING: line over 80 characters
< #1287: FILE: /tmp/f1-14653/routemap_cli.c:1287:
< WARNING: line over 80 characters
< #1299: FILE: /tmp/f1-14653/routemap_cli.c:1299:
< ERROR: do not use assignment in if condition
< #1302: FILE: /tmp/f1-14653/routemap_cli.c:1302:
< WARNING: line over 80 characters
< #1304: FILE: /tmp/f1-14653/routemap_cli.c:1304:
< ERROR: do not use assignment in if condition
< #1307: FILE: /tmp/f1-14653/routemap_cli.c:1307:
< WARNING: line over 80 characters
< #1310: FILE: /tmp/f1-14653/routemap_cli.c:1310:
< ERROR: do not use assignment in if condition
< #1313: FILE: /tmp/f1-14653/routemap_cli.c:1313:
< WARNING: line over 80 characters
< #1316: FILE: /tmp/f1-14653/routemap_cli.c:1316:
< ERROR: do not use assignment in if condition
< #1325: FILE: /tmp/f1-14653/routemap_cli.c:1325:
< WARNING: line over 80 characters
< #1327: FILE: /tmp/f1-14653/routemap_cli.c:1327:
< ERROR: do not use assignment in if condition
< #1330: FILE: /tmp/f1-14653/routemap_cli.c:1330:
< WARNING: line over 80 characters
< #1333: FILE: /tmp/f1-14653/routemap_cli.c:1333:
< ERROR: do not use assignment in if condition
< #1336: FILE: /tmp/f1-14653/routemap_cli.c:1336:
< WARNING: line over 80 characters
< #1339: FILE: /tmp/f1-14653/routemap_cli.c:1339:
< WARNING: line over 80 characters
< #1349: FILE: /tmp/f1-14653/routemap_cli.c:1349:
< WARNING: line over 80 characters
< #1353: FILE: /tmp/f1-14653/routemap_cli.c:1353:
< WARNING: line over 80 characters
< #1358: FILE: /tmp/f1-14653/routemap_cli.c:1358:
< WARNING: line over 80 characters
< #1364: FILE: /tmp/f1-14653/routemap_cli.c:1364:
< WARNING: line over 80 characters
< #1368: FILE: /tmp/f1-14653/routemap_cli.c:1368:
< WARNING: line over 80 characters
< #1373: FILE: /tmp/f1-14653/routemap_cli.c:1373:
< WARNING: line over 80 characters
< #1380: FILE: /tmp/f1-14653/routemap_cli.c:1380:
< WARNING: line over 80 characters
< #1385: FILE: /tmp/f1-14653/routemap_cli.c:1385:
< WARNING: line over 80 characters
< #1390: FILE: /tmp/f1-14653/routemap_cli.c:1390:
< WARNING: line over 80 characters
< #1393: FILE: /tmp/f1-14653/routemap_cli.c:1393:
< WARNING: line over 80 characters
< #1398: FILE: /tmp/f1-14653/routemap_cli.c:1398:
< WARNING: line over 80 characters
< #1402: FILE: /tmp/f1-14653/routemap_cli.c:1402:
< WARNING: line over 80 characters
< #1406: FILE: /tmp/f1-14653/routemap_cli.c:1406:
Report for routemap_northbound.c | 12 issues
===============================================
< WARNING: line over 80 characters
< #1265: FILE: /tmp/f1-14653/routemap_northbound.c:1265:
< WARNING: line over 80 characters
< #1269: FILE: /tmp/f1-14653/routemap_northbound.c:1269:
< WARNING: line over 80 characters
< #1271: FILE: /tmp/f1-14653/routemap_northbound.c:1271:
< WARNING: line over 80 characters
< #1272: FILE: /tmp/f1-14653/routemap_northbound.c:1272:
< WARNING: line over 80 characters
< #1276: FILE: /tmp/f1-14653/routemap_northbound.c:1276:
< WARNING: line over 80 characters
< #1278: FILE: /tmp/f1-14653/routemap_northbound.c:1278:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #364: FILE: /tmp/f1-14653/zebra_routemap.c:364:
< WARNING: line over 80 characters
< #388: FILE: /tmp/f1-14653/zebra_routemap.c:388:
< WARNING: line over 80 characters
< #405: FILE: /tmp/f1-14653/zebra_routemap.c:405:
< WARNING: line over 80 characters
< #429: FILE: /tmp/f1-14653/zebra_routemap.c:429:
< WARNING: line over 80 characters
< #446: FILE: /tmp/f1-14653/zebra_routemap.c:446:
< WARNING: line over 80 characters
< #470: FILE: /tmp/f1-14653/zebra_routemap.c:470:
< WARNING: line over 80 characters
< #485: FILE: /tmp/f1-14653/zebra_routemap.c:485:
< WARNING: line over 80 characters
< #506: FILE: /tmp/f1-14653/zebra_routemap.c:506:
< WARNING: line over 80 characters
< #521: FILE: /tmp/f1-14653/zebra_routemap.c:521:
< WARNING: line over 80 characters
< #541: FILE: /tmp/f1-14653/zebra_routemap.c:541:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-14653/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-14653/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-14653/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-14653/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-14653/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-14653/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-14653/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-14653/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-14653/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-14653/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-14653/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-14653/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-14653/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-14653/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-14653/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-14653/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 60 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#42: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:42:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, length,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:54:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#70: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:70:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#73: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:73:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#95: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:95:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "ipv6 address prefix-len",

WARNING: line over 80 characters
#107: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:107:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#124: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:124:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#149: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:149:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "source-instance", type,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:161:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#177: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:177:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#223: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:223:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#239: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:239:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#316: FILE: /tmp/f1-14653/zebra_routemap_nb_config.c:316:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-14653/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-14653/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-14653/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-14653/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-14653/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-14653/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-14653/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-14653/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-14653/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-14653/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-14653/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-14653/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@patrasar patrasar force-pushed the routemap_nb branch 2 times, most recently from 3076478 to a48d869 Compare October 30, 2020 12:52
@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 30, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

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-15066/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'

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

OpenBSD 6 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '('
<<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
^
1 error generated.
gmake[1]: *** [Makefile:8184: bgpd/bgp_routemap.o] Error 1
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
/usr/home/ci/cibuild.15066/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15066/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, 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-15066/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/usr/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
Ubuntu 16.04 i386 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

NetBSD 8 amd64 build: Failed (click for details)

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

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '(' before '<<' token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 18.04 arm7 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/CI005BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory `/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [bgpd/bgp_routemap.o] Error 1
copying selected object files to avoid basename conflicts...

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

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15066/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-15066/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'
Debian 8 amd64 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7642: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Warnings Generated during build:

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

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'

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

OpenBSD 6 amd64 build: Failed (click for details)

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

gmake[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '('
<<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
^
1 error generated.
gmake[1]: *** [Makefile:8184: bgpd/bgp_routemap.o] Error 1
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
/usr/home/ci/cibuild.15066/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15066/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, 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-15066/artifact/CI009BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/usr/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
gmake[1]: Target 'all-am' not remade because of errors.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
Ubuntu 16.04 i386 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

NetBSD 8 amd64 build: Failed (click for details)

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

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: expected identifier or '(' before '<<' token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
gmake[1]: *** [Makefile:8185: bgpd/bgp_routemap.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

Ubuntu 18.04 arm7 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^~~~~~~
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7654: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1
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-15066/artifact/CI005BUILD/ErrorLog/log_make.txt)

make  all-am
make[1]: Entering directory `/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [bgpd/bgp_routemap.o] Error 1
copying selected object files to avoid basename conflicts...

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

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15066/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-15066/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_routemap.c:4089:1: error: version control conflict marker in file
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 4089 | <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
make[1]: *** [Makefile:8186: bgpd/bgp_routemap.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15066/frr-source'
Debian 8 amd64 build: Failed (click for details)

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

make  all-am
make[1]: Entering directory '/home/ci/cibuild.15066/frr-source'
bgpd/bgp_routemap.c:4089:1: error: expected identifier or ( before << token
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
 ^
bgpd/bgp_routemap.c:4089:9: error: invalid suffix "c41b763580ddcb26683005c21795404b7488fc" on integer constant
 <<<<<<< 00c41b763580ddcb26683005c21795404b7488fc
Makefile:7642: recipe for target 'bgpd/bgp_routemap.o' failed
make[1]: *** [bgpd/bgp_routemap.o] Error 1

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

<stdin>:5393: trailing whitespace.
	return NB_OK; 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 50 issues
===============================================
< WARNING: line over 80 characters
< #4064: FILE: /tmp/f1-20231/bgp_routemap.c:4064:
< WARNING: line over 80 characters
< #4083: FILE: /tmp/f1-20231/bgp_routemap.c:4083:
< ERROR: spaces required around that '<' (ctx:OxW)
< #4089: FILE: /tmp/f1-20231/bgp_routemap.c:4089:
< WARNING: line over 80 characters
< #4152: FILE: /tmp/f1-20231/bgp_routemap.c:4152:
< WARNING: line over 80 characters
< #4180: FILE: /tmp/f1-20231/bgp_routemap.c:4180:
< WARNING: line over 80 characters
< #4228: FILE: /tmp/f1-20231/bgp_routemap.c:4228:
< WARNING: line over 80 characters
< #4246: FILE: /tmp/f1-20231/bgp_routemap.c:4246:
< WARNING: line over 80 characters
< #4470: FILE: /tmp/f1-20231/bgp_routemap.c:4470:
< WARNING: line over 80 characters
< #4514: FILE: /tmp/f1-20231/bgp_routemap.c:4514:
< WARNING: line over 80 characters
< #4529: FILE: /tmp/f1-20231/bgp_routemap.c:4529:
< WARNING: line over 80 characters
< #4551: FILE: /tmp/f1-20231/bgp_routemap.c:4551:
< WARNING: line over 80 characters
< #4566: FILE: /tmp/f1-20231/bgp_routemap.c:4566:
< WARNING: line over 80 characters
< #4588: FILE: /tmp/f1-20231/bgp_routemap.c:4588:
< WARNING: line over 80 characters
< #4616: FILE: /tmp/f1-20231/bgp_routemap.c:4616:
< WARNING: line over 80 characters
< #4703: FILE: /tmp/f1-20231/bgp_routemap.c:4703:
< WARNING: line over 80 characters
< #4720: FILE: /tmp/f1-20231/bgp_routemap.c:4720:
< WARNING: line over 80 characters
< #4807: FILE: /tmp/f1-20231/bgp_routemap.c:4807:
< WARNING: line over 80 characters
< #4822: FILE: /tmp/f1-20231/bgp_routemap.c:4822:
< WARNING: line over 80 characters
< #4860: FILE: /tmp/f1-20231/bgp_routemap.c:4860:
< WARNING: line over 80 characters
< #5526: FILE: /tmp/f1-20231/bgp_routemap.c:5526:
< WARNING: line over 80 characters
< #5561: FILE: /tmp/f1-20231/bgp_routemap.c:5561:
< WARNING: line over 80 characters
< #6080: FILE: /tmp/f1-20231/bgp_routemap.c:6080:
< WARNING: line over 80 characters
< #6089: FILE: /tmp/f1-20231/bgp_routemap.c:6089:
< WARNING: line over 80 characters
< #6120: FILE: /tmp/f1-20231/bgp_routemap.c:6120:
< WARNING: line over 80 characters
< #6124: FILE: /tmp/f1-20231/bgp_routemap.c:6124:
Report for bgp_routemap_nb.c | 125 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-20231/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-20231/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-20231/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-20231/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-20231/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-20231/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-20231/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-20231/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-20231/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-20231/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-20231/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-20231/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-20231/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-20231/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-20231/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-20231/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-20231/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-20231/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-20231/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-20231/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-20231/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-20231/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-20231/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-20231/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-20231/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-20231/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-20231/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-20231/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-20231/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-20231/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-20231/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-20231/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-20231/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-20231/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-20231/bgp_routemap_nb.c:112:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-20231/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-20231/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-20231/bgp_routemap_nb.c:119:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-20231/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-20231/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-20231/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-20231/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-20231/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-20231/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-20231/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-20231/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-20231/bgp_routemap_nb.c:140:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#141: FILE: /tmp/f1-20231/bgp_routemap_nb.c:141:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#145: FILE: /tmp/f1-20231/bgp_routemap_nb.c:145:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard",

WARNING: line over 80 characters
#147: FILE: /tmp/f1-20231/bgp_routemap_nb.c:147:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-20231/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-20231/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-20231/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-20231/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-20231/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-20231/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-20231/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-20231/bgp_routemap_nb.c:167:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish,

WARNING: line over 80 characters
#171: FILE: /tmp/f1-20231/bgp_routemap_nb.c:171:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended",

WARNING: line over 80 characters
#173: FILE: /tmp/f1-20231/bgp_routemap_nb.c:173:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify,

WARNING: line over 80 characters
#174: FILE: /tmp/f1-20231/bgp_routemap_nb.c:174:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#178: FILE: /tmp/f1-20231/bgp_routemap_nb.c:178:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match",

WARNING: line over 80 characters
#180: FILE: /tmp/f1-20231/bgp_routemap_nb.c:180:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify,

WARNING: line over 80 characters
#181: FILE: /tmp/f1-20231/bgp_routemap_nb.c:181:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy,

WARNING: line over 80 characters
#185: FILE: /tmp/f1-20231/bgp_routemap_nb.c:185:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#187: FILE: /tmp/f1-20231/bgp_routemap_nb.c:187:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#191: FILE: /tmp/f1-20231/bgp_routemap_nb.c:191:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#193: FILE: /tmp/f1-20231/bgp_routemap_nb.c:193:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#194: FILE: /tmp/f1-20231/bgp_routemap_nb.c:194:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#198: FILE: /tmp/f1-20231/bgp_routemap_nb.c:198:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#200: FILE: /tmp/f1-20231/bgp_routemap_nb.c:200:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#201: FILE: /tmp/f1-20231/bgp_routemap_nb.c:201:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#205: FILE: /tmp/f1-20231/bgp_routemap_nb.c:205:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#207: FILE: /tmp/f1-20231/bgp_routemap_nb.c:207:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#208: FILE: /tmp/f1-20231/bgp_routemap_nb.c:208:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#212: FILE: /tmp/f1-20231/bgp_routemap_nb.c:212:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#214: FILE: /tmp/f1-20231/bgp_routemap_nb.c:214:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#215: FILE: /tmp/f1-20231/bgp_routemap_nb.c:215:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#219: FILE: /tmp/f1-20231/bgp_routemap_nb.c:219:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#221: FILE: /tmp/f1-20231/bgp_routemap_nb.c:221:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#222: FILE: /tmp/f1-20231/bgp_routemap_nb.c:222:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#226: FILE: /tmp/f1-20231/bgp_routemap_nb.c:226:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#228: FILE: /tmp/f1-20231/bgp_routemap_nb.c:228:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#229: FILE: /tmp/f1-20231/bgp_routemap_nb.c:229:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#233: FILE: /tmp/f1-20231/bgp_routemap_nb.c:233:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#235: FILE: /tmp/f1-20231/bgp_routemap_nb.c:235:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#236: FILE: /tmp/f1-20231/bgp_routemap_nb.c:236:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#240: FILE: /tmp/f1-20231/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

ERROR: spaces required around that '=' (ctx:WxV)
#240: FILE: /tmp/f1-20231/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",
 			       ^

WARNING: line over 80 characters
#242: FILE: /tmp/f1-20231/bgp_routemap_nb.c:242:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#243: FILE: /tmp/f1-20231/bgp_routemap_nb.c:243:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#247: FILE: /tmp/f1-20231/bgp_routemap_nb.c:247:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#249: FILE: /tmp/f1-20231/bgp_routemap_nb.c:249:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#250: FILE: /tmp/f1-20231/bgp_routemap_nb.c:250:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#254: FILE: /tmp/f1-20231/bgp_routemap_nb.c:254:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#256: FILE: /tmp/f1-20231/bgp_routemap_nb.c:256:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#257: FILE: /tmp/f1-20231/bgp_routemap_nb.c:257:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#261: FILE: /tmp/f1-20231/bgp_routemap_nb.c:261:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#263: FILE: /tmp/f1-20231/bgp_routemap_nb.c:263:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#264: FILE: /tmp/f1-20231/bgp_routemap_nb.c:264:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#268: FILE: /tmp/f1-20231/bgp_routemap_nb.c:268:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#270: FILE: /tmp/f1-20231/bgp_routemap_nb.c:270:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#271: FILE: /tmp/f1-20231/bgp_routemap_nb.c:271:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#275: FILE: /tmp/f1-20231/bgp_routemap_nb.c:275:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#277: FILE: /tmp/f1-20231/bgp_routemap_nb.c:277:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#278: FILE: /tmp/f1-20231/bgp_routemap_nb.c:278:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#282: FILE: /tmp/f1-20231/bgp_routemap_nb.c:282:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#284: FILE: /tmp/f1-20231/bgp_routemap_nb.c:284:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#285: FILE: /tmp/f1-20231/bgp_routemap_nb.c:285:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#289: FILE: /tmp/f1-20231/bgp_routemap_nb.c:289:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#291: FILE: /tmp/f1-20231/bgp_routemap_nb.c:291:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#292: FILE: /tmp/f1-20231/bgp_routemap_nb.c:292:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#296: FILE: /tmp/f1-20231/bgp_routemap_nb.c:296:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#298: FILE: /tmp/f1-20231/bgp_routemap_nb.c:298:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#299: FILE: /tmp/f1-20231/bgp_routemap_nb.c:299:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#303: FILE: /tmp/f1-20231/bgp_routemap_nb.c:303:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#305: FILE: /tmp/f1-20231/bgp_routemap_nb.c:305:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#306: FILE: /tmp/f1-20231/bgp_routemap_nb.c:306:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#310: FILE: /tmp/f1-20231/bgp_routemap_nb.c:310:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#312: FILE: /tmp/f1-20231/bgp_routemap_nb.c:312:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#313: FILE: /tmp/f1-20231/bgp_routemap_nb.c:313:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#317: FILE: /tmp/f1-20231/bgp_routemap_nb.c:317:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#319: FILE: /tmp/f1-20231/bgp_routemap_nb.c:319:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#320: FILE: /tmp/f1-20231/bgp_routemap_nb.c:320:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#324: FILE: /tmp/f1-20231/bgp_routemap_nb.c:324:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#326: FILE: /tmp/f1-20231/bgp_routemap_nb.c:326:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#327: FILE: /tmp/f1-20231/bgp_routemap_nb.c:327:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#331: FILE: /tmp/f1-20231/bgp_routemap_nb.c:331:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#333: FILE: /tmp/f1-20231/bgp_routemap_nb.c:333:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#334: FILE: /tmp/f1-20231/bgp_routemap_nb.c:334:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#338: FILE: /tmp/f1-20231/bgp_routemap_nb.c:338:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#340: FILE: /tmp/f1-20231/bgp_routemap_nb.c:340:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#341: FILE: /tmp/f1-20231/bgp_routemap_nb.c:341:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#345: FILE: /tmp/f1-20231/bgp_routemap_nb.c:345:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#347: FILE: /tmp/f1-20231/bgp_routemap_nb.c:347:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#348: FILE: /tmp/f1-20231/bgp_routemap_nb.c:348:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-20231/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-20231/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-20231/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-20231/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-20231/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-20231/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-20231/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-20231/bgp_routemap_nb.c:368:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#372: FILE: /tmp/f1-20231/bgp_routemap_nb.c:372:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#374: FILE: /tmp/f1-20231/bgp_routemap_nb.c:374:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#375: FILE: /tmp/f1-20231/bgp_routemap_nb.c:375:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#379: FILE: /tmp/f1-20231/bgp_routemap_nb.c:379:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#381: FILE: /tmp/f1-20231/bgp_routemap_nb.c:381:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#382: FILE: /tmp/f1-20231/bgp_routemap_nb.c:382:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#386: FILE: /tmp/f1-20231/bgp_routemap_nb.c:386:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num",

WARNING: line over 80 characters
#388: FILE: /tmp/f1-20231/bgp_routemap_nb.c:388:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify,

WARNING: line over 80 characters
#389: FILE: /tmp/f1-20231/bgp_routemap_nb.c:389:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy,

WARNING: line over 80 characters
#393: FILE: /tmp/f1-20231/bgp_routemap_nb.c:393:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended",

WARNING: line over 80 characters
#395: FILE: /tmp/f1-20231/bgp_routemap_nb.c:395:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify,

WARNING: line over 80 characters
#396: FILE: /tmp/f1-20231/bgp_routemap_nb.c:396:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#400: FILE: /tmp/f1-20231/bgp_routemap_nb.c:400:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#402: FILE: /tmp/f1-20231/bgp_routemap_nb.c:402:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#403: FILE: /tmp/f1-20231/bgp_routemap_nb.c:403:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,
Report for bgp_routemap_nb_config.c | 204 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:28:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:31:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#53: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:53:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "local-preference",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:66:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#82: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:82:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#136: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:136:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#190: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:190:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#243: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#297: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:297:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#300: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:300:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#335: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:335:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#351: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:351:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#405: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:405:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#408: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:408:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#443: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:443:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#459: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:459:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#485: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:485:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "peer", "local",

WARNING: line over 80 characters
#515: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:515:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: suspect code indent for conditional statements (16, 16)
#546: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:546:
+		} else if (IS_MATCH_MAC_LIST(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#560: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:560:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "ip route-source",

WARNING: suspect code indent for conditional statements (16, 16)
#562: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:562:
+		} else if (IS_MATCH_ROUTE_SRC_PL(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#599: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:599:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num

WARNING: line over 80 characters
#637: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:637:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(

WARNING: line over 80 characters
#653: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:653:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended

WARNING: line over 80 characters
#656: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:656:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(

WARNING: line over 80 characters
#691: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:691:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(

WARNING: line over 80 characters
#707: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:707:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#710: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:710:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#730: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:730:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn default-route",

WARNING: line over 80 characters
#743: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:743:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#759: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:759:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#813: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:813:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#838: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:838:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn route-type", type,

WARNING: line over 80 characters
#851: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:851:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#867: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:867:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#870: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:870:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#905: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:905:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#921: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:921:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard

WARNING: line over 80 characters
#924: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:924:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(

WARNING: line over 80 characters
#978: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:978:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num

WARNING: line over 80 characters
#981: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:981:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(

WARNING: line over 80 characters
#996: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:996:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(

WARNING: line over 80 characters
#1012: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1012:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match

WARNING: line over 80 characters
#1015: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1015:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(

ERROR: code indent should use tabs where possible
#1024: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: please, no spaces at the start of a line
#1024: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: line over 80 characters
#1030: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1030:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(

WARNING: line over 80 characters
#1046: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1046:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended

WARNING: line over 80 characters
#1049: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1049:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(

WARNING: line over 80 characters
#1104: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1104:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended

WARNING: line over 80 characters
#1107: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1107:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(

WARNING: line over 80 characters
#1122: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1122:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(

WARNING: line over 80 characters
#1138: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1138:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match

WARNING: line over 80 characters
#1141: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1141:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(

WARNING: line over 80 characters
#1156: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1156:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(

WARNING: line over 80 characters
#1172: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1172:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1229: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1229:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1232: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1232:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1247: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1247:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1264: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1264:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1267: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1267:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1282: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1282:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1298: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1298:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1323: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1323:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1352: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1352:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1377: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1377:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1407: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1458: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1458:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1483: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1483:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity rt", type);

WARNING: line over 80 characters
#1511: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1511:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1536: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1536:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity soo", type);

WARNING: line over 80 characters
#1564: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1564:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1615: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1615:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1667: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1667:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

ERROR: trailing whitespace
#1733: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1733:
+^Ireturn NB_OK; $

WARNING: line over 80 characters
#1738: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1738:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1771: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1771:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, NULL);

WARNING: line over 80 characters
#1800: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1800:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1851: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1851:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1875: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1875:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "local-preference", type);

WARNING: line over 80 characters
#1902: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1902:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1953: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:1953:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#2005: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2005:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

ERROR: code indent should use tabs where possible
#2042: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: please, no spaces at the start of a line
#2042: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: line over 80 characters
#2056: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2056:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#2107: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2107:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#2158: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2158:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2183: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2183:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", type);

WARNING: line over 80 characters
#2211: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2211:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2239: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2239:
+		snprintf(argstr, (strlen(value) + strlen("last-as") + 2), "last-as %s",

WARNING: line over 80 characters
#2242: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2242:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", argstr);

WARNING: line over 80 characters
#2272: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2272:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2297: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2297:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path exclude", type);

WARNING: line over 80 characters
#2325: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2325:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2350: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2350:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "community", "none");

WARNING: line over 80 characters
#2382: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2382:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2435: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2435:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2461: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2461:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community",

WARNING: line over 80 characters
#2494: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2494:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2519: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2519:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community", type);

WARNING: line over 80 characters
#2547: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2547:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2577: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2577:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2595: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2595:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2612: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2612:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

ERROR: code indent should use tabs where possible
#2626: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2626: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: line over 80 characters
#2630: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2630:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

ERROR: code indent should use tabs where possible
#2642: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2642: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: line over 80 characters
#2647: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2647:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num

WARNING: line over 80 characters
#2707: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2707:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended

WARNING: line over 80 characters
#2769: FILE: /tmp/f1-20231/bgp_routemap_nb_config.c:2769:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name
Report for bgp_routemap_nb.h | 160 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/bgp_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/bgp_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-20231/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-20231/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-20231/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-20231/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-20231/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-20231/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-20231/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-20231/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-20231/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-20231/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-20231/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-20231/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-20231/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-20231/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-20231/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-20231/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-20231/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-20231/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-20231/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-20231/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-20231/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-20231/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-20231/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-20231/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-20231/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-20231/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-20231/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-20231/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-20231/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-20231/bgp_routemap_nb.h:60:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-20231/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-20231/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-20231/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-20231/bgp_routemap_nb.h:64:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-20231/bgp_routemap_nb.h:65:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-20231/bgp_routemap_nb.h:66:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-20231/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-20231/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-20231/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-20231/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-20231/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-20231/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-20231/bgp_routemap_nb.h:73:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-20231/bgp_routemap_nb.h:74:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-20231/bgp_routemap_nb.h:75:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-20231/bgp_routemap_nb.h:76:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-20231/bgp_routemap_nb.h:77:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-20231/bgp_routemap_nb.h:78:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-20231/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-20231/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-20231/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-20231/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-20231/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-20231/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-20231/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-20231/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-20231/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-20231/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-20231/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-20231/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-20231/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-20231/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-20231/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-20231/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-20231/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-20231/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-20231/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-20231/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-20231/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-20231/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-20231/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-20231/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-20231/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-20231/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-20231/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-20231/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-20231/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-20231/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-20231/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-20231/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-20231/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-20231/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-20231/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-20231/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-20231/bgp_routemap_nb.h:115:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-20231/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-20231/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-20231/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-20231/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-20231/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-20231/bgp_routemap_nb.h:121:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-20231/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-20231/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-20231/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-20231/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-20231/bgp_routemap_nb.h:126:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-20231/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-20231/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-20231/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-20231/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-20231/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:38:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-20231/ospf6_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 12 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#79: FILE: /tmp/f1-20231/ospf6_routemap_nb_config.c:79:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#103: FILE: /tmp/f1-20231/ospf6_routemap_nb_config.c:103:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "forwarding-address", ipv6_addr);
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/ospf6_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/ospf6_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-20231/ospf6_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-20231/ospf_routemap_nb.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-20231/ospf_routemap_nb.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-20231/ospf_routemap_nb.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-20231/ospf_routemap_nb.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-20231/ospf_routemap_nb.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-20231/ospf_routemap_nb.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-20231/ospf_routemap_nb.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-20231/ospf_routemap_nb.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb_config.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-20231/ospf_routemap_nb_config.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/ospf_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/ospf_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-20231/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_northbound.c | 32 issues
===============================================
WARNING: line over 80 characters
#8: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:8:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#46: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:46:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#65: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:65:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#67: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:67:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:68:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#72: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:72:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#74: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:74:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-20231/ospf_routemap_northbound.c:75:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for routemap_cli.c | 224 issues
===============================================
< WARNING: line over 80 characters
< #302: FILE: /tmp/f1-20231/routemap_cli.c:302:
< WARNING: line over 80 characters
< #360: FILE: /tmp/f1-20231/routemap_cli.c:360:
< WARNING: line over 80 characters
< #383: FILE: /tmp/f1-20231/routemap_cli.c:383:
< WARNING: line over 80 characters
< #401: FILE: /tmp/f1-20231/routemap_cli.c:401:
< WARNING: line over 80 characters
< #424: FILE: /tmp/f1-20231/routemap_cli.c:424:
< WARNING: line over 80 characters
< #441: FILE: /tmp/f1-20231/routemap_cli.c:441:
< WARNING: line over 80 characters
< #461: FILE: /tmp/f1-20231/routemap_cli.c:461:
< WARNING: line over 80 characters
< #477: FILE: /tmp/f1-20231/routemap_cli.c:477:
< WARNING: line over 80 characters
< #498: FILE: /tmp/f1-20231/routemap_cli.c:498:
< WARNING: line over 80 characters
< #554: FILE: /tmp/f1-20231/routemap_cli.c:554:
< WARNING: line over 80 characters
< #574: FILE: /tmp/f1-20231/routemap_cli.c:574:
< ERROR: do not use assignment in if condition
< #665: FILE: /tmp/f1-20231/routemap_cli.c:665:
< ERROR: do not use assignment in if condition
< #669: FILE: /tmp/f1-20231/routemap_cli.c:669:
< ERROR: do not use assignment in if condition
< #674: FILE: /tmp/f1-20231/routemap_cli.c:674:
< WARNING: line over 80 characters
< #677: FILE: /tmp/f1-20231/routemap_cli.c:677:
< WARNING: line over 80 characters
< #725: FILE: /tmp/f1-20231/routemap_cli.c:725:
< WARNING: line over 80 characters
< #730: FILE: /tmp/f1-20231/routemap_cli.c:730:
< WARNING: line over 80 characters
< #735: FILE: /tmp/f1-20231/routemap_cli.c:735:
< WARNING: line over 80 characters
< #740: FILE: /tmp/f1-20231/routemap_cli.c:740:
< WARNING: line over 80 characters
< #745: FILE: /tmp/f1-20231/routemap_cli.c:745:
< WARNING: line over 80 characters
< #750: FILE: /tmp/f1-20231/routemap_cli.c:750:
< WARNING: line over 80 characters
< #755: FILE: /tmp/f1-20231/routemap_cli.c:755:
< WARNING: line over 80 characters
< #760: FILE: /tmp/f1-20231/routemap_cli.c:760:
< WARNING: line over 80 characters
< #765: FILE: /tmp/f1-20231/routemap_cli.c:765:
< WARNING: line over 80 characters
< #770: FILE: /tmp/f1-20231/routemap_cli.c:770:
< ERROR: do not use assignment in if condition
< #773: FILE: /tmp/f1-20231/routemap_cli.c:773:
< WARNING: line over 80 characters
< #775: FILE: /tmp/f1-20231/routemap_cli.c:775:
< ERROR: do not use assignment in if condition
< #778: FILE: /tmp/f1-20231/routemap_cli.c:778:
< WARNING: line over 80 characters
< #781: FILE: /tmp/f1-20231/routemap_cli.c:781:
< ERROR: do not use assignment in if condition
< #784: FILE: /tmp/f1-20231/routemap_cli.c:784:
< WARNING: line over 80 characters
< #787: FILE: /tmp/f1-20231/routemap_cli.c:787:
< ERROR: do not use assignment in if condition
< #790: FILE: /tmp/f1-20231/routemap_cli.c:790:
< WARNING: line over 80 characters
< #793: FILE: /tmp/f1-20231/routemap_cli.c:793:
< WARNING: line over 80 characters
< #802: FILE: /tmp/f1-20231/routemap_cli.c:802:
< WARNING: line over 80 characters
< #807: FILE: /tmp/f1-20231/routemap_cli.c:807:
< WARNING: line over 80 characters
< #814: FILE: /tmp/f1-20231/routemap_cli.c:814:
< WARNING: line over 80 characters
< #819: FILE: /tmp/f1-20231/routemap_cli.c:819:
< WARNING: line over 80 characters
< #824: FILE: /tmp/f1-20231/routemap_cli.c:824:
< WARNING: line over 80 characters
< #829: FILE: /tmp/f1-20231/routemap_cli.c:829:
< ERROR: do not use assignment in if condition
< #832: FILE: /tmp/f1-20231/routemap_cli.c:832:
< WARNING: line over 80 characters
< #834: FILE: /tmp/f1-20231/routemap_cli.c:834:
< ERROR: do not use assignment in if condition
< #837: FILE: /tmp/f1-20231/routemap_cli.c:837:
< WARNING: line over 80 characters
< #840: FILE: /tmp/f1-20231/routemap_cli.c:840:
< ERROR: do not use assignment in if condition
< #843: FILE: /tmp/f1-20231/routemap_cli.c:843:
< WARNING: line over 80 characters
< #846: FILE: /tmp/f1-20231/routemap_cli.c:846:
< WARNING: line over 80 characters
< #857: FILE: /tmp/f1-20231/routemap_cli.c:857:
< ERROR: do not use assignment in if condition
< #860: FILE: /tmp/f1-20231/routemap_cli.c:860:
< WARNING: line over 80 characters
< #862: FILE: /tmp/f1-20231/routemap_cli.c:862:
< ERROR: do not use assignment in if condition
< #865: FILE: /tmp/f1-20231/routemap_cli.c:865:
< WARNING: line over 80 characters
< #868: FILE: /tmp/f1-20231/routemap_cli.c:868:
< ERROR: do not use assignment in if condition
< #871: FILE: /tmp/f1-20231/routemap_cli.c:871:
< WARNING: line over 80 characters
< #874: FILE: /tmp/f1-20231/routemap_cli.c:874:
< ERROR: do not use assignment in if condition
< #883: FILE: /tmp/f1-20231/routemap_cli.c:883:
< WARNING: line over 80 characters
< #885: FILE: /tmp/f1-20231/routemap_cli.c:885:
< WARNING: line over 80 characters
< #892: FILE: /tmp/f1-20231/routemap_cli.c:892:
< ERROR: do not use assignment in if condition
< #898: FILE: /tmp/f1-20231/routemap_cli.c:898:
< WARNING: line over 80 characters
< #901: FILE: /tmp/f1-20231/routemap_cli.c:901:
< WARNING: line over 80 characters
< #908: FILE: /tmp/f1-20231/routemap_cli.c:908:
< ERROR: do not use assignment in if condition
< #915: FILE: /tmp/f1-20231/routemap_cli.c:915:
< WARNING: line over 80 characters
< #918: FILE: /tmp/f1-20231/routemap_cli.c:918:
< WARNING: line over 80 characters
< #925: FILE: /tmp/f1-20231/routemap_cli.c:925:
< ERROR: do not use assignment in if condition
< #936: FILE: /tmp/f1-20231/routemap_cli.c:936:
< WARNING: line over 80 characters
< #938: FILE: /tmp/f1-20231/routemap_cli.c:938:
< WARNING: line over 80 characters
< #945: FILE: /tmp/f1-20231/routemap_cli.c:945:
< ERROR: do not use assignment in if condition
< #952: FILE: /tmp/f1-20231/routemap_cli.c:952:
< WARNING: line over 80 characters
< #955: FILE: /tmp/f1-20231/routemap_cli.c:955:
< WARNING: line over 80 characters
< #962: FILE: /tmp/f1-20231/routemap_cli.c:962:
< ERROR: do not use assignment in if condition
< #970: FILE: /tmp/f1-20231/routemap_cli.c:970:
< WARNING: line over 80 characters
< #973: FILE: /tmp/f1-20231/routemap_cli.c:973:
< WARNING: line over 80 characters
< #980: FILE: /tmp/f1-20231/routemap_cli.c:980:
< ERROR: do not use assignment in if condition
< #992: FILE: /tmp/f1-20231/routemap_cli.c:992:
< WARNING: line over 80 characters
< #994: FILE: /tmp/f1-20231/routemap_cli.c:994:
< ERROR: do not use assignment in if condition
< #997: FILE: /tmp/f1-20231/routemap_cli.c:997:
< WARNING: line over 80 characters
< #1000: FILE: /tmp/f1-20231/routemap_cli.c:1000:
< ERROR: do not use assignment in if condition
< #1003: FILE: /tmp/f1-20231/routemap_cli.c:1003:
< WARNING: line over 80 characters
< #1006: FILE: /tmp/f1-20231/routemap_cli.c:1006:
< WARNING: line over 80 characters
< #1017: FILE: /tmp/f1-20231/routemap_cli.c:1017:
< WARNING: line over 80 characters
< #1022: FILE: /tmp/f1-20231/routemap_cli.c:1022:
< WARNING: line over 80 characters
< #1243: FILE: /tmp/f1-20231/routemap_cli.c:1243:
< WARNING: line over 80 characters
< #1247: FILE: /tmp/f1-20231/routemap_cli.c:1247:
< WARNING: line over 80 characters
< #1252: FILE: /tmp/f1-20231/routemap_cli.c:1252:
< WARNING: line over 80 characters
< #1257: FILE: /tmp/f1-20231/routemap_cli.c:1257:
< WARNING: line over 80 characters
< #1262: FILE: /tmp/f1-20231/routemap_cli.c:1262:
< WARNING: line over 80 characters
< #1277: FILE: /tmp/f1-20231/routemap_cli.c:1277:
< WARNING: line over 80 characters
< #1282: FILE: /tmp/f1-20231/routemap_cli.c:1282:
< WARNING: line over 80 characters
< #1287: FILE: /tmp/f1-20231/routemap_cli.c:1287:
< WARNING: line over 80 characters
< #1299: FILE: /tmp/f1-20231/routemap_cli.c:1299:
< ERROR: do not use assignment in if condition
< #1302: FILE: /tmp/f1-20231/routemap_cli.c:1302:
< WARNING: line over 80 characters
< #1304: FILE: /tmp/f1-20231/routemap_cli.c:1304:
< ERROR: do not use assignment in if condition
< #1307: FILE: /tmp/f1-20231/routemap_cli.c:1307:
< WARNING: line over 80 characters
< #1310: FILE: /tmp/f1-20231/routemap_cli.c:1310:
< ERROR: do not use assignment in if condition
< #1313: FILE: /tmp/f1-20231/routemap_cli.c:1313:
< WARNING: line over 80 characters
< #1316: FILE: /tmp/f1-20231/routemap_cli.c:1316:
< ERROR: do not use assignment in if condition
< #1325: FILE: /tmp/f1-20231/routemap_cli.c:1325:
< WARNING: line over 80 characters
< #1327: FILE: /tmp/f1-20231/routemap_cli.c:1327:
< ERROR: do not use assignment in if condition
< #1330: FILE: /tmp/f1-20231/routemap_cli.c:1330:
< WARNING: line over 80 characters
< #1333: FILE: /tmp/f1-20231/routemap_cli.c:1333:
< ERROR: do not use assignment in if condition
< #1336: FILE: /tmp/f1-20231/routemap_cli.c:1336:
< WARNING: line over 80 characters
< #1339: FILE: /tmp/f1-20231/routemap_cli.c:1339:
< WARNING: line over 80 characters
< #1349: FILE: /tmp/f1-20231/routemap_cli.c:1349:
< WARNING: line over 80 characters
< #1353: FILE: /tmp/f1-20231/routemap_cli.c:1353:
< WARNING: line over 80 characters
< #1358: FILE: /tmp/f1-20231/routemap_cli.c:1358:
< WARNING: line over 80 characters
< #1364: FILE: /tmp/f1-20231/routemap_cli.c:1364:
< WARNING: line over 80 characters
< #1368: FILE: /tmp/f1-20231/routemap_cli.c:1368:
< WARNING: line over 80 characters
< #1373: FILE: /tmp/f1-20231/routemap_cli.c:1373:
< WARNING: line over 80 characters
< #1380: FILE: /tmp/f1-20231/routemap_cli.c:1380:
< WARNING: line over 80 characters
< #1385: FILE: /tmp/f1-20231/routemap_cli.c:1385:
< WARNING: line over 80 characters
< #1390: FILE: /tmp/f1-20231/routemap_cli.c:1390:
< WARNING: line over 80 characters
< #1393: FILE: /tmp/f1-20231/routemap_cli.c:1393:
< WARNING: line over 80 characters
< #1398: FILE: /tmp/f1-20231/routemap_cli.c:1398:
< WARNING: line over 80 characters
< #1402: FILE: /tmp/f1-20231/routemap_cli.c:1402:
< WARNING: line over 80 characters
< #1406: FILE: /tmp/f1-20231/routemap_cli.c:1406:
Report for routemap_northbound.c | 12 issues
===============================================
< WARNING: line over 80 characters
< #1265: FILE: /tmp/f1-20231/routemap_northbound.c:1265:
< WARNING: line over 80 characters
< #1269: FILE: /tmp/f1-20231/routemap_northbound.c:1269:
< WARNING: line over 80 characters
< #1271: FILE: /tmp/f1-20231/routemap_northbound.c:1271:
< WARNING: line over 80 characters
< #1272: FILE: /tmp/f1-20231/routemap_northbound.c:1272:
< WARNING: line over 80 characters
< #1276: FILE: /tmp/f1-20231/routemap_northbound.c:1276:
< WARNING: line over 80 characters
< #1278: FILE: /tmp/f1-20231/routemap_northbound.c:1278:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #364: FILE: /tmp/f1-20231/zebra_routemap.c:364:
< WARNING: line over 80 characters
< #388: FILE: /tmp/f1-20231/zebra_routemap.c:388:
< WARNING: line over 80 characters
< #405: FILE: /tmp/f1-20231/zebra_routemap.c:405:
< WARNING: line over 80 characters
< #429: FILE: /tmp/f1-20231/zebra_routemap.c:429:
< WARNING: line over 80 characters
< #446: FILE: /tmp/f1-20231/zebra_routemap.c:446:
< WARNING: line over 80 characters
< #470: FILE: /tmp/f1-20231/zebra_routemap.c:470:
< WARNING: line over 80 characters
< #485: FILE: /tmp/f1-20231/zebra_routemap.c:485:
< WARNING: line over 80 characters
< #506: FILE: /tmp/f1-20231/zebra_routemap.c:506:
< WARNING: line over 80 characters
< #521: FILE: /tmp/f1-20231/zebra_routemap.c:521:
< WARNING: line over 80 characters
< #541: FILE: /tmp/f1-20231/zebra_routemap.c:541:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-20231/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-20231/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-20231/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-20231/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-20231/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-20231/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-20231/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-20231/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-20231/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-20231/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-20231/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-20231/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-20231/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-20231/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-20231/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-20231/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 60 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#42: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:42:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, length,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:54:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#70: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:70:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#73: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:73:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#95: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:95:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "ipv6 address prefix-len",

WARNING: line over 80 characters
#107: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:107:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#124: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:124:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#149: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:149:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "source-instance", type,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:161:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#177: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:177:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#223: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:223:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#239: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:239:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#316: FILE: /tmp/f1-20231/zebra_routemap_nb_config.c:316:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-20231/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-20231/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-20231/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-20231/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-20231/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-20231/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-20231/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-20231/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-20231/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-20231/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-20231/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-20231/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 30, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Get source / Pull Request: Successful

Building Stage: Failed

Debian 10 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 10 amd64 build:
(see full PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/DEB10BUILD/ErrorLog/log_pytests.txt)

=================================== FAILURES ===================================
__________________________ TestFlag.test_exit_cleanly __________________________
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
    def _exit_cleanly(self):
        if self.exitcode != 0:
>           raise MultiTestFailure("Program did not terminate with exit code 0")
E           frrtest.MultiTestFailure: Program did not terminate with exit code 0
helpers/python/frrtest.py:90: MultiTestFailure
__________________ TestFlag.test_peer_advertisement_interval ___________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b37358>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
line = b'peer\\advertisement-interval'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\advertisement-interval' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
____________________ TestFlag.test_peer_capability_dynamic _____________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b77c88>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
line = b'peer\\capability dynamic'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\capability dynamic' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
________________ TestFlag.test_peer_capability_extended_nexthop ________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b82358>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

Debian 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI008BLD/ErrorLog/log_pytests.txt
Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI008BLD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 11 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI009BUILD/ErrorLog/log_pytests.txt
FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Fedora 29 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/F29BUILD/ErrorLog/log_pytests.txt
Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/F29BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U18ARM8BUILD/ErrorLog/log_pytests.txt

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

copying selected object files to avoid basename conflicts...
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef _FRR_OSPF6__ROUTEMAP_NB_H_
ospf6d/ospf6_routemap_nb.h:21:9: note: '_FRR_OSPF6_ROUTEMAP_NB_H_' is defined here; did you mean '_FRR_OSPF6__ROUTEMAP_NB_H_'?
#define _FRR_OSPF6_ROUTEMAP_NB_H_
1 error generated.
gmake[1]: *** [Makefile:8184: ospf6d/ospf6_routemap_nb.o] Error 1
In file included from ospf6d/ospf6_routemap_nb_config.c:24:

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

CentOS 7 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for CentOS 7 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI005BUILD/ErrorLog/log_pytests.txt
CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804AMD64/ErrorLog/log_pytests.txt
Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 12 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/FBSD12AMD64/ErrorLog/log_pytests.txt
FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/FBSD12AMD64/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm7 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI101BUILD/ErrorLog/log_pytests.txt

Debian 9 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 9 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI021BUILD/ErrorLog/log_pytests.txt
Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI021BUILD/config.status/config.status

Ubuntu 18.04 ppc64le build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 ppc64le build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804PPC64LEBUILD/ErrorLog/log_pytests.txt
Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804PPC64LEBUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for NetBSD 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI012BUILD/ErrorLog/log_pytests.txt
NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI014BUILD/ErrorLog/log_pytests.txt
Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm7 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U18ARM7BUILD/ErrorLog/log_pytests.txt

Ubuntu 16.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U16ARM8BUILD/ErrorLog/log_pytests.txt

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-15068/artifact/U2004AMD64BUILD/config.status/config.status

DejaGNU Unittests (make check) failed for Ubuntu 20.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U2004AMD64BUILD/ErrorLog/log_pytests.txt

Ubuntu 16.04 i386 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 i386 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1604I386/ErrorLog/log_pytests.txt
Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1604I386/config.status/config.status

Warnings Generated during build:

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

DejaGNU Unittests (make check) failed for Debian 10 amd64 build:
(see full PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/DEB10BUILD/ErrorLog/log_pytests.txt)

=================================== FAILURES ===================================
__________________________ TestFlag.test_exit_cleanly __________________________
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
    def _exit_cleanly(self):
        if self.exitcode != 0:
>           raise MultiTestFailure("Program did not terminate with exit code 0")
E           frrtest.MultiTestFailure: Program did not terminate with exit code 0
helpers/python/frrtest.py:90: MultiTestFailure
__________________ TestFlag.test_peer_advertisement_interval ___________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b37358>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
line = b'peer\\advertisement-interval'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\advertisement-interval' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
____________________ TestFlag.test_peer_capability_dynamic _____________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b77c88>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
self = <test_peer_attr.TestFlag object at 0x7f2b44c01400>
line = b'peer\\capability dynamic'
    def _onesimple(self, line):
        if type(line) is str:
            line = line.encode("utf8")
        idx = self.output.find(line)
        if idx != -1:
            self.output = self.output[idx + len(line) :]
        else:
>           raise MultiTestFailure("%r could not be found" % line)
E           frrtest.MultiTestFailure: b'peer\\capability dynamic' could not be found
helpers/python/frrtest.py:149: MultiTestFailure
________________ TestFlag.test_peer_capability_extended_nexthop ________________
self = <test_peer_attr.TestFlag object at 0x7f2b44b82358>
    def testfunction(self):
        self._run_tests()
        result = self.testresults[matchfunction]
        if result is not None:
>           frrsix.reraise(*result)
helpers/python/frrtest.py:108: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/python/frrsix.py:62: in reraise
    raise value
helpers/python/frrtest.py:82: in _run_tests
    test(self)
helpers/python/frrtest.py:100: in matchfunction
    method(self, *args, **kwargs)
helpers/python/frrtest.py:152: in _okfail
    self._onesimple(line)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

Debian 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI008BLD/ErrorLog/log_pytests.txt
Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI008BLD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 11 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI009BUILD/ErrorLog/log_pytests.txt
FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Fedora 29 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/F29BUILD/ErrorLog/log_pytests.txt
Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/F29BUILD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U18ARM8BUILD/ErrorLog/log_pytests.txt

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

copying selected object files to avoid basename conflicts...
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef _FRR_OSPF6__ROUTEMAP_NB_H_
ospf6d/ospf6_routemap_nb.h:21:9: note: '_FRR_OSPF6_ROUTEMAP_NB_H_' is defined here; did you mean '_FRR_OSPF6__ROUTEMAP_NB_H_'?
#define _FRR_OSPF6_ROUTEMAP_NB_H_
1 error generated.
gmake[1]: *** [Makefile:8184: ospf6d/ospf6_routemap_nb.o] Error 1
In file included from ospf6d/ospf6_routemap_nb_config.c:24:

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

CentOS 7 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for CentOS 7 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI005BUILD/ErrorLog/log_pytests.txt
CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804AMD64/ErrorLog/log_pytests.txt
Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804AMD64/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for FreeBSD 12 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/FBSD12AMD64/ErrorLog/log_pytests.txt
FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/FBSD12AMD64/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm7 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI101BUILD/ErrorLog/log_pytests.txt

Debian 9 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Debian 9 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI021BUILD/ErrorLog/log_pytests.txt
Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI021BUILD/config.status/config.status

Ubuntu 18.04 ppc64le build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 ppc64le build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804PPC64LEBUILD/ErrorLog/log_pytests.txt
Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1804PPC64LEBUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for NetBSD 8 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI012BUILD/ErrorLog/log_pytests.txt
NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI014BUILD/ErrorLog/log_pytests.txt
Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 18.04 arm7 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U18ARM7BUILD/ErrorLog/log_pytests.txt

Ubuntu 16.04 arm8 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 arm8 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U16ARM8BUILD/ErrorLog/log_pytests.txt

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-15068/artifact/U2004AMD64BUILD/config.status/config.status

DejaGNU Unittests (make check) failed for Ubuntu 20.04 amd64 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U2004AMD64BUILD/ErrorLog/log_pytests.txt

Ubuntu 16.04 i386 build: Failed (click for details)

DejaGNU Unittests (make check) failed for Ubuntu 16.04 i386 build
Pytest output suppressed for verbosity. See failure on other Distro above
see PyTest log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1604I386/ErrorLog/log_pytests.txt
Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15068/artifact/U1604I386/config.status/config.status

<stdin>:5368: trailing whitespace.
	return NB_OK; 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 48 issues
===============================================
< WARNING: line over 80 characters
< #4064: FILE: /tmp/f1-29085/bgp_routemap.c:4064:
< WARNING: line over 80 characters
< #4083: FILE: /tmp/f1-29085/bgp_routemap.c:4083:
< WARNING: line over 80 characters
< #4127: FILE: /tmp/f1-29085/bgp_routemap.c:4127:
< WARNING: line over 80 characters
< #4155: FILE: /tmp/f1-29085/bgp_routemap.c:4155:
< WARNING: line over 80 characters
< #4203: FILE: /tmp/f1-29085/bgp_routemap.c:4203:
< WARNING: line over 80 characters
< #4221: FILE: /tmp/f1-29085/bgp_routemap.c:4221:
< WARNING: line over 80 characters
< #4445: FILE: /tmp/f1-29085/bgp_routemap.c:4445:
< WARNING: line over 80 characters
< #4489: FILE: /tmp/f1-29085/bgp_routemap.c:4489:
< WARNING: line over 80 characters
< #4504: FILE: /tmp/f1-29085/bgp_routemap.c:4504:
< WARNING: line over 80 characters
< #4526: FILE: /tmp/f1-29085/bgp_routemap.c:4526:
< WARNING: line over 80 characters
< #4541: FILE: /tmp/f1-29085/bgp_routemap.c:4541:
< WARNING: line over 80 characters
< #4563: FILE: /tmp/f1-29085/bgp_routemap.c:4563:
< WARNING: line over 80 characters
< #4591: FILE: /tmp/f1-29085/bgp_routemap.c:4591:
< WARNING: line over 80 characters
< #4678: FILE: /tmp/f1-29085/bgp_routemap.c:4678:
< WARNING: line over 80 characters
< #4695: FILE: /tmp/f1-29085/bgp_routemap.c:4695:
< WARNING: line over 80 characters
< #4782: FILE: /tmp/f1-29085/bgp_routemap.c:4782:
< WARNING: line over 80 characters
< #4797: FILE: /tmp/f1-29085/bgp_routemap.c:4797:
< WARNING: line over 80 characters
< #4835: FILE: /tmp/f1-29085/bgp_routemap.c:4835:
< WARNING: line over 80 characters
< #5501: FILE: /tmp/f1-29085/bgp_routemap.c:5501:
< WARNING: line over 80 characters
< #5536: FILE: /tmp/f1-29085/bgp_routemap.c:5536:
< WARNING: line over 80 characters
< #6055: FILE: /tmp/f1-29085/bgp_routemap.c:6055:
< WARNING: line over 80 characters
< #6064: FILE: /tmp/f1-29085/bgp_routemap.c:6064:
< WARNING: line over 80 characters
< #6095: FILE: /tmp/f1-29085/bgp_routemap.c:6095:
< WARNING: line over 80 characters
< #6099: FILE: /tmp/f1-29085/bgp_routemap.c:6099:
Report for bgp_routemap_nb.c | 125 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-29085/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-29085/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-29085/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-29085/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-29085/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-29085/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-29085/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-29085/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-29085/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-29085/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-29085/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-29085/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-29085/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-29085/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-29085/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-29085/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-29085/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-29085/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-29085/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-29085/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-29085/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-29085/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-29085/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-29085/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-29085/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-29085/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-29085/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-29085/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-29085/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-29085/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-29085/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-29085/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-29085/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-29085/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-29085/bgp_routemap_nb.c:112:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-29085/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-29085/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-29085/bgp_routemap_nb.c:119:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-29085/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-29085/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-29085/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-29085/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-29085/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-29085/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-29085/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-29085/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-29085/bgp_routemap_nb.c:140:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#141: FILE: /tmp/f1-29085/bgp_routemap_nb.c:141:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#145: FILE: /tmp/f1-29085/bgp_routemap_nb.c:145:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard",

WARNING: line over 80 characters
#147: FILE: /tmp/f1-29085/bgp_routemap_nb.c:147:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-29085/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-29085/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-29085/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-29085/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-29085/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-29085/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-29085/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-29085/bgp_routemap_nb.c:167:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish,

WARNING: line over 80 characters
#171: FILE: /tmp/f1-29085/bgp_routemap_nb.c:171:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended",

WARNING: line over 80 characters
#173: FILE: /tmp/f1-29085/bgp_routemap_nb.c:173:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify,

WARNING: line over 80 characters
#174: FILE: /tmp/f1-29085/bgp_routemap_nb.c:174:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#178: FILE: /tmp/f1-29085/bgp_routemap_nb.c:178:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match",

WARNING: line over 80 characters
#180: FILE: /tmp/f1-29085/bgp_routemap_nb.c:180:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify,

WARNING: line over 80 characters
#181: FILE: /tmp/f1-29085/bgp_routemap_nb.c:181:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy,

WARNING: line over 80 characters
#185: FILE: /tmp/f1-29085/bgp_routemap_nb.c:185:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#187: FILE: /tmp/f1-29085/bgp_routemap_nb.c:187:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#191: FILE: /tmp/f1-29085/bgp_routemap_nb.c:191:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#193: FILE: /tmp/f1-29085/bgp_routemap_nb.c:193:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#194: FILE: /tmp/f1-29085/bgp_routemap_nb.c:194:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#198: FILE: /tmp/f1-29085/bgp_routemap_nb.c:198:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#200: FILE: /tmp/f1-29085/bgp_routemap_nb.c:200:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#201: FILE: /tmp/f1-29085/bgp_routemap_nb.c:201:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#205: FILE: /tmp/f1-29085/bgp_routemap_nb.c:205:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#207: FILE: /tmp/f1-29085/bgp_routemap_nb.c:207:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#208: FILE: /tmp/f1-29085/bgp_routemap_nb.c:208:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#212: FILE: /tmp/f1-29085/bgp_routemap_nb.c:212:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#214: FILE: /tmp/f1-29085/bgp_routemap_nb.c:214:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#215: FILE: /tmp/f1-29085/bgp_routemap_nb.c:215:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#219: FILE: /tmp/f1-29085/bgp_routemap_nb.c:219:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#221: FILE: /tmp/f1-29085/bgp_routemap_nb.c:221:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#222: FILE: /tmp/f1-29085/bgp_routemap_nb.c:222:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#226: FILE: /tmp/f1-29085/bgp_routemap_nb.c:226:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#228: FILE: /tmp/f1-29085/bgp_routemap_nb.c:228:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#229: FILE: /tmp/f1-29085/bgp_routemap_nb.c:229:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#233: FILE: /tmp/f1-29085/bgp_routemap_nb.c:233:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#235: FILE: /tmp/f1-29085/bgp_routemap_nb.c:235:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#236: FILE: /tmp/f1-29085/bgp_routemap_nb.c:236:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#240: FILE: /tmp/f1-29085/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

ERROR: spaces required around that '=' (ctx:WxV)
#240: FILE: /tmp/f1-29085/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",
 			       ^

WARNING: line over 80 characters
#242: FILE: /tmp/f1-29085/bgp_routemap_nb.c:242:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#243: FILE: /tmp/f1-29085/bgp_routemap_nb.c:243:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#247: FILE: /tmp/f1-29085/bgp_routemap_nb.c:247:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#249: FILE: /tmp/f1-29085/bgp_routemap_nb.c:249:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#250: FILE: /tmp/f1-29085/bgp_routemap_nb.c:250:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#254: FILE: /tmp/f1-29085/bgp_routemap_nb.c:254:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#256: FILE: /tmp/f1-29085/bgp_routemap_nb.c:256:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#257: FILE: /tmp/f1-29085/bgp_routemap_nb.c:257:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#261: FILE: /tmp/f1-29085/bgp_routemap_nb.c:261:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#263: FILE: /tmp/f1-29085/bgp_routemap_nb.c:263:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#264: FILE: /tmp/f1-29085/bgp_routemap_nb.c:264:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#268: FILE: /tmp/f1-29085/bgp_routemap_nb.c:268:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#270: FILE: /tmp/f1-29085/bgp_routemap_nb.c:270:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#271: FILE: /tmp/f1-29085/bgp_routemap_nb.c:271:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#275: FILE: /tmp/f1-29085/bgp_routemap_nb.c:275:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#277: FILE: /tmp/f1-29085/bgp_routemap_nb.c:277:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#278: FILE: /tmp/f1-29085/bgp_routemap_nb.c:278:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#282: FILE: /tmp/f1-29085/bgp_routemap_nb.c:282:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#284: FILE: /tmp/f1-29085/bgp_routemap_nb.c:284:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#285: FILE: /tmp/f1-29085/bgp_routemap_nb.c:285:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#289: FILE: /tmp/f1-29085/bgp_routemap_nb.c:289:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#291: FILE: /tmp/f1-29085/bgp_routemap_nb.c:291:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#292: FILE: /tmp/f1-29085/bgp_routemap_nb.c:292:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#296: FILE: /tmp/f1-29085/bgp_routemap_nb.c:296:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#298: FILE: /tmp/f1-29085/bgp_routemap_nb.c:298:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#299: FILE: /tmp/f1-29085/bgp_routemap_nb.c:299:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#303: FILE: /tmp/f1-29085/bgp_routemap_nb.c:303:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#305: FILE: /tmp/f1-29085/bgp_routemap_nb.c:305:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#306: FILE: /tmp/f1-29085/bgp_routemap_nb.c:306:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#310: FILE: /tmp/f1-29085/bgp_routemap_nb.c:310:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#312: FILE: /tmp/f1-29085/bgp_routemap_nb.c:312:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#313: FILE: /tmp/f1-29085/bgp_routemap_nb.c:313:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#317: FILE: /tmp/f1-29085/bgp_routemap_nb.c:317:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#319: FILE: /tmp/f1-29085/bgp_routemap_nb.c:319:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#320: FILE: /tmp/f1-29085/bgp_routemap_nb.c:320:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#324: FILE: /tmp/f1-29085/bgp_routemap_nb.c:324:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#326: FILE: /tmp/f1-29085/bgp_routemap_nb.c:326:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#327: FILE: /tmp/f1-29085/bgp_routemap_nb.c:327:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#331: FILE: /tmp/f1-29085/bgp_routemap_nb.c:331:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#333: FILE: /tmp/f1-29085/bgp_routemap_nb.c:333:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#334: FILE: /tmp/f1-29085/bgp_routemap_nb.c:334:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#338: FILE: /tmp/f1-29085/bgp_routemap_nb.c:338:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#340: FILE: /tmp/f1-29085/bgp_routemap_nb.c:340:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#341: FILE: /tmp/f1-29085/bgp_routemap_nb.c:341:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#345: FILE: /tmp/f1-29085/bgp_routemap_nb.c:345:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#347: FILE: /tmp/f1-29085/bgp_routemap_nb.c:347:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#348: FILE: /tmp/f1-29085/bgp_routemap_nb.c:348:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-29085/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-29085/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-29085/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-29085/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-29085/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-29085/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-29085/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-29085/bgp_routemap_nb.c:368:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#372: FILE: /tmp/f1-29085/bgp_routemap_nb.c:372:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#374: FILE: /tmp/f1-29085/bgp_routemap_nb.c:374:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#375: FILE: /tmp/f1-29085/bgp_routemap_nb.c:375:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#379: FILE: /tmp/f1-29085/bgp_routemap_nb.c:379:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#381: FILE: /tmp/f1-29085/bgp_routemap_nb.c:381:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#382: FILE: /tmp/f1-29085/bgp_routemap_nb.c:382:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#386: FILE: /tmp/f1-29085/bgp_routemap_nb.c:386:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num",

WARNING: line over 80 characters
#388: FILE: /tmp/f1-29085/bgp_routemap_nb.c:388:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify,

WARNING: line over 80 characters
#389: FILE: /tmp/f1-29085/bgp_routemap_nb.c:389:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy,

WARNING: line over 80 characters
#393: FILE: /tmp/f1-29085/bgp_routemap_nb.c:393:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended",

WARNING: line over 80 characters
#395: FILE: /tmp/f1-29085/bgp_routemap_nb.c:395:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify,

WARNING: line over 80 characters
#396: FILE: /tmp/f1-29085/bgp_routemap_nb.c:396:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#400: FILE: /tmp/f1-29085/bgp_routemap_nb.c:400:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#402: FILE: /tmp/f1-29085/bgp_routemap_nb.c:402:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#403: FILE: /tmp/f1-29085/bgp_routemap_nb.c:403:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,
Report for bgp_routemap_nb_config.c | 204 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:28:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:31:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#53: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:53:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "local-preference",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:66:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#82: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:82:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#136: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:136:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#190: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:190:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#243: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#297: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:297:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#300: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:300:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#335: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:335:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#351: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:351:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#405: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:405:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#408: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:408:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#443: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:443:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#459: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:459:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#485: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:485:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "peer", "local",

WARNING: line over 80 characters
#515: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:515:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: suspect code indent for conditional statements (16, 16)
#546: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:546:
+		} else if (IS_MATCH_MAC_LIST(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#560: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:560:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "ip route-source",

WARNING: suspect code indent for conditional statements (16, 16)
#562: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:562:
+		} else if (IS_MATCH_ROUTE_SRC_PL(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#599: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:599:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num

WARNING: line over 80 characters
#637: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:637:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(

WARNING: line over 80 characters
#653: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:653:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended

WARNING: line over 80 characters
#656: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:656:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(

WARNING: line over 80 characters
#691: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:691:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(

WARNING: line over 80 characters
#707: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:707:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#710: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:710:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#730: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:730:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn default-route",

WARNING: line over 80 characters
#743: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:743:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#759: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:759:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#813: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:813:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#838: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:838:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn route-type", type,

WARNING: line over 80 characters
#851: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:851:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#867: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:867:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#870: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:870:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#905: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:905:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#921: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:921:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard

WARNING: line over 80 characters
#924: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:924:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(

WARNING: line over 80 characters
#978: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:978:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num

WARNING: line over 80 characters
#981: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:981:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(

WARNING: line over 80 characters
#996: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:996:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(

WARNING: line over 80 characters
#1012: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1012:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match

WARNING: line over 80 characters
#1015: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1015:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(

ERROR: code indent should use tabs where possible
#1024: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: please, no spaces at the start of a line
#1024: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: line over 80 characters
#1030: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1030:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(

WARNING: line over 80 characters
#1046: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1046:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended

WARNING: line over 80 characters
#1049: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1049:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(

WARNING: line over 80 characters
#1104: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1104:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended

WARNING: line over 80 characters
#1107: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1107:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(

WARNING: line over 80 characters
#1122: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1122:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(

WARNING: line over 80 characters
#1138: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1138:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match

WARNING: line over 80 characters
#1141: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1141:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(

WARNING: line over 80 characters
#1156: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1156:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(

WARNING: line over 80 characters
#1172: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1172:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1229: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1229:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1232: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1232:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1247: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1247:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1264: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1264:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1267: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1267:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1282: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1282:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1298: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1298:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1323: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1323:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1352: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1352:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1377: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1377:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1407: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1458: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1458:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1483: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1483:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity rt", type);

WARNING: line over 80 characters
#1511: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1511:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1536: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1536:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity soo", type);

WARNING: line over 80 characters
#1564: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1564:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1615: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1615:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1667: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1667:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

ERROR: trailing whitespace
#1733: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1733:
+^Ireturn NB_OK; $

WARNING: line over 80 characters
#1738: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1738:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1771: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1771:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, NULL);

WARNING: line over 80 characters
#1800: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1800:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1851: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1851:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1875: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1875:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "local-preference", type);

WARNING: line over 80 characters
#1902: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1902:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1953: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:1953:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#2005: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2005:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

ERROR: code indent should use tabs where possible
#2042: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: please, no spaces at the start of a line
#2042: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: line over 80 characters
#2056: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2056:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#2107: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2107:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#2158: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2158:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2183: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2183:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", type);

WARNING: line over 80 characters
#2211: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2211:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2239: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2239:
+		snprintf(argstr, (strlen(value) + strlen("last-as") + 2), "last-as %s",

WARNING: line over 80 characters
#2242: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2242:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", argstr);

WARNING: line over 80 characters
#2272: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2272:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2297: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2297:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path exclude", type);

WARNING: line over 80 characters
#2325: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2325:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2350: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2350:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "community", "none");

WARNING: line over 80 characters
#2382: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2382:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2435: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2435:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2461: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2461:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community",

WARNING: line over 80 characters
#2494: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2494:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2519: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2519:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community", type);

WARNING: line over 80 characters
#2547: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2547:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2577: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2577:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2595: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2595:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2612: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2612:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

ERROR: code indent should use tabs where possible
#2626: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2626: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: line over 80 characters
#2630: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2630:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

ERROR: code indent should use tabs where possible
#2642: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2642: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: line over 80 characters
#2647: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2647:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num

WARNING: line over 80 characters
#2707: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2707:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended

WARNING: line over 80 characters
#2769: FILE: /tmp/f1-29085/bgp_routemap_nb_config.c:2769:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name
Report for bgp_routemap_nb.h | 160 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/bgp_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/bgp_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-29085/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-29085/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-29085/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-29085/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-29085/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-29085/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-29085/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-29085/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-29085/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-29085/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-29085/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-29085/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-29085/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-29085/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-29085/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-29085/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-29085/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-29085/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-29085/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-29085/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-29085/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-29085/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-29085/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-29085/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-29085/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-29085/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-29085/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-29085/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-29085/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-29085/bgp_routemap_nb.h:60:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-29085/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-29085/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-29085/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-29085/bgp_routemap_nb.h:64:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-29085/bgp_routemap_nb.h:65:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-29085/bgp_routemap_nb.h:66:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-29085/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-29085/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-29085/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-29085/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-29085/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-29085/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-29085/bgp_routemap_nb.h:73:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-29085/bgp_routemap_nb.h:74:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-29085/bgp_routemap_nb.h:75:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-29085/bgp_routemap_nb.h:76:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-29085/bgp_routemap_nb.h:77:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-29085/bgp_routemap_nb.h:78:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-29085/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-29085/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-29085/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-29085/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-29085/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-29085/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-29085/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-29085/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-29085/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-29085/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-29085/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-29085/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-29085/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-29085/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-29085/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-29085/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-29085/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-29085/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-29085/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-29085/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-29085/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-29085/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-29085/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-29085/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-29085/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-29085/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-29085/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-29085/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-29085/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-29085/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-29085/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-29085/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-29085/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-29085/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-29085/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-29085/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-29085/bgp_routemap_nb.h:115:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-29085/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-29085/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-29085/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-29085/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-29085/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-29085/bgp_routemap_nb.h:121:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-29085/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-29085/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-29085/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-29085/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-29085/bgp_routemap_nb.h:126:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-29085/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-29085/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-29085/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-29085/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-29085/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:38:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-29085/ospf6_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 12 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#79: FILE: /tmp/f1-29085/ospf6_routemap_nb_config.c:79:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#103: FILE: /tmp/f1-29085/ospf6_routemap_nb_config.c:103:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "forwarding-address", ipv6_addr);
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/ospf6_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/ospf6_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-29085/ospf6_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-29085/ospf_routemap_nb.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-29085/ospf_routemap_nb.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-29085/ospf_routemap_nb.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-29085/ospf_routemap_nb.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-29085/ospf_routemap_nb.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-29085/ospf_routemap_nb.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-29085/ospf_routemap_nb.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-29085/ospf_routemap_nb.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb_config.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-29085/ospf_routemap_nb_config.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/ospf_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/ospf_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-29085/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_northbound.c | 32 issues
===============================================
WARNING: line over 80 characters
#8: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:8:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#46: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:46:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#65: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:65:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#67: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:67:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:68:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#72: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:72:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#74: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:74:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-29085/ospf_routemap_northbound.c:75:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for routemap_cli.c | 224 issues
===============================================
< WARNING: line over 80 characters
< #302: FILE: /tmp/f1-29085/routemap_cli.c:302:
< WARNING: line over 80 characters
< #360: FILE: /tmp/f1-29085/routemap_cli.c:360:
< WARNING: line over 80 characters
< #383: FILE: /tmp/f1-29085/routemap_cli.c:383:
< WARNING: line over 80 characters
< #401: FILE: /tmp/f1-29085/routemap_cli.c:401:
< WARNING: line over 80 characters
< #424: FILE: /tmp/f1-29085/routemap_cli.c:424:
< WARNING: line over 80 characters
< #441: FILE: /tmp/f1-29085/routemap_cli.c:441:
< WARNING: line over 80 characters
< #461: FILE: /tmp/f1-29085/routemap_cli.c:461:
< WARNING: line over 80 characters
< #477: FILE: /tmp/f1-29085/routemap_cli.c:477:
< WARNING: line over 80 characters
< #498: FILE: /tmp/f1-29085/routemap_cli.c:498:
< WARNING: line over 80 characters
< #554: FILE: /tmp/f1-29085/routemap_cli.c:554:
< WARNING: line over 80 characters
< #574: FILE: /tmp/f1-29085/routemap_cli.c:574:
< ERROR: do not use assignment in if condition
< #665: FILE: /tmp/f1-29085/routemap_cli.c:665:
< ERROR: do not use assignment in if condition
< #669: FILE: /tmp/f1-29085/routemap_cli.c:669:
< ERROR: do not use assignment in if condition
< #674: FILE: /tmp/f1-29085/routemap_cli.c:674:
< WARNING: line over 80 characters
< #677: FILE: /tmp/f1-29085/routemap_cli.c:677:
< WARNING: line over 80 characters
< #725: FILE: /tmp/f1-29085/routemap_cli.c:725:
< WARNING: line over 80 characters
< #730: FILE: /tmp/f1-29085/routemap_cli.c:730:
< WARNING: line over 80 characters
< #735: FILE: /tmp/f1-29085/routemap_cli.c:735:
< WARNING: line over 80 characters
< #740: FILE: /tmp/f1-29085/routemap_cli.c:740:
< WARNING: line over 80 characters
< #745: FILE: /tmp/f1-29085/routemap_cli.c:745:
< WARNING: line over 80 characters
< #750: FILE: /tmp/f1-29085/routemap_cli.c:750:
< WARNING: line over 80 characters
< #755: FILE: /tmp/f1-29085/routemap_cli.c:755:
< WARNING: line over 80 characters
< #760: FILE: /tmp/f1-29085/routemap_cli.c:760:
< WARNING: line over 80 characters
< #765: FILE: /tmp/f1-29085/routemap_cli.c:765:
< WARNING: line over 80 characters
< #770: FILE: /tmp/f1-29085/routemap_cli.c:770:
< ERROR: do not use assignment in if condition
< #773: FILE: /tmp/f1-29085/routemap_cli.c:773:
< WARNING: line over 80 characters
< #775: FILE: /tmp/f1-29085/routemap_cli.c:775:
< ERROR: do not use assignment in if condition
< #778: FILE: /tmp/f1-29085/routemap_cli.c:778:
< WARNING: line over 80 characters
< #781: FILE: /tmp/f1-29085/routemap_cli.c:781:
< ERROR: do not use assignment in if condition
< #784: FILE: /tmp/f1-29085/routemap_cli.c:784:
< WARNING: line over 80 characters
< #787: FILE: /tmp/f1-29085/routemap_cli.c:787:
< ERROR: do not use assignment in if condition
< #790: FILE: /tmp/f1-29085/routemap_cli.c:790:
< WARNING: line over 80 characters
< #793: FILE: /tmp/f1-29085/routemap_cli.c:793:
< WARNING: line over 80 characters
< #802: FILE: /tmp/f1-29085/routemap_cli.c:802:
< WARNING: line over 80 characters
< #807: FILE: /tmp/f1-29085/routemap_cli.c:807:
< WARNING: line over 80 characters
< #814: FILE: /tmp/f1-29085/routemap_cli.c:814:
< WARNING: line over 80 characters
< #819: FILE: /tmp/f1-29085/routemap_cli.c:819:
< WARNING: line over 80 characters
< #824: FILE: /tmp/f1-29085/routemap_cli.c:824:
< WARNING: line over 80 characters
< #829: FILE: /tmp/f1-29085/routemap_cli.c:829:
< ERROR: do not use assignment in if condition
< #832: FILE: /tmp/f1-29085/routemap_cli.c:832:
< WARNING: line over 80 characters
< #834: FILE: /tmp/f1-29085/routemap_cli.c:834:
< ERROR: do not use assignment in if condition
< #837: FILE: /tmp/f1-29085/routemap_cli.c:837:
< WARNING: line over 80 characters
< #840: FILE: /tmp/f1-29085/routemap_cli.c:840:
< ERROR: do not use assignment in if condition
< #843: FILE: /tmp/f1-29085/routemap_cli.c:843:
< WARNING: line over 80 characters
< #846: FILE: /tmp/f1-29085/routemap_cli.c:846:
< WARNING: line over 80 characters
< #857: FILE: /tmp/f1-29085/routemap_cli.c:857:
< ERROR: do not use assignment in if condition
< #860: FILE: /tmp/f1-29085/routemap_cli.c:860:
< WARNING: line over 80 characters
< #862: FILE: /tmp/f1-29085/routemap_cli.c:862:
< ERROR: do not use assignment in if condition
< #865: FILE: /tmp/f1-29085/routemap_cli.c:865:
< WARNING: line over 80 characters
< #868: FILE: /tmp/f1-29085/routemap_cli.c:868:
< ERROR: do not use assignment in if condition
< #871: FILE: /tmp/f1-29085/routemap_cli.c:871:
< WARNING: line over 80 characters
< #874: FILE: /tmp/f1-29085/routemap_cli.c:874:
< ERROR: do not use assignment in if condition
< #883: FILE: /tmp/f1-29085/routemap_cli.c:883:
< WARNING: line over 80 characters
< #885: FILE: /tmp/f1-29085/routemap_cli.c:885:
< WARNING: line over 80 characters
< #892: FILE: /tmp/f1-29085/routemap_cli.c:892:
< ERROR: do not use assignment in if condition
< #898: FILE: /tmp/f1-29085/routemap_cli.c:898:
< WARNING: line over 80 characters
< #901: FILE: /tmp/f1-29085/routemap_cli.c:901:
< WARNING: line over 80 characters
< #908: FILE: /tmp/f1-29085/routemap_cli.c:908:
< ERROR: do not use assignment in if condition
< #915: FILE: /tmp/f1-29085/routemap_cli.c:915:
< WARNING: line over 80 characters
< #918: FILE: /tmp/f1-29085/routemap_cli.c:918:
< WARNING: line over 80 characters
< #925: FILE: /tmp/f1-29085/routemap_cli.c:925:
< ERROR: do not use assignment in if condition
< #936: FILE: /tmp/f1-29085/routemap_cli.c:936:
< WARNING: line over 80 characters
< #938: FILE: /tmp/f1-29085/routemap_cli.c:938:
< WARNING: line over 80 characters
< #945: FILE: /tmp/f1-29085/routemap_cli.c:945:
< ERROR: do not use assignment in if condition
< #952: FILE: /tmp/f1-29085/routemap_cli.c:952:
< WARNING: line over 80 characters
< #955: FILE: /tmp/f1-29085/routemap_cli.c:955:
< WARNING: line over 80 characters
< #962: FILE: /tmp/f1-29085/routemap_cli.c:962:
< ERROR: do not use assignment in if condition
< #970: FILE: /tmp/f1-29085/routemap_cli.c:970:
< WARNING: line over 80 characters
< #973: FILE: /tmp/f1-29085/routemap_cli.c:973:
< WARNING: line over 80 characters
< #980: FILE: /tmp/f1-29085/routemap_cli.c:980:
< ERROR: do not use assignment in if condition
< #992: FILE: /tmp/f1-29085/routemap_cli.c:992:
< WARNING: line over 80 characters
< #994: FILE: /tmp/f1-29085/routemap_cli.c:994:
< ERROR: do not use assignment in if condition
< #997: FILE: /tmp/f1-29085/routemap_cli.c:997:
< WARNING: line over 80 characters
< #1000: FILE: /tmp/f1-29085/routemap_cli.c:1000:
< ERROR: do not use assignment in if condition
< #1003: FILE: /tmp/f1-29085/routemap_cli.c:1003:
< WARNING: line over 80 characters
< #1006: FILE: /tmp/f1-29085/routemap_cli.c:1006:
< WARNING: line over 80 characters
< #1017: FILE: /tmp/f1-29085/routemap_cli.c:1017:
< WARNING: line over 80 characters
< #1022: FILE: /tmp/f1-29085/routemap_cli.c:1022:
< WARNING: line over 80 characters
< #1243: FILE: /tmp/f1-29085/routemap_cli.c:1243:
< WARNING: line over 80 characters
< #1247: FILE: /tmp/f1-29085/routemap_cli.c:1247:
< WARNING: line over 80 characters
< #1252: FILE: /tmp/f1-29085/routemap_cli.c:1252:
< WARNING: line over 80 characters
< #1257: FILE: /tmp/f1-29085/routemap_cli.c:1257:
< WARNING: line over 80 characters
< #1262: FILE: /tmp/f1-29085/routemap_cli.c:1262:
< WARNING: line over 80 characters
< #1277: FILE: /tmp/f1-29085/routemap_cli.c:1277:
< WARNING: line over 80 characters
< #1282: FILE: /tmp/f1-29085/routemap_cli.c:1282:
< WARNING: line over 80 characters
< #1287: FILE: /tmp/f1-29085/routemap_cli.c:1287:
< WARNING: line over 80 characters
< #1299: FILE: /tmp/f1-29085/routemap_cli.c:1299:
< ERROR: do not use assignment in if condition
< #1302: FILE: /tmp/f1-29085/routemap_cli.c:1302:
< WARNING: line over 80 characters
< #1304: FILE: /tmp/f1-29085/routemap_cli.c:1304:
< ERROR: do not use assignment in if condition
< #1307: FILE: /tmp/f1-29085/routemap_cli.c:1307:
< WARNING: line over 80 characters
< #1310: FILE: /tmp/f1-29085/routemap_cli.c:1310:
< ERROR: do not use assignment in if condition
< #1313: FILE: /tmp/f1-29085/routemap_cli.c:1313:
< WARNING: line over 80 characters
< #1316: FILE: /tmp/f1-29085/routemap_cli.c:1316:
< ERROR: do not use assignment in if condition
< #1325: FILE: /tmp/f1-29085/routemap_cli.c:1325:
< WARNING: line over 80 characters
< #1327: FILE: /tmp/f1-29085/routemap_cli.c:1327:
< ERROR: do not use assignment in if condition
< #1330: FILE: /tmp/f1-29085/routemap_cli.c:1330:
< WARNING: line over 80 characters
< #1333: FILE: /tmp/f1-29085/routemap_cli.c:1333:
< ERROR: do not use assignment in if condition
< #1336: FILE: /tmp/f1-29085/routemap_cli.c:1336:
< WARNING: line over 80 characters
< #1339: FILE: /tmp/f1-29085/routemap_cli.c:1339:
< WARNING: line over 80 characters
< #1349: FILE: /tmp/f1-29085/routemap_cli.c:1349:
< WARNING: line over 80 characters
< #1353: FILE: /tmp/f1-29085/routemap_cli.c:1353:
< WARNING: line over 80 characters
< #1358: FILE: /tmp/f1-29085/routemap_cli.c:1358:
< WARNING: line over 80 characters
< #1364: FILE: /tmp/f1-29085/routemap_cli.c:1364:
< WARNING: line over 80 characters
< #1368: FILE: /tmp/f1-29085/routemap_cli.c:1368:
< WARNING: line over 80 characters
< #1373: FILE: /tmp/f1-29085/routemap_cli.c:1373:
< WARNING: line over 80 characters
< #1380: FILE: /tmp/f1-29085/routemap_cli.c:1380:
< WARNING: line over 80 characters
< #1385: FILE: /tmp/f1-29085/routemap_cli.c:1385:
< WARNING: line over 80 characters
< #1390: FILE: /tmp/f1-29085/routemap_cli.c:1390:
< WARNING: line over 80 characters
< #1393: FILE: /tmp/f1-29085/routemap_cli.c:1393:
< WARNING: line over 80 characters
< #1398: FILE: /tmp/f1-29085/routemap_cli.c:1398:
< WARNING: line over 80 characters
< #1402: FILE: /tmp/f1-29085/routemap_cli.c:1402:
< WARNING: line over 80 characters
< #1406: FILE: /tmp/f1-29085/routemap_cli.c:1406:
Report for routemap_northbound.c | 12 issues
===============================================
< WARNING: line over 80 characters
< #1265: FILE: /tmp/f1-29085/routemap_northbound.c:1265:
< WARNING: line over 80 characters
< #1269: FILE: /tmp/f1-29085/routemap_northbound.c:1269:
< WARNING: line over 80 characters
< #1271: FILE: /tmp/f1-29085/routemap_northbound.c:1271:
< WARNING: line over 80 characters
< #1272: FILE: /tmp/f1-29085/routemap_northbound.c:1272:
< WARNING: line over 80 characters
< #1276: FILE: /tmp/f1-29085/routemap_northbound.c:1276:
< WARNING: line over 80 characters
< #1278: FILE: /tmp/f1-29085/routemap_northbound.c:1278:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #364: FILE: /tmp/f1-29085/zebra_routemap.c:364:
< WARNING: line over 80 characters
< #388: FILE: /tmp/f1-29085/zebra_routemap.c:388:
< WARNING: line over 80 characters
< #405: FILE: /tmp/f1-29085/zebra_routemap.c:405:
< WARNING: line over 80 characters
< #429: FILE: /tmp/f1-29085/zebra_routemap.c:429:
< WARNING: line over 80 characters
< #446: FILE: /tmp/f1-29085/zebra_routemap.c:446:
< WARNING: line over 80 characters
< #470: FILE: /tmp/f1-29085/zebra_routemap.c:470:
< WARNING: line over 80 characters
< #485: FILE: /tmp/f1-29085/zebra_routemap.c:485:
< WARNING: line over 80 characters
< #506: FILE: /tmp/f1-29085/zebra_routemap.c:506:
< WARNING: line over 80 characters
< #521: FILE: /tmp/f1-29085/zebra_routemap.c:521:
< WARNING: line over 80 characters
< #541: FILE: /tmp/f1-29085/zebra_routemap.c:541:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-29085/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-29085/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-29085/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-29085/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-29085/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-29085/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-29085/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-29085/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-29085/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-29085/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-29085/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-29085/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-29085/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-29085/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-29085/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-29085/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 60 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#42: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:42:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, length,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:54:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#70: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:70:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#73: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:73:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#95: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:95:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "ipv6 address prefix-len",

WARNING: line over 80 characters
#107: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:107:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#124: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:124:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#149: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:149:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "source-instance", type,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:161:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#177: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:177:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#223: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:223:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#239: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:239:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#316: FILE: /tmp/f1-29085/zebra_routemap_nb_config.c:316:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-29085/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-29085/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-29085/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-29085/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-29085/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-29085/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-29085/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-29085/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-29085/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-29085/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-29085/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-29085/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 30, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result 10/30/2020
Date 11:13:06
Start 11:21:51
Finish 08:45
Run-Time 61
Total 36
Pass 25
Fail 0
Valgrind-Errors 3
Valgrind-Loss 748
Details vncregress-2020-10-30-11:13:06.txt
Log autoscript-2020-10-30-11:14:11.log.bz2
Memory
FAILURE git merge/7419 a48d869 Autoscript

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 10, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result 11/10/2020
Date 08:26:00
Start 08:34:43
Finish 08:43
Run-Time 61
Total 36
Pass 25
Fail 0
Valgrind-Errors 3
Valgrind-Loss 757
Details vncregress-2020-11-10-08:26:00.txt
Log autoscript-2020-11-10-08:27:03.log.bz2
Memory
FAILURE git merge/7419 af84bad Autoscript

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 10, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

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

copying selected object files to avoid basename conflicts...
In file included from ospf6d/ospf6_routemap_nb.c:22:
ospf6d/ospf6_routemap_nb.h:20:9: error: '_FRR_OSPF6__ROUTEMAP_NB_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef _FRR_OSPF6__ROUTEMAP_NB_H_
ospf6d/ospf6_routemap_nb.h:21:9: note: '_FRR_OSPF6_ROUTEMAP_NB_H_' is defined here; did you mean '_FRR_OSPF6__ROUTEMAP_NB_H_'?
#define _FRR_OSPF6_ROUTEMAP_NB_H_
1 error generated.
gmake[1]: *** [Makefile:8184: ospf6d/ospf6_routemap_nb.o] Error 1
In file included from ospf6d/ospf6_routemap_nb_config.c:24:

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

Successful on other platforms/tests
  • NetBSD 8 amd64 build
  • Ubuntu 16.04 i386 build
  • Ubuntu 16.04 amd64 build
  • Ubuntu 18.04 amd64 build
  • Ubuntu 18.04 arm8 build
  • Ubuntu 18.04 arm7 build
  • CentOS 7 amd64 build
  • Debian 9 amd64 build
  • Debian 8 amd64 build
  • Ubuntu 20.04 amd64 build
  • Ubuntu 18.04 ppc64le build
  • Ubuntu 16.04 arm8 build
  • FreeBSD 11 amd64 build
  • Fedora 29 amd64 build
  • CentOS 8 amd64 build
  • Ubuntu 16.04 arm7 build
  • Debian 10 amd64 build
  • FreeBSD 12 amd64 build

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15336/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 6.0-2 -> 7.6-dev-20201110-05-gaf84bad47-0 (missing) -> 7.6-dev-20201110-05-gaf84bad47-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201110-05-gaf84bad47-0 (missing) -> 7.6-dev-20201110-05-gaf84bad47-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201110-05-gaf84bad47-0 (missing) -> 7.6-dev-20201110-05-gaf84bad47-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201110-05-gaf84bad47-0 (missing) -> 7.6-dev-20201110-05-gaf84bad47-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201110-05-gaf84bad47-0 (missing) -> 7.6-dev-20201110-05-gaf84bad47-0~deb10u1

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 10, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result 11/10/2020
Date 08:46:02
Start 08:54:39
Finish 08:37
Run-Time 61
Total 36
Pass 25
Fail 0
Valgrind-Errors 3
Valgrind-Loss 757
Details vncregress-2020-11-10-08:46:02.txt
Log autoscript-2020-11-10-08:47:00.log.bz2
Memory
FAILURE git merge/7419 75742e6 Autoscript

For details, please contact louberger

@louberger
Copy link
Member

seeing yang related issues in bgp startup...

2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@" "@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@
" "@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp-types@" "@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp-types@
" "@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common-structure@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common-structure@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common-multiprotocol@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-common-multiprotocol@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-neighbor@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-neighbor@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-peer-group@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-peer-group@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-bmp@"not embedded, trying external file
2020/11/10 08:49:53 BGP: [EC 100663318] YANG model "frr-bgp@2019-12-03" "frr-bgp-bmp@
"not embedded, trying external file
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "global-group-use-multiple-paths". (/frr-bgp:{grouping}[mp-afi-unicast-common]/global-group-use-multiple-paths)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "global-group-use-multiple-paths". (/frr-bgp:{grouping}[mp-afi-unicast-common]/global-group-use-multiple-paths)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "global-redistribute". (/frr-bgp:{grouping}[mp-afi-unicast-common]/global-redistribute)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "global-redistribute". (/frr-bgp:{grouping}[mp-afi-unicast-common]/global-redistribute)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "admin-distance". (/frr-bgp:{grouping}[mp-afi-unicast-common]/admin-distance)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "admin-distance". (/frr-bgp:{grouping}[mp-afi-unicast-common]/admin-distance)
2020/11/10 08:49:53 BGP: libyang: Failed to resolve uses "med-config". (/frr-routing:routing/control-plane-protocols/control-plane-protocol/frr-bgp:bgp/frr-bgp:global/frr-bgp:med-config)
...

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 11, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7419 7c91fc7
Date 11/11/2020
Start 01:56:00
Finish 02:32:38
Run-Time 36:38
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-11-01:56:00.txt
Log autoscript-2020-11-11-01:56:56.log.bz2
Memory 494 479 418

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 11, 2020

Continuous Integration Result: SUCCESSFUL

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

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

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-15363/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

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

Copy link
Member

@rzalamena rzalamena left a comment

Choose a reason for hiding this comment

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

Seems like this is a clone of #6369 , should we close the old PR?

Also I think this PR got too big... maybe we should split it to help testing/merging faster? It will take a while to test all daemons each iteration of fixes here, maybe a topotest could help reduce the burden.

bgpd/bgp_routemap.c Outdated Show resolved Hide resolved
lib/routemap.h Show resolved Hide resolved
lib/routemap_cli.c Outdated Show resolved Hide resolved
lib/routemap_cli.c Outdated Show resolved Hide resolved
@Spantik Spantik added the yang label Nov 12, 2020
@patrasar
Copy link
Contributor Author

Working on the comments.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Dec 3, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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 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-15807/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4939: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CENTOS8BUILD/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-15807/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-15807/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7746: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4391: 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-15807/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-15807/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed
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-15807/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/usr/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15807/frr-source'
gmake: *** [Makefile:4939: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/FBSD12AMD64/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-15807/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror,-Wunused-variable]
1 error generated.
gmake[1]: *** [Makefile:8299: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
gmake: *** [Makefile:4938: all] Error 2

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/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-15807/artifact/DEB10BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8301: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4940: all] Error 2

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

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CI012BUILD/ErrorLog/log_make.txt)

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14088: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:14098: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:14108: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

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

Ubuntu 16.04 amd64 build: Failed (click for details)

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

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: 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-15807/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.15807/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-15807/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI009BUILD/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-15807/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U18ARM7BUILD/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-15807/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: recipe for target 'all' failed

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

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: 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-15807/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI021BUILD/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-15807/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-15807/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8301: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4940: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/U2004AMD64BUILD/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-15807/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U16ARM8BUILD/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-15807/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: recipe for target 'all' failed

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

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-15807/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4939: all] Error 2

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

Successful on other platforms/tests
  • CentOS 7 amd64 build

Warnings Generated during build:

Checkout code: Successful with additional warnings
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-15807/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4939: all] Error 2

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CENTOS8BUILD/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-15807/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-15807/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7746: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4391: 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-15807/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-15807/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed
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-15807/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/usr/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.15807/frr-source'
gmake: *** [Makefile:4939: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/FBSD12AMD64/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-15807/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake  all-am
gmake[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror,-Wunused-variable]
1 error generated.
gmake[1]: *** [Makefile:8299: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
gmake: *** [Makefile:4938: all] Error 2

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/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-15807/artifact/DEB10BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8301: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4940: all] Error 2

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

NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/CI012BUILD/ErrorLog/log_make.txt)

ld: warning: libintl.so.1, needed by /usr/pkg/lib/libpython3.7.so, may conflict with libintl.so.8
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:14088: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:14098: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:14108: warning: @image file `frr-figures/fig_topologies_rs.txt' (for text) unreadable: No such file or directory.

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

Ubuntu 16.04 amd64 build: Failed (click for details)

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

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: 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-15807/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

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

gmake[1]: Entering directory '/usr/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function 'route_map_instance_show':
lib/routemap_cli.c:119:31: error: unused variable 'rmr' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:139: WARNING: duplicate clicmd description of redistribute static, other instance in bgp
/usr/home/ci/cibuild.15807/frr-source/doc/user/eigrpd.rst:151: WARNING: duplicate clicmd description of redistribute connected, other instance in bgp
/usr/home/ci/cibuild.15807/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-15807/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI009BUILD/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-15807/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U18ARM7BUILD/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-15807/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: recipe for target 'all' failed

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

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: 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-15807/artifact/CI021BUILD/config.status/config.status
Debian 9 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/CI021BUILD/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-15807/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-15807/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8301: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4940: all] Error 2

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/artifact/U2004AMD64BUILD/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-15807/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
Makefile:4403: recipe for target 'all' failed

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15807/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-15807/artifact/U16ARM8BUILD/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-15807/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:7758: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
Makefile:4403: recipe for target 'all' failed

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

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-15807/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15807/frr-source'
lib/routemap_cli.c: In function route_map_instance_show:
lib/routemap_cli.c:119:31: error: unused variable rmr [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:8300: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.15807/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4939: all] Error 2

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

<stdin>:5368: trailing whitespace.
	return NB_OK; 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 48 issues
===============================================
< WARNING: line over 80 characters
< #3890: FILE: /tmp/f1-24939/bgp_routemap.c:3890:
< WARNING: line over 80 characters
< #3909: FILE: /tmp/f1-24939/bgp_routemap.c:3909:
< WARNING: line over 80 characters
< #3953: FILE: /tmp/f1-24939/bgp_routemap.c:3953:
< WARNING: line over 80 characters
< #3981: FILE: /tmp/f1-24939/bgp_routemap.c:3981:
< WARNING: line over 80 characters
< #4029: FILE: /tmp/f1-24939/bgp_routemap.c:4029:
< WARNING: line over 80 characters
< #4047: FILE: /tmp/f1-24939/bgp_routemap.c:4047:
< WARNING: line over 80 characters
< #4271: FILE: /tmp/f1-24939/bgp_routemap.c:4271:
< WARNING: line over 80 characters
< #4315: FILE: /tmp/f1-24939/bgp_routemap.c:4315:
< WARNING: line over 80 characters
< #4330: FILE: /tmp/f1-24939/bgp_routemap.c:4330:
< WARNING: line over 80 characters
< #4352: FILE: /tmp/f1-24939/bgp_routemap.c:4352:
< WARNING: line over 80 characters
< #4367: FILE: /tmp/f1-24939/bgp_routemap.c:4367:
< WARNING: line over 80 characters
< #4389: FILE: /tmp/f1-24939/bgp_routemap.c:4389:
< WARNING: line over 80 characters
< #4417: FILE: /tmp/f1-24939/bgp_routemap.c:4417:
< WARNING: line over 80 characters
< #4504: FILE: /tmp/f1-24939/bgp_routemap.c:4504:
< WARNING: line over 80 characters
< #4521: FILE: /tmp/f1-24939/bgp_routemap.c:4521:
< WARNING: line over 80 characters
< #4608: FILE: /tmp/f1-24939/bgp_routemap.c:4608:
< WARNING: line over 80 characters
< #4623: FILE: /tmp/f1-24939/bgp_routemap.c:4623:
< WARNING: line over 80 characters
< #4661: FILE: /tmp/f1-24939/bgp_routemap.c:4661:
< WARNING: line over 80 characters
< #5327: FILE: /tmp/f1-24939/bgp_routemap.c:5327:
< WARNING: line over 80 characters
< #5362: FILE: /tmp/f1-24939/bgp_routemap.c:5362:
< WARNING: line over 80 characters
< #5881: FILE: /tmp/f1-24939/bgp_routemap.c:5881:
< WARNING: line over 80 characters
< #5890: FILE: /tmp/f1-24939/bgp_routemap.c:5890:
< WARNING: line over 80 characters
< #5921: FILE: /tmp/f1-24939/bgp_routemap.c:5921:
< WARNING: line over 80 characters
< #5925: FILE: /tmp/f1-24939/bgp_routemap.c:5925:
Report for bgp_routemap_nb.c | 125 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-24939/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-24939/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-24939/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-24939/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-24939/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-24939/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-24939/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-24939/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-24939/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-24939/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-24939/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-24939/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-24939/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-24939/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-24939/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-24939/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-24939/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-24939/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-24939/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-24939/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-24939/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-24939/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-24939/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-24939/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-24939/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-24939/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-24939/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-24939/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-24939/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-24939/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-24939/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-24939/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-24939/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-24939/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-24939/bgp_routemap_nb.c:112:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-24939/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-24939/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-24939/bgp_routemap_nb.c:119:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-24939/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-24939/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-24939/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-24939/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-24939/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-24939/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-24939/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-24939/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-24939/bgp_routemap_nb.c:140:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#141: FILE: /tmp/f1-24939/bgp_routemap_nb.c:141:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#145: FILE: /tmp/f1-24939/bgp_routemap_nb.c:145:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard",

WARNING: line over 80 characters
#147: FILE: /tmp/f1-24939/bgp_routemap_nb.c:147:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-24939/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-24939/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-24939/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-24939/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-24939/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-24939/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-24939/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-24939/bgp_routemap_nb.c:167:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish,

WARNING: line over 80 characters
#171: FILE: /tmp/f1-24939/bgp_routemap_nb.c:171:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended",

WARNING: line over 80 characters
#173: FILE: /tmp/f1-24939/bgp_routemap_nb.c:173:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify,

WARNING: line over 80 characters
#174: FILE: /tmp/f1-24939/bgp_routemap_nb.c:174:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#178: FILE: /tmp/f1-24939/bgp_routemap_nb.c:178:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match",

WARNING: line over 80 characters
#180: FILE: /tmp/f1-24939/bgp_routemap_nb.c:180:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify,

WARNING: line over 80 characters
#181: FILE: /tmp/f1-24939/bgp_routemap_nb.c:181:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy,

WARNING: line over 80 characters
#185: FILE: /tmp/f1-24939/bgp_routemap_nb.c:185:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#187: FILE: /tmp/f1-24939/bgp_routemap_nb.c:187:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#191: FILE: /tmp/f1-24939/bgp_routemap_nb.c:191:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#193: FILE: /tmp/f1-24939/bgp_routemap_nb.c:193:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#194: FILE: /tmp/f1-24939/bgp_routemap_nb.c:194:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#198: FILE: /tmp/f1-24939/bgp_routemap_nb.c:198:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#200: FILE: /tmp/f1-24939/bgp_routemap_nb.c:200:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#201: FILE: /tmp/f1-24939/bgp_routemap_nb.c:201:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#205: FILE: /tmp/f1-24939/bgp_routemap_nb.c:205:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#207: FILE: /tmp/f1-24939/bgp_routemap_nb.c:207:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#208: FILE: /tmp/f1-24939/bgp_routemap_nb.c:208:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#212: FILE: /tmp/f1-24939/bgp_routemap_nb.c:212:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#214: FILE: /tmp/f1-24939/bgp_routemap_nb.c:214:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#215: FILE: /tmp/f1-24939/bgp_routemap_nb.c:215:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#219: FILE: /tmp/f1-24939/bgp_routemap_nb.c:219:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#221: FILE: /tmp/f1-24939/bgp_routemap_nb.c:221:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#222: FILE: /tmp/f1-24939/bgp_routemap_nb.c:222:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#226: FILE: /tmp/f1-24939/bgp_routemap_nb.c:226:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#228: FILE: /tmp/f1-24939/bgp_routemap_nb.c:228:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#229: FILE: /tmp/f1-24939/bgp_routemap_nb.c:229:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#233: FILE: /tmp/f1-24939/bgp_routemap_nb.c:233:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#235: FILE: /tmp/f1-24939/bgp_routemap_nb.c:235:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#236: FILE: /tmp/f1-24939/bgp_routemap_nb.c:236:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#240: FILE: /tmp/f1-24939/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

ERROR: spaces required around that '=' (ctx:WxV)
#240: FILE: /tmp/f1-24939/bgp_routemap_nb.c:240:
+			.xpath ="/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",
 			       ^

WARNING: line over 80 characters
#242: FILE: /tmp/f1-24939/bgp_routemap_nb.c:242:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#243: FILE: /tmp/f1-24939/bgp_routemap_nb.c:243:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#247: FILE: /tmp/f1-24939/bgp_routemap_nb.c:247:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#249: FILE: /tmp/f1-24939/bgp_routemap_nb.c:249:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#250: FILE: /tmp/f1-24939/bgp_routemap_nb.c:250:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#254: FILE: /tmp/f1-24939/bgp_routemap_nb.c:254:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#256: FILE: /tmp/f1-24939/bgp_routemap_nb.c:256:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#257: FILE: /tmp/f1-24939/bgp_routemap_nb.c:257:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#261: FILE: /tmp/f1-24939/bgp_routemap_nb.c:261:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#263: FILE: /tmp/f1-24939/bgp_routemap_nb.c:263:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#264: FILE: /tmp/f1-24939/bgp_routemap_nb.c:264:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#268: FILE: /tmp/f1-24939/bgp_routemap_nb.c:268:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#270: FILE: /tmp/f1-24939/bgp_routemap_nb.c:270:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#271: FILE: /tmp/f1-24939/bgp_routemap_nb.c:271:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#275: FILE: /tmp/f1-24939/bgp_routemap_nb.c:275:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#277: FILE: /tmp/f1-24939/bgp_routemap_nb.c:277:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#278: FILE: /tmp/f1-24939/bgp_routemap_nb.c:278:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#282: FILE: /tmp/f1-24939/bgp_routemap_nb.c:282:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#284: FILE: /tmp/f1-24939/bgp_routemap_nb.c:284:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#285: FILE: /tmp/f1-24939/bgp_routemap_nb.c:285:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#289: FILE: /tmp/f1-24939/bgp_routemap_nb.c:289:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#291: FILE: /tmp/f1-24939/bgp_routemap_nb.c:291:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#292: FILE: /tmp/f1-24939/bgp_routemap_nb.c:292:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#296: FILE: /tmp/f1-24939/bgp_routemap_nb.c:296:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#298: FILE: /tmp/f1-24939/bgp_routemap_nb.c:298:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#299: FILE: /tmp/f1-24939/bgp_routemap_nb.c:299:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#303: FILE: /tmp/f1-24939/bgp_routemap_nb.c:303:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#305: FILE: /tmp/f1-24939/bgp_routemap_nb.c:305:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#306: FILE: /tmp/f1-24939/bgp_routemap_nb.c:306:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#310: FILE: /tmp/f1-24939/bgp_routemap_nb.c:310:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#312: FILE: /tmp/f1-24939/bgp_routemap_nb.c:312:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#313: FILE: /tmp/f1-24939/bgp_routemap_nb.c:313:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#317: FILE: /tmp/f1-24939/bgp_routemap_nb.c:317:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#319: FILE: /tmp/f1-24939/bgp_routemap_nb.c:319:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#320: FILE: /tmp/f1-24939/bgp_routemap_nb.c:320:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#324: FILE: /tmp/f1-24939/bgp_routemap_nb.c:324:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#326: FILE: /tmp/f1-24939/bgp_routemap_nb.c:326:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#327: FILE: /tmp/f1-24939/bgp_routemap_nb.c:327:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#331: FILE: /tmp/f1-24939/bgp_routemap_nb.c:331:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#333: FILE: /tmp/f1-24939/bgp_routemap_nb.c:333:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#334: FILE: /tmp/f1-24939/bgp_routemap_nb.c:334:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#338: FILE: /tmp/f1-24939/bgp_routemap_nb.c:338:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#340: FILE: /tmp/f1-24939/bgp_routemap_nb.c:340:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#341: FILE: /tmp/f1-24939/bgp_routemap_nb.c:341:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#345: FILE: /tmp/f1-24939/bgp_routemap_nb.c:345:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#347: FILE: /tmp/f1-24939/bgp_routemap_nb.c:347:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#348: FILE: /tmp/f1-24939/bgp_routemap_nb.c:348:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-24939/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-24939/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-24939/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-24939/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-24939/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-24939/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-24939/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-24939/bgp_routemap_nb.c:368:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#372: FILE: /tmp/f1-24939/bgp_routemap_nb.c:372:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#374: FILE: /tmp/f1-24939/bgp_routemap_nb.c:374:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#375: FILE: /tmp/f1-24939/bgp_routemap_nb.c:375:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#379: FILE: /tmp/f1-24939/bgp_routemap_nb.c:379:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#381: FILE: /tmp/f1-24939/bgp_routemap_nb.c:381:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#382: FILE: /tmp/f1-24939/bgp_routemap_nb.c:382:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#386: FILE: /tmp/f1-24939/bgp_routemap_nb.c:386:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num",

WARNING: line over 80 characters
#388: FILE: /tmp/f1-24939/bgp_routemap_nb.c:388:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify,

WARNING: line over 80 characters
#389: FILE: /tmp/f1-24939/bgp_routemap_nb.c:389:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy,

WARNING: line over 80 characters
#393: FILE: /tmp/f1-24939/bgp_routemap_nb.c:393:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended",

WARNING: line over 80 characters
#395: FILE: /tmp/f1-24939/bgp_routemap_nb.c:395:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify,

WARNING: line over 80 characters
#396: FILE: /tmp/f1-24939/bgp_routemap_nb.c:396:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy,

WARNING: line over 80 characters
#400: FILE: /tmp/f1-24939/bgp_routemap_nb.c:400:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#402: FILE: /tmp/f1-24939/bgp_routemap_nb.c:402:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#403: FILE: /tmp/f1-24939/bgp_routemap_nb.c:403:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,
Report for bgp_routemap_nb_config.c | 204 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:28:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:31:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#53: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:53:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "local-preference",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:66:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#82: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:82:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#136: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:136:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#190: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:190:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#243: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#297: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:297:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#300: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:300:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#335: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:335:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#351: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:351:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#405: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:405:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#408: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:408:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#443: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:443:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#459: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:459:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#485: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:485:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "peer", "local",

WARNING: line over 80 characters
#515: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:515:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: suspect code indent for conditional statements (16, 16)
#546: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:546:
+		} else if (IS_MATCH_MAC_LIST(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#560: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:560:
+			ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "ip route-source",

WARNING: suspect code indent for conditional statements (16, 16)
#562: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:562:
+		} else if (IS_MATCH_ROUTE_SRC_PL(condition)) {
[...]
+		rhc->rhc_mhook = bgp_route_match_delete;

WARNING: line over 80 characters
#599: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:599:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num

WARNING: line over 80 characters
#637: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:637:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(

WARNING: line over 80 characters
#653: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:653:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:access-list-num-extended

WARNING: line over 80 characters
#656: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:656:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(

WARNING: line over 80 characters
#691: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:691:
+lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(

WARNING: line over 80 characters
#707: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:707:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#710: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:710:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#730: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:730:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn default-route",

WARNING: line over 80 characters
#743: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:743:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#759: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:759:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#813: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:813:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#838: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:838:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, "evpn route-type", type,

WARNING: line over 80 characters
#851: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:851:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#867: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:867:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#870: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:870:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#905: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:905:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#921: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:921:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard

WARNING: line over 80 characters
#924: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:924:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(

WARNING: line over 80 characters
#978: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:978:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num

WARNING: line over 80 characters
#981: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:981:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(

WARNING: line over 80 characters
#996: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:996:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(

WARNING: line over 80 characters
#1012: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1012:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-standard/comm-list-num-exact-match

WARNING: line over 80 characters
#1015: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1015:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(

ERROR: code indent should use tabs where possible
#1024: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: please, no spaces at the start of a line
#1024: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1024:
+        }$

WARNING: line over 80 characters
#1030: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1030:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(

WARNING: line over 80 characters
#1046: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1046:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended

WARNING: line over 80 characters
#1049: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1049:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(

WARNING: line over 80 characters
#1104: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1104:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended

WARNING: line over 80 characters
#1107: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1107:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(

WARNING: line over 80 characters
#1122: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1122:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(

WARNING: line over 80 characters
#1138: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1138:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list-extended/comm-list-num-extended-exact-match

WARNING: line over 80 characters
#1141: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1141:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(

WARNING: line over 80 characters
#1156: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1156:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(

WARNING: line over 80 characters
#1172: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1172:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1229: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1229:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1232: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1232:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1247: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1247:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1264: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1264:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1267: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1267:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1282: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1282:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1298: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1298:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1323: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1323:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1352: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1352:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1377: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1377:
+		ret = bgp_route_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, peer,

WARNING: line over 80 characters
#1407: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1458: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1458:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1483: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1483:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity rt", type);

WARNING: line over 80 characters
#1511: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1511:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1536: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1536:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "extcommunity soo", type);

WARNING: line over 80 characters
#1564: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1564:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1615: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1615:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1667: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1667:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

ERROR: trailing whitespace
#1733: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1733:
+^Ireturn NB_OK; $

WARNING: line over 80 characters
#1738: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1738:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1771: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1771:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, NULL);

WARNING: line over 80 characters
#1800: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1800:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1851: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1851:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1875: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1875:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "local-preference", type);

WARNING: line over 80 characters
#1902: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1902:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1953: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:1953:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#2005: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2005:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

ERROR: code indent should use tabs where possible
#2042: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: please, no spaces at the start of a line
#2042: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2042:
+        switch (args->event) {$

WARNING: line over 80 characters
#2056: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2056:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#2107: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2107:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#2158: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2158:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2183: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2183:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", type);

WARNING: line over 80 characters
#2211: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2211:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2239: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2239:
+		snprintf(argstr, (strlen(value) + strlen("last-as") + 2), "last-as %s",

WARNING: line over 80 characters
#2242: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2242:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path prepend", argstr);

WARNING: line over 80 characters
#2272: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2272:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2297: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2297:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "as-path exclude", type);

WARNING: line over 80 characters
#2325: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2325:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2350: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2350:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "community", "none");

WARNING: line over 80 characters
#2382: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2382:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2435: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2435:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2461: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2461:
+			rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community",

WARNING: line over 80 characters
#2494: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2494:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2519: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2519:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "large-community", type);

WARNING: line over 80 characters
#2547: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2547:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2577: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2577:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2595: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2595:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2612: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2612:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

ERROR: code indent should use tabs where possible
#2626: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2626: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2626:
+        return NB_OK;$

WARNING: line over 80 characters
#2630: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2630:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

ERROR: code indent should use tabs where possible
#2642: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: please, no spaces at the start of a line
#2642: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2642:
+        return NB_OK;$

WARNING: line over 80 characters
#2647: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2647:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num

WARNING: line over 80 characters
#2707: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2707:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-num-extended

WARNING: line over 80 characters
#2769: FILE: /tmp/f1-24939/bgp_routemap_nb_config.c:2769:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name
Report for bgp_routemap_nb.h | 160 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/bgp_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/bgp_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-24939/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-24939/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-24939/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-24939/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-24939/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-24939/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-24939/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-24939/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-24939/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-24939/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-24939/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-24939/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-24939/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-24939/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-24939/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-24939/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-24939/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-24939/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-24939/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-24939/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-24939/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-24939/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-24939/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-24939/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-24939/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-24939/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-24939/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-24939/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-24939/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-24939/bgp_routemap_nb.h:60:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-24939/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-24939/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-24939/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-24939/bgp_routemap_nb.h:64:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_standard_comm_list_num_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-24939/bgp_routemap_nb.h:65:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-24939/bgp_routemap_nb.h:66:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-24939/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-24939/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-24939/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-24939/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_extended_comm_list_num_extended_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-24939/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-24939/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-24939/bgp_routemap_nb.h:73:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-24939/bgp_routemap_nb.h:74:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-24939/bgp_routemap_nb.h:75:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-24939/bgp_routemap_nb.h:76:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-24939/bgp_routemap_nb.h:77:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-24939/bgp_routemap_nb.h:78:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-24939/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-24939/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-24939/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-24939/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-24939/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-24939/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-24939/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-24939/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-24939/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-24939/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-24939/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-24939/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-24939/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-24939/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-24939/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-24939/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-24939/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-24939/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-24939/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-24939/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-24939/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-24939/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-24939/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-24939/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-24939/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-24939/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-24939/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-24939/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-24939/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-24939/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-24939/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-24939/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-24939/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-24939/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-24939/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-24939/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-24939/bgp_routemap_nb.h:115:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-24939/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-24939/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-24939/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-24939/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-24939/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-24939/bgp_routemap_nb.h:121:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-24939/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-24939/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-24939/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-24939/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-24939/bgp_routemap_nb.h:126:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-24939/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-24939/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-24939/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-24939/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-24939/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:38:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-24939/ospf6_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 12 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#79: FILE: /tmp/f1-24939/ospf6_routemap_nb_config.c:79:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#103: FILE: /tmp/f1-24939/ospf6_routemap_nb_config.c:103:
+		rv = generic_set_add(NULL, rhc->rhc_rmi, "forwarding-address", ipv6_addr);
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/ospf6_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/ospf6_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-24939/ospf6_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-24939/ospf_routemap_nb.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-24939/ospf_routemap_nb.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-24939/ospf_routemap_nb.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-24939/ospf_routemap_nb.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-24939/ospf_routemap_nb.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-24939/ospf_routemap_nb.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-24939/ospf_routemap_nb.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-24939/ospf_routemap_nb.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb_config.c | 32 issues
===============================================
WARNING: line over 80 characters
#27: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:27:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#65: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:65:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#84: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:84:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#86: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:86:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#87: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:87:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#91: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:91:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#93: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:93:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#94: FILE: /tmp/f1-24939/ospf_routemap_nb_config.c:94:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/ospf_routemap_nb.h:28:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/ospf_routemap_nb.h:29:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-24939/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_northbound.c | 32 issues
===============================================
WARNING: line over 80 characters
#8: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:8:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#46: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:46:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address

WARNING: line over 80 characters
#65: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:65:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#67: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:67:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:68:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#72: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:72:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:ipv6-address",

WARNING: line over 80 characters
#74: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:74:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-24939/ospf_routemap_northbound.c:75:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for routemap_cli.c | 226 issues
===============================================
< WARNING: line over 80 characters
< #188: FILE: /tmp/f1-24939/routemap_cli.c:188:
< WARNING: line over 80 characters
< #211: FILE: /tmp/f1-24939/routemap_cli.c:211:
< WARNING: line over 80 characters
< #269: FILE: /tmp/f1-24939/routemap_cli.c:269:
< WARNING: line over 80 characters
< #292: FILE: /tmp/f1-24939/routemap_cli.c:292:
< WARNING: line over 80 characters
< #310: FILE: /tmp/f1-24939/routemap_cli.c:310:
< WARNING: line over 80 characters
< #333: FILE: /tmp/f1-24939/routemap_cli.c:333:
< WARNING: line over 80 characters
< #350: FILE: /tmp/f1-24939/routemap_cli.c:350:
< WARNING: line over 80 characters
< #370: FILE: /tmp/f1-24939/routemap_cli.c:370:
< WARNING: line over 80 characters
< #386: FILE: /tmp/f1-24939/routemap_cli.c:386:
< WARNING: line over 80 characters
< #407: FILE: /tmp/f1-24939/routemap_cli.c:407:
< WARNING: line over 80 characters
< #463: FILE: /tmp/f1-24939/routemap_cli.c:463:
< WARNING: line over 80 characters
< #483: FILE: /tmp/f1-24939/routemap_cli.c:483:
< ERROR: do not use assignment in if condition
< #574: FILE: /tmp/f1-24939/routemap_cli.c:574:
< ERROR: do not use assignment in if condition
< #578: FILE: /tmp/f1-24939/routemap_cli.c:578:
< ERROR: do not use assignment in if condition
< #583: FILE: /tmp/f1-24939/routemap_cli.c:583:
< WARNING: line over 80 characters
< #586: FILE: /tmp/f1-24939/routemap_cli.c:586:
< WARNING: line over 80 characters
< #634: FILE: /tmp/f1-24939/routemap_cli.c:634:
< WARNING: line over 80 characters
< #639: FILE: /tmp/f1-24939/routemap_cli.c:639:
< WARNING: line over 80 characters
< #644: FILE: /tmp/f1-24939/routemap_cli.c:644:
< WARNING: line over 80 characters
< #649: FILE: /tmp/f1-24939/routemap_cli.c:649:
< WARNING: line over 80 characters
< #654: FILE: /tmp/f1-24939/routemap_cli.c:654:
< WARNING: line over 80 characters
< #659: FILE: /tmp/f1-24939/routemap_cli.c:659:
< WARNING: line over 80 characters
< #664: FILE: /tmp/f1-24939/routemap_cli.c:664:
< WARNING: line over 80 characters
< #669: FILE: /tmp/f1-24939/routemap_cli.c:669:
< WARNING: line over 80 characters
< #674: FILE: /tmp/f1-24939/routemap_cli.c:674:
< WARNING: line over 80 characters
< #679: FILE: /tmp/f1-24939/routemap_cli.c:679:
< ERROR: do not use assignment in if condition
< #682: FILE: /tmp/f1-24939/routemap_cli.c:682:
< WARNING: line over 80 characters
< #684: FILE: /tmp/f1-24939/routemap_cli.c:684:
< ERROR: do not use assignment in if condition
< #687: FILE: /tmp/f1-24939/routemap_cli.c:687:
< WARNING: line over 80 characters
< #690: FILE: /tmp/f1-24939/routemap_cli.c:690:
< ERROR: do not use assignment in if condition
< #693: FILE: /tmp/f1-24939/routemap_cli.c:693:
< WARNING: line over 80 characters
< #696: FILE: /tmp/f1-24939/routemap_cli.c:696:
< ERROR: do not use assignment in if condition
< #699: FILE: /tmp/f1-24939/routemap_cli.c:699:
< WARNING: line over 80 characters
< #702: FILE: /tmp/f1-24939/routemap_cli.c:702:
< WARNING: line over 80 characters
< #711: FILE: /tmp/f1-24939/routemap_cli.c:711:
< WARNING: line over 80 characters
< #716: FILE: /tmp/f1-24939/routemap_cli.c:716:
< WARNING: line over 80 characters
< #723: FILE: /tmp/f1-24939/routemap_cli.c:723:
< WARNING: line over 80 characters
< #728: FILE: /tmp/f1-24939/routemap_cli.c:728:
< WARNING: line over 80 characters
< #733: FILE: /tmp/f1-24939/routemap_cli.c:733:
< WARNING: line over 80 characters
< #738: FILE: /tmp/f1-24939/routemap_cli.c:738:
< ERROR: do not use assignment in if condition
< #741: FILE: /tmp/f1-24939/routemap_cli.c:741:
< WARNING: line over 80 characters
< #743: FILE: /tmp/f1-24939/routemap_cli.c:743:
< ERROR: do not use assignment in if condition
< #746: FILE: /tmp/f1-24939/routemap_cli.c:746:
< WARNING: line over 80 characters
< #749: FILE: /tmp/f1-24939/routemap_cli.c:749:
< ERROR: do not use assignment in if condition
< #752: FILE: /tmp/f1-24939/routemap_cli.c:752:
< WARNING: line over 80 characters
< #755: FILE: /tmp/f1-24939/routemap_cli.c:755:
< WARNING: line over 80 characters
< #766: FILE: /tmp/f1-24939/routemap_cli.c:766:
< ERROR: do not use assignment in if condition
< #769: FILE: /tmp/f1-24939/routemap_cli.c:769:
< WARNING: line over 80 characters
< #771: FILE: /tmp/f1-24939/routemap_cli.c:771:
< ERROR: do not use assignment in if condition
< #774: FILE: /tmp/f1-24939/routemap_cli.c:774:
< WARNING: line over 80 characters
< #777: FILE: /tmp/f1-24939/routemap_cli.c:777:
< ERROR: do not use assignment in if condition
< #780: FILE: /tmp/f1-24939/routemap_cli.c:780:
< WARNING: line over 80 characters
< #783: FILE: /tmp/f1-24939/routemap_cli.c:783:
< ERROR: do not use assignment in if condition
< #792: FILE: /tmp/f1-24939/routemap_cli.c:792:
< WARNING: line over 80 characters
< #794: FILE: /tmp/f1-24939/routemap_cli.c:794:
< WARNING: line over 80 characters
< #801: FILE: /tmp/f1-24939/routemap_cli.c:801:
< ERROR: do not use assignment in if condition
< #807: FILE: /tmp/f1-24939/routemap_cli.c:807:
< WARNING: line over 80 characters
< #810: FILE: /tmp/f1-24939/routemap_cli.c:810:
< WARNING: line over 80 characters
< #817: FILE: /tmp/f1-24939/routemap_cli.c:817:
< ERROR: do not use assignment in if condition
< #824: FILE: /tmp/f1-24939/routemap_cli.c:824:
< WARNING: line over 80 characters
< #834: FILE: /tmp/f1-24939/routemap_cli.c:834:
< ERROR: do not use assignment in if condition
< #845: FILE: /tmp/f1-24939/routemap_cli.c:845:
< WARNING: line over 80 characters
< #847: FILE: /tmp/f1-24939/routemap_cli.c:847:
< WARNING: line over 80 characters
< #854: FILE: /tmp/f1-24939/routemap_cli.c:854:
< ERROR: do not use assignment in if condition
< #861: FILE: /tmp/f1-24939/routemap_cli.c:861:
< WARNING: line over 80 characters
< #864: FILE: /tmp/f1-24939/routemap_cli.c:864:
< WARNING: line over 80 characters
< #871: FILE: /tmp/f1-24939/routemap_cli.c:871:
< ERROR: do not use assignment in if condition
< #879: FILE: /tmp/f1-24939/routemap_cli.c:879:
< WARNING: line over 80 characters
< #882: FILE: /tmp/f1-24939/routemap_cli.c:882:
< WARNING: line over 80 characters
< #889: FILE: /tmp/f1-24939/routemap_cli.c:889:
< ERROR: do not use assignment in if condition
< #901: FILE: /tmp/f1-24939/routemap_cli.c:901:
< WARNING: line over 80 characters
< #903: FILE: /tmp/f1-24939/routemap_cli.c:903:
< ERROR: do not use assignment in if condition
< #906: FILE: /tmp/f1-24939/routemap_cli.c:906:
< WARNING: line over 80 characters
< #909: FILE: /tmp/f1-24939/routemap_cli.c:909:
< ERROR: do not use assignment in if condition
< #912: FILE: /tmp/f1-24939/routemap_cli.c:912:
< WARNING: line over 80 characters
< #915: FILE: /tmp/f1-24939/routemap_cli.c:915:
< WARNING: line over 80 characters
< #926: FILE: /tmp/f1-24939/routemap_cli.c:926:
< WARNING: line over 80 characters
< #931: FILE: /tmp/f1-24939/routemap_cli.c:931:
< WARNING: line over 80 characters
< #1136: FILE: /tmp/f1-24939/routemap_cli.c:1136:
< WARNING: line over 80 characters
< #1152: FILE: /tmp/f1-24939/routemap_cli.c:1152:
< WARNING: line over 80 characters
< #1156: FILE: /tmp/f1-24939/routemap_cli.c:1156:
< WARNING: line over 80 characters
< #1161: FILE: /tmp/f1-24939/routemap_cli.c:1161:
< WARNING: line over 80 characters
< #1166: FILE: /tmp/f1-24939/routemap_cli.c:1166:
< WARNING: line over 80 characters
< #1171: FILE: /tmp/f1-24939/routemap_cli.c:1171:
< WARNING: line over 80 characters
< #1186: FILE: /tmp/f1-24939/routemap_cli.c:1186:
< WARNING: line over 80 characters
< #1191: FILE: /tmp/f1-24939/routemap_cli.c:1191:
< WARNING: line over 80 characters
< #1196: FILE: /tmp/f1-24939/routemap_cli.c:1196:
< WARNING: line over 80 characters
< #1208: FILE: /tmp/f1-24939/routemap_cli.c:1208:
< ERROR: do not use assignment in if condition
< #1211: FILE: /tmp/f1-24939/routemap_cli.c:1211:
< WARNING: line over 80 characters
< #1213: FILE: /tmp/f1-24939/routemap_cli.c:1213:
< ERROR: do not use assignment in if condition
< #1216: FILE: /tmp/f1-24939/routemap_cli.c:1216:
< WARNING: line over 80 characters
< #1219: FILE: /tmp/f1-24939/routemap_cli.c:1219:
< ERROR: do not use assignment in if condition
< #1222: FILE: /tmp/f1-24939/routemap_cli.c:1222:
< WARNING: line over 80 characters
< #1225: FILE: /tmp/f1-24939/routemap_cli.c:1225:
< ERROR: do not use assignment in if condition
< #1234: FILE: /tmp/f1-24939/routemap_cli.c:1234:
< WARNING: line over 80 characters
< #1236: FILE: /tmp/f1-24939/routemap_cli.c:1236:
< ERROR: do not use assignment in if condition
< #1239: FILE: /tmp/f1-24939/routemap_cli.c:1239:
< WARNING: line over 80 characters
< #1242: FILE: /tmp/f1-24939/routemap_cli.c:1242:
< ERROR: do not use assignment in if condition
< #1245: FILE: /tmp/f1-24939/routemap_cli.c:1245:
< WARNING: line over 80 characters
< #1248: FILE: /tmp/f1-24939/routemap_cli.c:1248:
< WARNING: line over 80 characters
< #1258: FILE: /tmp/f1-24939/routemap_cli.c:1258:
< WARNING: line over 80 characters
< #1262: FILE: /tmp/f1-24939/routemap_cli.c:1262:
< WARNING: line over 80 characters
< #1267: FILE: /tmp/f1-24939/routemap_cli.c:1267:
< WARNING: line over 80 characters
< #1273: FILE: /tmp/f1-24939/routemap_cli.c:1273:
< WARNING: line over 80 characters
< #1277: FILE: /tmp/f1-24939/routemap_cli.c:1277:
< WARNING: line over 80 characters
< #1282: FILE: /tmp/f1-24939/routemap_cli.c:1282:
< WARNING: line over 80 characters
< #1289: FILE: /tmp/f1-24939/routemap_cli.c:1289:
< WARNING: line over 80 characters
< #1294: FILE: /tmp/f1-24939/routemap_cli.c:1294:
< WARNING: line over 80 characters
< #1299: FILE: /tmp/f1-24939/routemap_cli.c:1299:
< WARNING: line over 80 characters
< #1302: FILE: /tmp/f1-24939/routemap_cli.c:1302:
< WARNING: line over 80 characters
< #1307: FILE: /tmp/f1-24939/routemap_cli.c:1307:
< WARNING: line over 80 characters
< #1311: FILE: /tmp/f1-24939/routemap_cli.c:1311:
< WARNING: line over 80 characters
< #1315: FILE: /tmp/f1-24939/routemap_cli.c:1315:
Report for routemap_northbound.c | 12 issues
===============================================
< WARNING: line over 80 characters
< #1265: FILE: /tmp/f1-24939/routemap_northbound.c:1265:
< WARNING: line over 80 characters
< #1269: FILE: /tmp/f1-24939/routemap_northbound.c:1269:
< WARNING: line over 80 characters
< #1271: FILE: /tmp/f1-24939/routemap_northbound.c:1271:
< WARNING: line over 80 characters
< #1272: FILE: /tmp/f1-24939/routemap_northbound.c:1272:
< WARNING: line over 80 characters
< #1276: FILE: /tmp/f1-24939/routemap_northbound.c:1276:
< WARNING: line over 80 characters
< #1278: FILE: /tmp/f1-24939/routemap_northbound.c:1278:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #360: FILE: /tmp/f1-24939/zebra_routemap.c:360:
< WARNING: line over 80 characters
< #384: FILE: /tmp/f1-24939/zebra_routemap.c:384:
< WARNING: line over 80 characters
< #401: FILE: /tmp/f1-24939/zebra_routemap.c:401:
< WARNING: line over 80 characters
< #425: FILE: /tmp/f1-24939/zebra_routemap.c:425:
< WARNING: line over 80 characters
< #442: FILE: /tmp/f1-24939/zebra_routemap.c:442:
< WARNING: line over 80 characters
< #466: FILE: /tmp/f1-24939/zebra_routemap.c:466:
< WARNING: line over 80 characters
< #481: FILE: /tmp/f1-24939/zebra_routemap.c:481:
< WARNING: line over 80 characters
< #502: FILE: /tmp/f1-24939/zebra_routemap.c:502:
< WARNING: line over 80 characters
< #517: FILE: /tmp/f1-24939/zebra_routemap.c:517:
< WARNING: line over 80 characters
< #537: FILE: /tmp/f1-24939/zebra_routemap.c:537:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-24939/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-24939/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-24939/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-24939/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-24939/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-24939/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-24939/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-24939/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-24939/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-24939/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-24939/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-24939/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-24939/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-24939/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-24939/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-24939/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 60 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#42: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:42:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, rhc->rhc_rule, length,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:54:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#70: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:70:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#73: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:73:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#95: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:95:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "ipv6 address prefix-len",

WARNING: line over 80 characters
#107: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:107:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#124: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:124:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#149: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:149:
+		rv = generic_match_add(NULL, rhc->rhc_rmi, "source-instance", type,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:161:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#177: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:177:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#223: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:223:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#239: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:239:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#316: FILE: /tmp/f1-24939/zebra_routemap_nb_config.c:316:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-24939/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-24939/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-24939/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-24939/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-24939/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-24939/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-24939/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-24939/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-24939/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-24939/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-24939/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-24939/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 28, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7419 cac8b0c
Date 03/28/2021
Start 13:01:16
Finish 13:42:53
Run-Time 41:37
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-03-28-13:01:16.txt
Log autoscript-2021-03-28-13:02:27.log.bz2
Memory 496 503 428

For details, please contact louberger

Copy link
Contributor

@idryzhov idryzhov left a comment

Choose a reason for hiding this comment

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

There are some style issues reported by CI, I don't know if this is critical.
Otherwise LGTM.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 28, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7419 0731e2c
Date 03/28/2021
Start 13:45:54
Finish 14:27:18
Run-Time 41:24
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-03-28-13:45:54.txt
Log autoscript-2021-03-28-13:47:01.log.bz2
Memory 488 497 429

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

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
<stdin>:11018: trailing whitespace.
    case script { 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 62 issues
===============================================
< WARNING: line over 80 characters
< #3852: FILE: /tmp/f1-10805/bgp_routemap.c:3852:
< WARNING: line over 80 characters
< #3873: FILE: /tmp/f1-10805/bgp_routemap.c:3873:
< WARNING: line over 80 characters
< #3917: FILE: /tmp/f1-10805/bgp_routemap.c:3917:
< WARNING: line over 80 characters
< #3945: FILE: /tmp/f1-10805/bgp_routemap.c:3945:
< WARNING: line over 80 characters
< #4002: FILE: /tmp/f1-10805/bgp_routemap.c:4002:
< WARNING: line over 80 characters
< #4024: FILE: /tmp/f1-10805/bgp_routemap.c:4024:
< WARNING: line over 80 characters
< #4284: FILE: /tmp/f1-10805/bgp_routemap.c:4284:
< WARNING: line over 80 characters
< #4311: FILE: /tmp/f1-10805/bgp_routemap.c:4311:
< WARNING: line over 80 characters
< #4328: FILE: /tmp/f1-10805/bgp_routemap.c:4328:
< WARNING: line over 80 characters
< #4352: FILE: /tmp/f1-10805/bgp_routemap.c:4352:
< WARNING: line over 80 characters
< #4368: FILE: /tmp/f1-10805/bgp_routemap.c:4368:
< WARNING: line over 80 characters
< #4392: FILE: /tmp/f1-10805/bgp_routemap.c:4392:
< WARNING: line over 80 characters
< #4421: FILE: /tmp/f1-10805/bgp_routemap.c:4421:
< WARNING: line over 80 characters
< #4432: FILE: /tmp/f1-10805/bgp_routemap.c:4432:
< WARNING: line over 80 characters
< #4465: FILE: /tmp/f1-10805/bgp_routemap.c:4465:
< WARNING: line over 80 characters
< #4482: FILE: /tmp/f1-10805/bgp_routemap.c:4482:
< WARNING: line over 80 characters
< #4493: FILE: /tmp/f1-10805/bgp_routemap.c:4493:
< WARNING: line over 80 characters
< #4526: FILE: /tmp/f1-10805/bgp_routemap.c:4526:
< WARNING: line over 80 characters
< #4542: FILE: /tmp/f1-10805/bgp_routemap.c:4542:
< WARNING: line over 80 characters
< #4552: FILE: /tmp/f1-10805/bgp_routemap.c:4552:
< WARNING: line over 80 characters
< #4569: FILE: /tmp/f1-10805/bgp_routemap.c:4569:
< WARNING: line over 80 characters
< #5309: FILE: /tmp/f1-10805/bgp_routemap.c:5309:
< WARNING: line over 80 characters
< #5336: FILE: /tmp/f1-10805/bgp_routemap.c:5336:
< WARNING: line over 80 characters
< #5872: FILE: /tmp/f1-10805/bgp_routemap.c:5872:
< WARNING: line over 80 characters
< #5881: FILE: /tmp/f1-10805/bgp_routemap.c:5881:
< WARNING: line over 80 characters
< #5919: FILE: /tmp/f1-10805/bgp_routemap.c:5919:
< WARNING: line over 80 characters
< #5923: FILE: /tmp/f1-10805/bgp_routemap.c:5923:
< WARNING: line over 80 characters
< #5951: FILE: /tmp/f1-10805/bgp_routemap.c:5951:
< WARNING: line over 80 characters
< #5960: FILE: /tmp/f1-10805/bgp_routemap.c:5960:
< WARNING: line over 80 characters
< #5993: FILE: /tmp/f1-10805/bgp_routemap.c:5993:
< WARNING: line over 80 characters
< #5997: FILE: /tmp/f1-10805/bgp_routemap.c:5997:
Report for bgp_routemap_nb.c | 64 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-10805/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-10805/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-10805/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-10805/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-10805/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_script_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-10805/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_script_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-10805/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-10805/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-10805/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-10805/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-10805/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-10805/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-10805/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-10805/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-10805/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-10805/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-10805/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-10805/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-10805/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-10805/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-10805/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-10805/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-10805/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-10805/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-10805/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-10805/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-10805/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-10805/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-10805/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-10805/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-10805/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-10805/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-10805/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-10805/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-10805/bgp_routemap_nb.c:112:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-10805/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-10805/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-10805/bgp_routemap_nb.c:119:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-10805/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-10805/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-10805/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-10805/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-10805/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-10805/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-10805/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-10805/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-10805/bgp_routemap_nb.c:140:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#144: FILE: /tmp/f1-10805/bgp_routemap_nb.c:144:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#146: FILE: /tmp/f1-10805/bgp_routemap_nb.c:146:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#147: FILE: /tmp/f1-10805/bgp_routemap_nb.c:147:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-10805/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-10805/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-10805/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-10805/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-10805/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-10805/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-10805/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-10805/bgp_routemap_nb.c:167:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#168: FILE: /tmp/f1-10805/bgp_routemap_nb.c:168:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#172: FILE: /tmp/f1-10805/bgp_routemap_nb.c:172:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#174: FILE: /tmp/f1-10805/bgp_routemap_nb.c:174:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#175: FILE: /tmp/f1-10805/bgp_routemap_nb.c:175:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#179: FILE: /tmp/f1-10805/bgp_routemap_nb.c:179:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#181: FILE: /tmp/f1-10805/bgp_routemap_nb.c:181:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#182: FILE: /tmp/f1-10805/bgp_routemap_nb.c:182:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#186: FILE: /tmp/f1-10805/bgp_routemap_nb.c:186:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#188: FILE: /tmp/f1-10805/bgp_routemap_nb.c:188:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#189: FILE: /tmp/f1-10805/bgp_routemap_nb.c:189:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#193: FILE: /tmp/f1-10805/bgp_routemap_nb.c:193:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#195: FILE: /tmp/f1-10805/bgp_routemap_nb.c:195:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#196: FILE: /tmp/f1-10805/bgp_routemap_nb.c:196:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#200: FILE: /tmp/f1-10805/bgp_routemap_nb.c:200:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#202: FILE: /tmp/f1-10805/bgp_routemap_nb.c:202:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#203: FILE: /tmp/f1-10805/bgp_routemap_nb.c:203:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#207: FILE: /tmp/f1-10805/bgp_routemap_nb.c:207:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#209: FILE: /tmp/f1-10805/bgp_routemap_nb.c:209:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#210: FILE: /tmp/f1-10805/bgp_routemap_nb.c:210:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#214: FILE: /tmp/f1-10805/bgp_routemap_nb.c:214:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#216: FILE: /tmp/f1-10805/bgp_routemap_nb.c:216:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#217: FILE: /tmp/f1-10805/bgp_routemap_nb.c:217:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#221: FILE: /tmp/f1-10805/bgp_routemap_nb.c:221:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#223: FILE: /tmp/f1-10805/bgp_routemap_nb.c:223:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#224: FILE: /tmp/f1-10805/bgp_routemap_nb.c:224:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#228: FILE: /tmp/f1-10805/bgp_routemap_nb.c:228:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#230: FILE: /tmp/f1-10805/bgp_routemap_nb.c:230:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#231: FILE: /tmp/f1-10805/bgp_routemap_nb.c:231:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#235: FILE: /tmp/f1-10805/bgp_routemap_nb.c:235:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#237: FILE: /tmp/f1-10805/bgp_routemap_nb.c:237:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#238: FILE: /tmp/f1-10805/bgp_routemap_nb.c:238:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#242: FILE: /tmp/f1-10805/bgp_routemap_nb.c:242:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#244: FILE: /tmp/f1-10805/bgp_routemap_nb.c:244:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#245: FILE: /tmp/f1-10805/bgp_routemap_nb.c:245:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#249: FILE: /tmp/f1-10805/bgp_routemap_nb.c:249:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#251: FILE: /tmp/f1-10805/bgp_routemap_nb.c:251:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#252: FILE: /tmp/f1-10805/bgp_routemap_nb.c:252:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#256: FILE: /tmp/f1-10805/bgp_routemap_nb.c:256:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#258: FILE: /tmp/f1-10805/bgp_routemap_nb.c:258:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#259: FILE: /tmp/f1-10805/bgp_routemap_nb.c:259:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#263: FILE: /tmp/f1-10805/bgp_routemap_nb.c:263:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#265: FILE: /tmp/f1-10805/bgp_routemap_nb.c:265:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#266: FILE: /tmp/f1-10805/bgp_routemap_nb.c:266:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#270: FILE: /tmp/f1-10805/bgp_routemap_nb.c:270:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#272: FILE: /tmp/f1-10805/bgp_routemap_nb.c:272:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#273: FILE: /tmp/f1-10805/bgp_routemap_nb.c:273:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#277: FILE: /tmp/f1-10805/bgp_routemap_nb.c:277:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#279: FILE: /tmp/f1-10805/bgp_routemap_nb.c:279:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#280: FILE: /tmp/f1-10805/bgp_routemap_nb.c:280:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#284: FILE: /tmp/f1-10805/bgp_routemap_nb.c:284:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#286: FILE: /tmp/f1-10805/bgp_routemap_nb.c:286:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#287: FILE: /tmp/f1-10805/bgp_routemap_nb.c:287:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#291: FILE: /tmp/f1-10805/bgp_routemap_nb.c:291:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#293: FILE: /tmp/f1-10805/bgp_routemap_nb.c:293:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#294: FILE: /tmp/f1-10805/bgp_routemap_nb.c:294:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#298: FILE: /tmp/f1-10805/bgp_routemap_nb.c:298:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#300: FILE: /tmp/f1-10805/bgp_routemap_nb.c:300:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#301: FILE: /tmp/f1-10805/bgp_routemap_nb.c:301:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#305: FILE: /tmp/f1-10805/bgp_routemap_nb.c:305:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#307: FILE: /tmp/f1-10805/bgp_routemap_nb.c:307:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#308: FILE: /tmp/f1-10805/bgp_routemap_nb.c:308:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#312: FILE: /tmp/f1-10805/bgp_routemap_nb.c:312:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#314: FILE: /tmp/f1-10805/bgp_routemap_nb.c:314:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#315: FILE: /tmp/f1-10805/bgp_routemap_nb.c:315:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#319: FILE: /tmp/f1-10805/bgp_routemap_nb.c:319:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#321: FILE: /tmp/f1-10805/bgp_routemap_nb.c:321:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#325: FILE: /tmp/f1-10805/bgp_routemap_nb.c:325:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#327: FILE: /tmp/f1-10805/bgp_routemap_nb.c:327:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#328: FILE: /tmp/f1-10805/bgp_routemap_nb.c:328:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#332: FILE: /tmp/f1-10805/bgp_routemap_nb.c:332:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#334: FILE: /tmp/f1-10805/bgp_routemap_nb.c:334:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#335: FILE: /tmp/f1-10805/bgp_routemap_nb.c:335:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#339: FILE: /tmp/f1-10805/bgp_routemap_nb.c:339:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#341: FILE: /tmp/f1-10805/bgp_routemap_nb.c:341:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#342: FILE: /tmp/f1-10805/bgp_routemap_nb.c:342:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,

WARNING: line over 80 characters
#346: FILE: /tmp/f1-10805/bgp_routemap_nb.c:346:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb",

WARNING: line over 80 characters
#348: FILE: /tmp/f1-10805/bgp_routemap_nb.c:348:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-10805/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-10805/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-10805/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-10805/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-10805/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-10805/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-10805/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-10805/bgp_routemap_nb.c:368:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify,

WARNING: line over 80 characters
#369: FILE: /tmp/f1-10805/bgp_routemap_nb.c:369:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy,
Report for bgp_routemap_nb_config.c | 41 issues
===============================================
ERROR: do not use assignment in if condition
#71: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:71:
+			if ((tmpstr = route_map_get_match_arg(index, command))

ERROR: switch and case should be at the same indent
#82: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:82:
+	switch (ret) {
+		case RMAP_RULE_MISSING:
[...]
+		case RMAP_COMPILE_ERROR:
[...]
+		case RMAP_COMPILE_SUCCESS:

WARNING: line over 80 characters
#106: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:106:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#109: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#145: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:145:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#161: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:161:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script

WARNING: line over 80 characters
#216: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:216:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#271: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:271:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#326: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:326:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#380: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:380:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#435: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:435:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#438: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:438:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#474: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:474:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#490: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:490:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#545: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:545:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#548: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:548:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#584: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:584:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#600: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:600:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#658: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:658:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: line over 80 characters
#700: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:700:
+						  args->errmsg, args->errmsg_len);

WARNING: line over 80 characters
#749: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:749:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#752: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:752:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#786: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:786:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#802: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:802:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#857: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:857:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#897: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:897:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#913: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:913:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#916: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:916:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#952: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:952:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#968: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:968:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1026: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1026:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1029: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1029:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1044: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1044:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1061: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1061:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1064: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1064:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1079: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1079:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1095: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1095:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1150: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1150:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1206: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1258: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1258:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1312: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1312:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1367: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1367:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1419: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1419:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1472: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1472:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1544: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1544:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1608: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1608:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1660: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1660:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1713: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1713:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1765: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1765:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#1818: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1818:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

WARNING: line over 80 characters
#1870: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1870:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#1922: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1922:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#1974: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:1974:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2029: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2029:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2092: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2092:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2147: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2147:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2206: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2260: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2260:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2321: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2321:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2376: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2376:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2407: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2425: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2425:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2442: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2442:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2445: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2445:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

WARNING: line over 80 characters
#2460: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2460:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

WARNING: line over 80 characters
#2477: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2477:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name

WARNING: line over 80 characters
#2545: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2545:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb

WARNING: line over 80 characters
#2587: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2587:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type

WARNING: line over 80 characters
#2605: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2605:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(

WARNING: line over 80 characters
#2623: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2623:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific

WARNING: line over 80 characters
#2626: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2626:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(

WARNING: line over 80 characters
#2633: FILE: /tmp/f1-10805/bgp_routemap_nb_config.c:2633:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(
Report for bgp_routemap_nb.h | 156 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-10805/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-10805/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-10805/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-10805/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-10805/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-10805/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-10805/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-10805/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-10805/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-10805/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-10805/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-10805/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-10805/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-10805/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-10805/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-10805/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-10805/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-10805/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-10805/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-10805/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-10805/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-10805/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-10805/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-10805/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-10805/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-10805/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-10805/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-10805/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-10805/bgp_routemap_nb.h:60:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-10805/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-10805/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-10805/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-10805/bgp_routemap_nb.h:64:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-10805/bgp_routemap_nb.h:65:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-10805/bgp_routemap_nb.h:66:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-10805/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-10805/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-10805/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-10805/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-10805/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-10805/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-10805/bgp_routemap_nb.h:73:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-10805/bgp_routemap_nb.h:74:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-10805/bgp_routemap_nb.h:75:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-10805/bgp_routemap_nb.h:76:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-10805/bgp_routemap_nb.h:77:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-10805/bgp_routemap_nb.h:78:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-10805/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-10805/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-10805/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-10805/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-10805/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-10805/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-10805/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-10805/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-10805/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-10805/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-10805/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-10805/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-10805/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-10805/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-10805/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-10805/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-10805/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-10805/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-10805/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-10805/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-10805/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-10805/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-10805/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-10805/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-10805/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-10805/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-10805/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-10805/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-10805/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-10805/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-10805/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-10805/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-10805/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-10805/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-10805/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-10805/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-10805/bgp_routemap_nb.h:115:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-10805/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-10805/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-10805/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-10805/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-10805/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-10805/bgp_routemap_nb.h:121:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-10805/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-10805/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-10805/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-10805/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-10805/bgp_routemap_nb.h:126:
+void lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-10805/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-10805/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-10805/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-10805/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-10805/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#132: FILE: /tmp/f1-10805/bgp_routemap_nb.h:132:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#45: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:45:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address",

WARNING: line over 80 characters
#47: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:47:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#48: FILE: /tmp/f1-10805/ospf6_routemap_nb.c:48:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 8 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-10805/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#80: FILE: /tmp/f1-10805/ospf6_routemap_nb_config.c:80:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/ospf6_routemap_nb.h:32:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-10805/ospf6_routemap_nb.h:33:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-10805/ospf6_routemap_nb.h:34:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 12 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-10805/ospf_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/ospf_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/ospf_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,
Report for ospf_routemap_nb_config.c | 4 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-10805/ospf_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type
Report for ospf_routemap_nb.h | 8 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-10805/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for routemap_cli.c | 148 issues
===============================================
< WARNING: line over 80 characters
< #179: FILE: /tmp/f1-10805/routemap_cli.c:179:
< WARNING: line over 80 characters
< #202: FILE: /tmp/f1-10805/routemap_cli.c:202:
< WARNING: line over 80 characters
< #260: FILE: /tmp/f1-10805/routemap_cli.c:260:
< WARNING: line over 80 characters
< #283: FILE: /tmp/f1-10805/routemap_cli.c:283:
< WARNING: line over 80 characters
< #301: FILE: /tmp/f1-10805/routemap_cli.c:301:
< WARNING: line over 80 characters
< #324: FILE: /tmp/f1-10805/routemap_cli.c:324:
< WARNING: line over 80 characters
< #341: FILE: /tmp/f1-10805/routemap_cli.c:341:
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-10805/routemap_cli.c:361:
< WARNING: line over 80 characters
< #377: FILE: /tmp/f1-10805/routemap_cli.c:377:
< WARNING: line over 80 characters
< #398: FILE: /tmp/f1-10805/routemap_cli.c:398:
< WARNING: line over 80 characters
< #454: FILE: /tmp/f1-10805/routemap_cli.c:454:
< WARNING: line over 80 characters
< #474: FILE: /tmp/f1-10805/routemap_cli.c:474:
< ERROR: do not use assignment in if condition
< #565: FILE: /tmp/f1-10805/routemap_cli.c:565:
< WARNING: line over 80 characters
< #614: FILE: /tmp/f1-10805/routemap_cli.c:614:
< WARNING: line over 80 characters
< #619: FILE: /tmp/f1-10805/routemap_cli.c:619:
< WARNING: line over 80 characters
< #624: FILE: /tmp/f1-10805/routemap_cli.c:624:
< WARNING: line over 80 characters
< #629: FILE: /tmp/f1-10805/routemap_cli.c:629:
< WARNING: line over 80 characters
< #634: FILE: /tmp/f1-10805/routemap_cli.c:634:
< WARNING: line over 80 characters
< #639: FILE: /tmp/f1-10805/routemap_cli.c:639:
< WARNING: line over 80 characters
< #644: FILE: /tmp/f1-10805/routemap_cli.c:644:
< WARNING: line over 80 characters
< #649: FILE: /tmp/f1-10805/routemap_cli.c:649:
< WARNING: line over 80 characters
< #654: FILE: /tmp/f1-10805/routemap_cli.c:654:
< WARNING: line over 80 characters
< #659: FILE: /tmp/f1-10805/routemap_cli.c:659:
< ERROR: do not use assignment in if condition
< #662: FILE: /tmp/f1-10805/routemap_cli.c:662:
< WARNING: line over 80 characters
< #664: FILE: /tmp/f1-10805/routemap_cli.c:664:
< ERROR: do not use assignment in if condition
< #667: FILE: /tmp/f1-10805/routemap_cli.c:667:
< WARNING: line over 80 characters
< #670: FILE: /tmp/f1-10805/routemap_cli.c:670:
< ERROR: do not use assignment in if condition
< #673: FILE: /tmp/f1-10805/routemap_cli.c:673:
< WARNING: line over 80 characters
< #676: FILE: /tmp/f1-10805/routemap_cli.c:676:
< WARNING: line over 80 characters
< #681: FILE: /tmp/f1-10805/routemap_cli.c:681:
< WARNING: line over 80 characters
< #690: FILE: /tmp/f1-10805/routemap_cli.c:690:
< WARNING: line over 80 characters
< #695: FILE: /tmp/f1-10805/routemap_cli.c:695:
< WARNING: line over 80 characters
< #702: FILE: /tmp/f1-10805/routemap_cli.c:702:
< WARNING: line over 80 characters
< #707: FILE: /tmp/f1-10805/routemap_cli.c:707:
< WARNING: line over 80 characters
< #712: FILE: /tmp/f1-10805/routemap_cli.c:712:
< WARNING: line over 80 characters
< #717: FILE: /tmp/f1-10805/routemap_cli.c:717:
< ERROR: do not use assignment in if condition
< #720: FILE: /tmp/f1-10805/routemap_cli.c:720:
< WARNING: line over 80 characters
< #733: FILE: /tmp/f1-10805/routemap_cli.c:733:
< ERROR: do not use assignment in if condition
< #736: FILE: /tmp/f1-10805/routemap_cli.c:736:
< WARNING: line over 80 characters
< #738: FILE: /tmp/f1-10805/routemap_cli.c:738:
< ERROR: do not use assignment in if condition
< #747: FILE: /tmp/f1-10805/routemap_cli.c:747:
< WARNING: line over 80 characters
< #749: FILE: /tmp/f1-10805/routemap_cli.c:749:
< WARNING: line over 80 characters
< #756: FILE: /tmp/f1-10805/routemap_cli.c:756:
< ERROR: do not use assignment in if condition
< #767: FILE: /tmp/f1-10805/routemap_cli.c:767:
< WARNING: line over 80 characters
< #769: FILE: /tmp/f1-10805/routemap_cli.c:769:
< WARNING: line over 80 characters
< #776: FILE: /tmp/f1-10805/routemap_cli.c:776:
< ERROR: do not use assignment in if condition
< #788: FILE: /tmp/f1-10805/routemap_cli.c:788:
< WARNING: line over 80 characters
< #790: FILE: /tmp/f1-10805/routemap_cli.c:790:
< WARNING: line over 80 characters
< #801: FILE: /tmp/f1-10805/routemap_cli.c:801:
< WARNING: line over 80 characters
< #806: FILE: /tmp/f1-10805/routemap_cli.c:806:
< WARNING: line over 80 characters
< #1076: FILE: /tmp/f1-10805/routemap_cli.c:1076:
< WARNING: line over 80 characters
< #1080: FILE: /tmp/f1-10805/routemap_cli.c:1080:
< WARNING: line over 80 characters
< #1085: FILE: /tmp/f1-10805/routemap_cli.c:1085:
< WARNING: line over 80 characters
< #1090: FILE: /tmp/f1-10805/routemap_cli.c:1090:
< WARNING: line over 80 characters
< #1095: FILE: /tmp/f1-10805/routemap_cli.c:1095:
< WARNING: line over 80 characters
< #1110: FILE: /tmp/f1-10805/routemap_cli.c:1110:
< WARNING: line over 80 characters
< #1115: FILE: /tmp/f1-10805/routemap_cli.c:1115:
< WARNING: line over 80 characters
< #1120: FILE: /tmp/f1-10805/routemap_cli.c:1120:
< WARNING: line over 80 characters
< #1132: FILE: /tmp/f1-10805/routemap_cli.c:1132:
< ERROR: do not use assignment in if condition
< #1135: FILE: /tmp/f1-10805/routemap_cli.c:1135:
< WARNING: line over 80 characters
< #1137: FILE: /tmp/f1-10805/routemap_cli.c:1137:
< ERROR: do not use assignment in if condition
< #1146: FILE: /tmp/f1-10805/routemap_cli.c:1146:
< WARNING: line over 80 characters
< #1148: FILE: /tmp/f1-10805/routemap_cli.c:1148:
< WARNING: line over 80 characters
< #1158: FILE: /tmp/f1-10805/routemap_cli.c:1158:
< WARNING: line over 80 characters
< #1162: FILE: /tmp/f1-10805/routemap_cli.c:1162:
< WARNING: line over 80 characters
< #1167: FILE: /tmp/f1-10805/routemap_cli.c:1167:
< WARNING: line over 80 characters
< #1173: FILE: /tmp/f1-10805/routemap_cli.c:1173:
< WARNING: line over 80 characters
< #1177: FILE: /tmp/f1-10805/routemap_cli.c:1177:
< WARNING: line over 80 characters
< #1182: FILE: /tmp/f1-10805/routemap_cli.c:1182:
< WARNING: line over 80 characters
< #1189: FILE: /tmp/f1-10805/routemap_cli.c:1189:
< WARNING: line over 80 characters
< #1194: FILE: /tmp/f1-10805/routemap_cli.c:1194:
< WARNING: line over 80 characters
< #1199: FILE: /tmp/f1-10805/routemap_cli.c:1199:
< WARNING: line over 80 characters
< #1202: FILE: /tmp/f1-10805/routemap_cli.c:1202:
< WARNING: line over 80 characters
< #1207: FILE: /tmp/f1-10805/routemap_cli.c:1207:
Report for routemap_northbound.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #1210: FILE: /tmp/f1-10805/routemap_northbound.c:1210:
< WARNING: line over 80 characters
< #1367: FILE: /tmp/f1-10805/routemap_northbound.c:1367:
< WARNING: line over 80 characters
< #1369: FILE: /tmp/f1-10805/routemap_northbound.c:1369:
< WARNING: line over 80 characters
< #1370: FILE: /tmp/f1-10805/routemap_northbound.c:1370:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-10805/zebra_routemap.c:361:
< WARNING: line over 80 characters
< #385: FILE: /tmp/f1-10805/zebra_routemap.c:385:
< WARNING: line over 80 characters
< #402: FILE: /tmp/f1-10805/zebra_routemap.c:402:
< WARNING: line over 80 characters
< #426: FILE: /tmp/f1-10805/zebra_routemap.c:426:
< WARNING: line over 80 characters
< #443: FILE: /tmp/f1-10805/zebra_routemap.c:443:
< WARNING: line over 80 characters
< #467: FILE: /tmp/f1-10805/zebra_routemap.c:467:
< WARNING: line over 80 characters
< #482: FILE: /tmp/f1-10805/zebra_routemap.c:482:
< WARNING: line over 80 characters
< #503: FILE: /tmp/f1-10805/zebra_routemap.c:503:
< WARNING: line over 80 characters
< #518: FILE: /tmp/f1-10805/zebra_routemap.c:518:
< WARNING: line over 80 characters
< #538: FILE: /tmp/f1-10805/zebra_routemap.c:538:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-10805/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-10805/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-10805/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-10805/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-10805/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-10805/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-10805/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-10805/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-10805/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-10805/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-10805/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-10805/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-10805/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-10805/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-10805/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-10805/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 48 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#55: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:55:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#71: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:71:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#74: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:74:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#109: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#126: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:126:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#164: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:164:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#180: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:180:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#227: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:227:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#243: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#321: FILE: /tmp/f1-10805/zebra_routemap_nb_config.c:321:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-10805/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-10805/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-10805/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-10805/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-10805/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-10805/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-10805/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-10805/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-10805/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-10805/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-10805/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-10805/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

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

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
<stdin>:10993: trailing whitespace.
    case script { 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 62 issues
===============================================
< WARNING: line over 80 characters
< #3852: FILE: /tmp/f1-16840/bgp_routemap.c:3852:
< WARNING: line over 80 characters
< #3873: FILE: /tmp/f1-16840/bgp_routemap.c:3873:
< WARNING: line over 80 characters
< #3917: FILE: /tmp/f1-16840/bgp_routemap.c:3917:
< WARNING: line over 80 characters
< #3945: FILE: /tmp/f1-16840/bgp_routemap.c:3945:
< WARNING: line over 80 characters
< #4002: FILE: /tmp/f1-16840/bgp_routemap.c:4002:
< WARNING: line over 80 characters
< #4024: FILE: /tmp/f1-16840/bgp_routemap.c:4024:
< WARNING: line over 80 characters
< #4284: FILE: /tmp/f1-16840/bgp_routemap.c:4284:
< WARNING: line over 80 characters
< #4311: FILE: /tmp/f1-16840/bgp_routemap.c:4311:
< WARNING: line over 80 characters
< #4328: FILE: /tmp/f1-16840/bgp_routemap.c:4328:
< WARNING: line over 80 characters
< #4352: FILE: /tmp/f1-16840/bgp_routemap.c:4352:
< WARNING: line over 80 characters
< #4368: FILE: /tmp/f1-16840/bgp_routemap.c:4368:
< WARNING: line over 80 characters
< #4392: FILE: /tmp/f1-16840/bgp_routemap.c:4392:
< WARNING: line over 80 characters
< #4421: FILE: /tmp/f1-16840/bgp_routemap.c:4421:
< WARNING: line over 80 characters
< #4432: FILE: /tmp/f1-16840/bgp_routemap.c:4432:
< WARNING: line over 80 characters
< #4465: FILE: /tmp/f1-16840/bgp_routemap.c:4465:
< WARNING: line over 80 characters
< #4482: FILE: /tmp/f1-16840/bgp_routemap.c:4482:
< WARNING: line over 80 characters
< #4493: FILE: /tmp/f1-16840/bgp_routemap.c:4493:
< WARNING: line over 80 characters
< #4526: FILE: /tmp/f1-16840/bgp_routemap.c:4526:
< WARNING: line over 80 characters
< #4542: FILE: /tmp/f1-16840/bgp_routemap.c:4542:
< WARNING: line over 80 characters
< #4552: FILE: /tmp/f1-16840/bgp_routemap.c:4552:
< WARNING: line over 80 characters
< #4569: FILE: /tmp/f1-16840/bgp_routemap.c:4569:
< WARNING: line over 80 characters
< #5309: FILE: /tmp/f1-16840/bgp_routemap.c:5309:
< WARNING: line over 80 characters
< #5336: FILE: /tmp/f1-16840/bgp_routemap.c:5336:
< WARNING: line over 80 characters
< #5872: FILE: /tmp/f1-16840/bgp_routemap.c:5872:
< WARNING: line over 80 characters
< #5881: FILE: /tmp/f1-16840/bgp_routemap.c:5881:
< WARNING: line over 80 characters
< #5919: FILE: /tmp/f1-16840/bgp_routemap.c:5919:
< WARNING: line over 80 characters
< #5923: FILE: /tmp/f1-16840/bgp_routemap.c:5923:
< WARNING: line over 80 characters
< #5951: FILE: /tmp/f1-16840/bgp_routemap.c:5951:
< WARNING: line over 80 characters
< #5960: FILE: /tmp/f1-16840/bgp_routemap.c:5960:
< WARNING: line over 80 characters
< #5993: FILE: /tmp/f1-16840/bgp_routemap.c:5993:
< WARNING: line over 80 characters
< #5997: FILE: /tmp/f1-16840/bgp_routemap.c:5997:
Report for bgp_routemap_nb.c | 64 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-16840/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-16840/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-16840/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-16840/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-16840/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_script_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-16840/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_script_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-16840/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-16840/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-16840/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-16840/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-16840/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-16840/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-16840/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-16840/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-16840/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-16840/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-16840/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-16840/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-16840/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-16840/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-16840/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-16840/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-16840/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-16840/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-16840/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-16840/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-16840/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-16840/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-16840/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-16840/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-16840/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-16840/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-16840/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-16840/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-16840/bgp_routemap_nb.c:112:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-16840/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-16840/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-16840/bgp_routemap_nb.c:119:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-16840/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-16840/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-16840/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-16840/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-16840/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-16840/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-16840/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-16840/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-16840/bgp_routemap_nb.c:140:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#144: FILE: /tmp/f1-16840/bgp_routemap_nb.c:144:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#146: FILE: /tmp/f1-16840/bgp_routemap_nb.c:146:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#147: FILE: /tmp/f1-16840/bgp_routemap_nb.c:147:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-16840/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-16840/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-16840/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-16840/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-16840/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-16840/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-16840/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-16840/bgp_routemap_nb.c:167:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#168: FILE: /tmp/f1-16840/bgp_routemap_nb.c:168:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#172: FILE: /tmp/f1-16840/bgp_routemap_nb.c:172:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#174: FILE: /tmp/f1-16840/bgp_routemap_nb.c:174:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#175: FILE: /tmp/f1-16840/bgp_routemap_nb.c:175:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#179: FILE: /tmp/f1-16840/bgp_routemap_nb.c:179:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#181: FILE: /tmp/f1-16840/bgp_routemap_nb.c:181:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#182: FILE: /tmp/f1-16840/bgp_routemap_nb.c:182:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#186: FILE: /tmp/f1-16840/bgp_routemap_nb.c:186:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#188: FILE: /tmp/f1-16840/bgp_routemap_nb.c:188:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#189: FILE: /tmp/f1-16840/bgp_routemap_nb.c:189:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#193: FILE: /tmp/f1-16840/bgp_routemap_nb.c:193:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#195: FILE: /tmp/f1-16840/bgp_routemap_nb.c:195:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#196: FILE: /tmp/f1-16840/bgp_routemap_nb.c:196:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#200: FILE: /tmp/f1-16840/bgp_routemap_nb.c:200:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#202: FILE: /tmp/f1-16840/bgp_routemap_nb.c:202:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#203: FILE: /tmp/f1-16840/bgp_routemap_nb.c:203:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#207: FILE: /tmp/f1-16840/bgp_routemap_nb.c:207:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#209: FILE: /tmp/f1-16840/bgp_routemap_nb.c:209:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#210: FILE: /tmp/f1-16840/bgp_routemap_nb.c:210:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#214: FILE: /tmp/f1-16840/bgp_routemap_nb.c:214:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#216: FILE: /tmp/f1-16840/bgp_routemap_nb.c:216:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#217: FILE: /tmp/f1-16840/bgp_routemap_nb.c:217:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#221: FILE: /tmp/f1-16840/bgp_routemap_nb.c:221:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#223: FILE: /tmp/f1-16840/bgp_routemap_nb.c:223:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#224: FILE: /tmp/f1-16840/bgp_routemap_nb.c:224:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#228: FILE: /tmp/f1-16840/bgp_routemap_nb.c:228:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#230: FILE: /tmp/f1-16840/bgp_routemap_nb.c:230:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#231: FILE: /tmp/f1-16840/bgp_routemap_nb.c:231:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#235: FILE: /tmp/f1-16840/bgp_routemap_nb.c:235:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#237: FILE: /tmp/f1-16840/bgp_routemap_nb.c:237:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#238: FILE: /tmp/f1-16840/bgp_routemap_nb.c:238:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#242: FILE: /tmp/f1-16840/bgp_routemap_nb.c:242:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#244: FILE: /tmp/f1-16840/bgp_routemap_nb.c:244:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#245: FILE: /tmp/f1-16840/bgp_routemap_nb.c:245:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#249: FILE: /tmp/f1-16840/bgp_routemap_nb.c:249:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#251: FILE: /tmp/f1-16840/bgp_routemap_nb.c:251:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#252: FILE: /tmp/f1-16840/bgp_routemap_nb.c:252:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#256: FILE: /tmp/f1-16840/bgp_routemap_nb.c:256:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#258: FILE: /tmp/f1-16840/bgp_routemap_nb.c:258:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#259: FILE: /tmp/f1-16840/bgp_routemap_nb.c:259:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#263: FILE: /tmp/f1-16840/bgp_routemap_nb.c:263:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#265: FILE: /tmp/f1-16840/bgp_routemap_nb.c:265:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#266: FILE: /tmp/f1-16840/bgp_routemap_nb.c:266:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#270: FILE: /tmp/f1-16840/bgp_routemap_nb.c:270:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#272: FILE: /tmp/f1-16840/bgp_routemap_nb.c:272:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#273: FILE: /tmp/f1-16840/bgp_routemap_nb.c:273:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#277: FILE: /tmp/f1-16840/bgp_routemap_nb.c:277:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#279: FILE: /tmp/f1-16840/bgp_routemap_nb.c:279:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#280: FILE: /tmp/f1-16840/bgp_routemap_nb.c:280:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#284: FILE: /tmp/f1-16840/bgp_routemap_nb.c:284:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#286: FILE: /tmp/f1-16840/bgp_routemap_nb.c:286:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#287: FILE: /tmp/f1-16840/bgp_routemap_nb.c:287:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#291: FILE: /tmp/f1-16840/bgp_routemap_nb.c:291:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#293: FILE: /tmp/f1-16840/bgp_routemap_nb.c:293:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#294: FILE: /tmp/f1-16840/bgp_routemap_nb.c:294:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#298: FILE: /tmp/f1-16840/bgp_routemap_nb.c:298:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#300: FILE: /tmp/f1-16840/bgp_routemap_nb.c:300:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#301: FILE: /tmp/f1-16840/bgp_routemap_nb.c:301:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#305: FILE: /tmp/f1-16840/bgp_routemap_nb.c:305:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#307: FILE: /tmp/f1-16840/bgp_routemap_nb.c:307:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#308: FILE: /tmp/f1-16840/bgp_routemap_nb.c:308:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#312: FILE: /tmp/f1-16840/bgp_routemap_nb.c:312:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#314: FILE: /tmp/f1-16840/bgp_routemap_nb.c:314:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#315: FILE: /tmp/f1-16840/bgp_routemap_nb.c:315:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#319: FILE: /tmp/f1-16840/bgp_routemap_nb.c:319:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#321: FILE: /tmp/f1-16840/bgp_routemap_nb.c:321:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#325: FILE: /tmp/f1-16840/bgp_routemap_nb.c:325:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#327: FILE: /tmp/f1-16840/bgp_routemap_nb.c:327:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#328: FILE: /tmp/f1-16840/bgp_routemap_nb.c:328:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#332: FILE: /tmp/f1-16840/bgp_routemap_nb.c:332:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#334: FILE: /tmp/f1-16840/bgp_routemap_nb.c:334:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#335: FILE: /tmp/f1-16840/bgp_routemap_nb.c:335:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#339: FILE: /tmp/f1-16840/bgp_routemap_nb.c:339:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#341: FILE: /tmp/f1-16840/bgp_routemap_nb.c:341:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#342: FILE: /tmp/f1-16840/bgp_routemap_nb.c:342:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,

WARNING: line over 80 characters
#346: FILE: /tmp/f1-16840/bgp_routemap_nb.c:346:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb",

WARNING: line over 80 characters
#348: FILE: /tmp/f1-16840/bgp_routemap_nb.c:348:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-16840/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-16840/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-16840/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-16840/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-16840/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-16840/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-16840/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-16840/bgp_routemap_nb.c:368:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify,

WARNING: line over 80 characters
#369: FILE: /tmp/f1-16840/bgp_routemap_nb.c:369:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy,
Report for bgp_routemap_nb_config.c | 41 issues
===============================================
ERROR: do not use assignment in if condition
#71: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:71:
+			if ((tmpstr = route_map_get_match_arg(index, command))

ERROR: switch and case should be at the same indent
#82: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:82:
+	switch (ret) {
+		case RMAP_RULE_MISSING:
[...]
+		case RMAP_COMPILE_ERROR:
[...]
+		case RMAP_COMPILE_SUCCESS:

WARNING: line over 80 characters
#106: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:106:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#109: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#145: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:145:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#161: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:161:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script

WARNING: line over 80 characters
#216: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:216:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#271: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:271:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#326: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:326:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#380: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:380:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#435: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:435:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#438: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:438:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#474: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:474:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#490: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:490:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#545: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:545:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#548: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:548:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#584: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:584:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#600: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:600:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#658: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:658:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: line over 80 characters
#700: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:700:
+						  args->errmsg, args->errmsg_len);

WARNING: line over 80 characters
#749: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:749:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#752: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:752:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#786: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:786:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#802: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:802:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#857: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:857:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#897: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:897:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#913: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:913:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#916: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:916:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#952: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:952:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#968: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:968:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1026: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1026:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1029: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1029:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1044: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1044:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1061: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1061:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1064: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1064:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1079: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1079:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1095: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1095:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1150: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1150:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1206: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1258: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1258:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1312: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1312:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1367: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1367:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1419: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1419:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1472: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1472:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1544: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1544:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1608: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1608:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1660: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1660:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1713: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1713:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1765: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1765:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#1818: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1818:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

WARNING: line over 80 characters
#1870: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1870:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#1922: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1922:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#1974: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:1974:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2029: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2029:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2092: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2092:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2147: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2147:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2206: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2260: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2260:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2321: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2321:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2376: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2376:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2407: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2425: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2425:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2442: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2442:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2445: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2445:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

WARNING: line over 80 characters
#2460: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2460:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

WARNING: line over 80 characters
#2477: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2477:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name

WARNING: line over 80 characters
#2545: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2545:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb

WARNING: line over 80 characters
#2587: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2587:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type

WARNING: line over 80 characters
#2605: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2605:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(

WARNING: line over 80 characters
#2623: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2623:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific

WARNING: line over 80 characters
#2626: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2626:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(

WARNING: line over 80 characters
#2633: FILE: /tmp/f1-16840/bgp_routemap_nb_config.c:2633:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(
Report for bgp_routemap_nb.h | 156 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-16840/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-16840/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-16840/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-16840/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-16840/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-16840/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-16840/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-16840/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-16840/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-16840/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-16840/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-16840/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-16840/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-16840/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-16840/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-16840/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-16840/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-16840/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-16840/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-16840/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-16840/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-16840/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-16840/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-16840/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-16840/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-16840/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-16840/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-16840/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-16840/bgp_routemap_nb.h:60:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-16840/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-16840/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-16840/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-16840/bgp_routemap_nb.h:64:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-16840/bgp_routemap_nb.h:65:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-16840/bgp_routemap_nb.h:66:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-16840/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-16840/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-16840/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-16840/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-16840/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-16840/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-16840/bgp_routemap_nb.h:73:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-16840/bgp_routemap_nb.h:74:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-16840/bgp_routemap_nb.h:75:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-16840/bgp_routemap_nb.h:76:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-16840/bgp_routemap_nb.h:77:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-16840/bgp_routemap_nb.h:78:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-16840/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-16840/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-16840/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-16840/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-16840/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-16840/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-16840/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-16840/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-16840/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-16840/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-16840/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-16840/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-16840/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-16840/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-16840/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-16840/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-16840/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-16840/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-16840/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-16840/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-16840/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-16840/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-16840/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-16840/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-16840/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-16840/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-16840/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-16840/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-16840/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-16840/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-16840/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-16840/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-16840/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-16840/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-16840/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-16840/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-16840/bgp_routemap_nb.h:115:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-16840/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-16840/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-16840/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-16840/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-16840/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-16840/bgp_routemap_nb.h:121:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-16840/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-16840/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-16840/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-16840/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-16840/bgp_routemap_nb.h:126:
+void lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-16840/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-16840/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-16840/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-16840/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-16840/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#132: FILE: /tmp/f1-16840/bgp_routemap_nb.h:132:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#45: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:45:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address",

WARNING: line over 80 characters
#47: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:47:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#48: FILE: /tmp/f1-16840/ospf6_routemap_nb.c:48:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 8 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-16840/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#80: FILE: /tmp/f1-16840/ospf6_routemap_nb_config.c:80:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/ospf6_routemap_nb.h:32:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-16840/ospf6_routemap_nb.h:33:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-16840/ospf6_routemap_nb.h:34:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 12 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-16840/ospf_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/ospf_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/ospf_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,
Report for ospf_routemap_nb_config.c | 4 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-16840/ospf_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type
Report for ospf_routemap_nb.h | 8 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-16840/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for routemap_cli.c | 148 issues
===============================================
< WARNING: line over 80 characters
< #179: FILE: /tmp/f1-16840/routemap_cli.c:179:
< WARNING: line over 80 characters
< #202: FILE: /tmp/f1-16840/routemap_cli.c:202:
< WARNING: line over 80 characters
< #260: FILE: /tmp/f1-16840/routemap_cli.c:260:
< WARNING: line over 80 characters
< #283: FILE: /tmp/f1-16840/routemap_cli.c:283:
< WARNING: line over 80 characters
< #301: FILE: /tmp/f1-16840/routemap_cli.c:301:
< WARNING: line over 80 characters
< #324: FILE: /tmp/f1-16840/routemap_cli.c:324:
< WARNING: line over 80 characters
< #341: FILE: /tmp/f1-16840/routemap_cli.c:341:
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-16840/routemap_cli.c:361:
< WARNING: line over 80 characters
< #377: FILE: /tmp/f1-16840/routemap_cli.c:377:
< WARNING: line over 80 characters
< #398: FILE: /tmp/f1-16840/routemap_cli.c:398:
< WARNING: line over 80 characters
< #454: FILE: /tmp/f1-16840/routemap_cli.c:454:
< WARNING: line over 80 characters
< #474: FILE: /tmp/f1-16840/routemap_cli.c:474:
< ERROR: do not use assignment in if condition
< #565: FILE: /tmp/f1-16840/routemap_cli.c:565:
< WARNING: line over 80 characters
< #614: FILE: /tmp/f1-16840/routemap_cli.c:614:
< WARNING: line over 80 characters
< #619: FILE: /tmp/f1-16840/routemap_cli.c:619:
< WARNING: line over 80 characters
< #624: FILE: /tmp/f1-16840/routemap_cli.c:624:
< WARNING: line over 80 characters
< #629: FILE: /tmp/f1-16840/routemap_cli.c:629:
< WARNING: line over 80 characters
< #634: FILE: /tmp/f1-16840/routemap_cli.c:634:
< WARNING: line over 80 characters
< #639: FILE: /tmp/f1-16840/routemap_cli.c:639:
< WARNING: line over 80 characters
< #644: FILE: /tmp/f1-16840/routemap_cli.c:644:
< WARNING: line over 80 characters
< #649: FILE: /tmp/f1-16840/routemap_cli.c:649:
< WARNING: line over 80 characters
< #654: FILE: /tmp/f1-16840/routemap_cli.c:654:
< WARNING: line over 80 characters
< #659: FILE: /tmp/f1-16840/routemap_cli.c:659:
< ERROR: do not use assignment in if condition
< #662: FILE: /tmp/f1-16840/routemap_cli.c:662:
< WARNING: line over 80 characters
< #664: FILE: /tmp/f1-16840/routemap_cli.c:664:
< ERROR: do not use assignment in if condition
< #667: FILE: /tmp/f1-16840/routemap_cli.c:667:
< WARNING: line over 80 characters
< #670: FILE: /tmp/f1-16840/routemap_cli.c:670:
< ERROR: do not use assignment in if condition
< #673: FILE: /tmp/f1-16840/routemap_cli.c:673:
< WARNING: line over 80 characters
< #676: FILE: /tmp/f1-16840/routemap_cli.c:676:
< WARNING: line over 80 characters
< #681: FILE: /tmp/f1-16840/routemap_cli.c:681:
< WARNING: line over 80 characters
< #690: FILE: /tmp/f1-16840/routemap_cli.c:690:
< WARNING: line over 80 characters
< #695: FILE: /tmp/f1-16840/routemap_cli.c:695:
< WARNING: line over 80 characters
< #702: FILE: /tmp/f1-16840/routemap_cli.c:702:
< WARNING: line over 80 characters
< #707: FILE: /tmp/f1-16840/routemap_cli.c:707:
< WARNING: line over 80 characters
< #712: FILE: /tmp/f1-16840/routemap_cli.c:712:
< WARNING: line over 80 characters
< #717: FILE: /tmp/f1-16840/routemap_cli.c:717:
< ERROR: do not use assignment in if condition
< #720: FILE: /tmp/f1-16840/routemap_cli.c:720:
< WARNING: line over 80 characters
< #733: FILE: /tmp/f1-16840/routemap_cli.c:733:
< ERROR: do not use assignment in if condition
< #736: FILE: /tmp/f1-16840/routemap_cli.c:736:
< WARNING: line over 80 characters
< #738: FILE: /tmp/f1-16840/routemap_cli.c:738:
< ERROR: do not use assignment in if condition
< #747: FILE: /tmp/f1-16840/routemap_cli.c:747:
< WARNING: line over 80 characters
< #749: FILE: /tmp/f1-16840/routemap_cli.c:749:
< WARNING: line over 80 characters
< #756: FILE: /tmp/f1-16840/routemap_cli.c:756:
< ERROR: do not use assignment in if condition
< #767: FILE: /tmp/f1-16840/routemap_cli.c:767:
< WARNING: line over 80 characters
< #769: FILE: /tmp/f1-16840/routemap_cli.c:769:
< WARNING: line over 80 characters
< #776: FILE: /tmp/f1-16840/routemap_cli.c:776:
< ERROR: do not use assignment in if condition
< #788: FILE: /tmp/f1-16840/routemap_cli.c:788:
< WARNING: line over 80 characters
< #790: FILE: /tmp/f1-16840/routemap_cli.c:790:
< WARNING: line over 80 characters
< #801: FILE: /tmp/f1-16840/routemap_cli.c:801:
< WARNING: line over 80 characters
< #806: FILE: /tmp/f1-16840/routemap_cli.c:806:
< WARNING: line over 80 characters
< #1076: FILE: /tmp/f1-16840/routemap_cli.c:1076:
< WARNING: line over 80 characters
< #1080: FILE: /tmp/f1-16840/routemap_cli.c:1080:
< WARNING: line over 80 characters
< #1085: FILE: /tmp/f1-16840/routemap_cli.c:1085:
< WARNING: line over 80 characters
< #1090: FILE: /tmp/f1-16840/routemap_cli.c:1090:
< WARNING: line over 80 characters
< #1095: FILE: /tmp/f1-16840/routemap_cli.c:1095:
< WARNING: line over 80 characters
< #1110: FILE: /tmp/f1-16840/routemap_cli.c:1110:
< WARNING: line over 80 characters
< #1115: FILE: /tmp/f1-16840/routemap_cli.c:1115:
< WARNING: line over 80 characters
< #1120: FILE: /tmp/f1-16840/routemap_cli.c:1120:
< WARNING: line over 80 characters
< #1132: FILE: /tmp/f1-16840/routemap_cli.c:1132:
< ERROR: do not use assignment in if condition
< #1135: FILE: /tmp/f1-16840/routemap_cli.c:1135:
< WARNING: line over 80 characters
< #1137: FILE: /tmp/f1-16840/routemap_cli.c:1137:
< ERROR: do not use assignment in if condition
< #1146: FILE: /tmp/f1-16840/routemap_cli.c:1146:
< WARNING: line over 80 characters
< #1148: FILE: /tmp/f1-16840/routemap_cli.c:1148:
< WARNING: line over 80 characters
< #1158: FILE: /tmp/f1-16840/routemap_cli.c:1158:
< WARNING: line over 80 characters
< #1162: FILE: /tmp/f1-16840/routemap_cli.c:1162:
< WARNING: line over 80 characters
< #1167: FILE: /tmp/f1-16840/routemap_cli.c:1167:
< WARNING: line over 80 characters
< #1173: FILE: /tmp/f1-16840/routemap_cli.c:1173:
< WARNING: line over 80 characters
< #1177: FILE: /tmp/f1-16840/routemap_cli.c:1177:
< WARNING: line over 80 characters
< #1182: FILE: /tmp/f1-16840/routemap_cli.c:1182:
< WARNING: line over 80 characters
< #1189: FILE: /tmp/f1-16840/routemap_cli.c:1189:
< WARNING: line over 80 characters
< #1194: FILE: /tmp/f1-16840/routemap_cli.c:1194:
< WARNING: line over 80 characters
< #1199: FILE: /tmp/f1-16840/routemap_cli.c:1199:
< WARNING: line over 80 characters
< #1202: FILE: /tmp/f1-16840/routemap_cli.c:1202:
< WARNING: line over 80 characters
< #1207: FILE: /tmp/f1-16840/routemap_cli.c:1207:
Report for routemap_northbound.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #1210: FILE: /tmp/f1-16840/routemap_northbound.c:1210:
< WARNING: line over 80 characters
< #1367: FILE: /tmp/f1-16840/routemap_northbound.c:1367:
< WARNING: line over 80 characters
< #1369: FILE: /tmp/f1-16840/routemap_northbound.c:1369:
< WARNING: line over 80 characters
< #1370: FILE: /tmp/f1-16840/routemap_northbound.c:1370:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-16840/zebra_routemap.c:361:
< WARNING: line over 80 characters
< #385: FILE: /tmp/f1-16840/zebra_routemap.c:385:
< WARNING: line over 80 characters
< #402: FILE: /tmp/f1-16840/zebra_routemap.c:402:
< WARNING: line over 80 characters
< #426: FILE: /tmp/f1-16840/zebra_routemap.c:426:
< WARNING: line over 80 characters
< #443: FILE: /tmp/f1-16840/zebra_routemap.c:443:
< WARNING: line over 80 characters
< #467: FILE: /tmp/f1-16840/zebra_routemap.c:467:
< WARNING: line over 80 characters
< #482: FILE: /tmp/f1-16840/zebra_routemap.c:482:
< WARNING: line over 80 characters
< #503: FILE: /tmp/f1-16840/zebra_routemap.c:503:
< WARNING: line over 80 characters
< #518: FILE: /tmp/f1-16840/zebra_routemap.c:518:
< WARNING: line over 80 characters
< #538: FILE: /tmp/f1-16840/zebra_routemap.c:538:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-16840/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-16840/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-16840/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-16840/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-16840/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-16840/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-16840/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-16840/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-16840/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-16840/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-16840/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-16840/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-16840/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-16840/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-16840/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-16840/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 48 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#55: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:55:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#71: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:71:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#74: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:74:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#109: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#126: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:126:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#164: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:164:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#180: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:180:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#227: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:227:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#243: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#321: FILE: /tmp/f1-16840/zebra_routemap_nb_config.c:321:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-16840/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-16840/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-16840/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-16840/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-16840/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-16840/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-16840/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-16840/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-16840/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-16840/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-16840/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-16840/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@patrasar
Copy link
Contributor Author

Since this PR is converting all remaining route-map commands to YANG, it should be possible to remove the following code from the base "route-map" command:

--- a/lib/routemap_cli.c
+++ b/lib/routemap_cli.c
@@ -66,17 +66,9 @@ DEFPY_YANG_NOSH(
        nb_cli_enqueue_change(vty, xpath_action, NB_OP_MODIFY, action);
 
        rv = nb_cli_apply_changes(vty, NULL);
-       if (rv == CMD_SUCCESS) {
+       if (rv == CMD_SUCCESS)
                VTY_PUSH_XPATH(RMAP_NODE, xpath_index);
 
-               /* Add support for non-migrated route map users. */
-               nb_cli_pending_commit_check(vty);
-               rm = route_map_get(name);
-               action_type = (action[0] == 'p') ? RMAP_PERMIT : RMAP_DENY;
-               rmi = route_map_index_get(rm, action_type, sequence);
-               VTY_PUSH_CONTEXT(RMAP_NODE, rmi);
-       }
-
        return rv;
 }

Removing that code will allow the YANG back-off timer hack (#6727) to work better since the pending configuration changes won't need to be committed (nb_cli_pending_commit_check()) every time a "route-map" command is parsed. That should have a huge impact in configuration loading times when a large number of route-maps is present (which isn't unusual).

Done

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
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-18085/artifact/CI014BUILD/config.status/config.status
Ubuntu 16.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

 static bool elffile_virt2file(struct elffile *w, GElf_Addr virt,
lib/routemap_cli.c: In function 'route_map_magic':
lib/routemap_cli.c:51:6: error: unused variable 'action_type' [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable 'rm' [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable 'rmi' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:9750: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.18085/frr-source'

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/FBSD12AMD64/config.status/config.status
FreeBSD 12 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/FBSD12AMD64/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-18085/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-18085/artifact/CENTOS8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:9750: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'
make[1]: Target 'all-am' not remade because of errors.

CentOS 8 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/CI101BUILD/config.status/config.status Ubuntu 16.04 arm7 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/CI101BUILD/ErrorLog/log_make.txt)

WARNING: ignoring non-empty DT_REL!
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
WARNING: ignoring non-empty DT_REL!
Debian 11 amd64 build: Failed (click for details) Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/DEB11AMD64/config.status/config.status

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

/home/ci/cibuild.18085/frr-source/doc/user/zebra.rst:125: WARNING: duplicate clicmd description of shutdown, other instance in bfd
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:9754: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'
make[1]: Target 'all-am' not remade because of errors.

Debian 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/DEB11AMD64/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-18085/artifact/U1604I386/ErrorLog/log_make.txt)

WARNING: ignoring non-empty DT_REL!
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
WARNING: ignoring non-empty DT_REL!

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function 'route_map_magic':
lib/routemap_cli.c:51:6: error: unused variable 'action_type' [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable 'rm' [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable 'rmi' [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9119: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

FreeBSD 11 amd64 build: Failed (click for details)

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

/usr/home/ci/cibuild.18085/frr-source/doc/user/zebra.rst:125: WARNING: duplicate clicmd description of shutdown, other instance in bfd
lib/routemap_cli.c: In function 'route_map_magic':
lib/routemap_cli.c:51:6: error: unused variable 'action_type' [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable 'rm' [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable 'rmi' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:9750: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/usr/home/ci/cibuild.18085/frr-source'

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/CI009BUILD/config.status/config.status
FreeBSD 11 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/CI009BUILD/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-18085/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:9751: lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

Ubuntu 20.04 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/U2004AMD64BUILD/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-18085/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

WARNING: ignoring non-empty DT_REL!
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
WARNING: ignoring non-empty DT_REL!

Ubuntu 18.04 arm7 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/U18ARM7BUILD/config.status/config.status

OpenBSD 6 amd64 build: Failed (click for details)

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

static void elffile_add_dynreloc(struct elffile *w, Elf_Data *reldata,
2 warnings generated.
lib/routemap_cli.c:50:20: error: unused variable 'rm' [-Werror,-Wunused-variable]
lib/routemap_cli.c:51:6: error: unused variable 'action_type' [-Werror,-Wunused-variable]
lib/routemap_cli.c:49:26: error: unused variable 'rmi' [-Werror,-Wunused-variable]
3 errors generated.
gmake[1]: *** [Makefile:9749: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/CI011BUILD/config.status/config.status
OpenBSD 6 amd64 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/artifact/CI011BUILD/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-18085/artifact/U18ARM8BUILD/config.status/config.status Ubuntu 18.04 arm8 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
NetBSD 8 amd64 build: Failed (click for details) NetBSD 8 amd64 build: Unknown Log URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/artifact/CI012BUILD/ErrorLog/log_make.txt)

doc/user/_build/texinfo/frr.texi:26267: warning: @image file `frr-figures/fig-vnc-redundant-route-reflectors.txt' (for text) unreadable: No such file or directory.
lib/routemap_cli.c: In function 'route_map_magic':
lib/routemap_cli.c:51:6: error: unused variable 'action_type' [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable 'rm' [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable 'rmi' [-Werror=unused-variable]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:9750: lib/routemap_cli.lo] Error 1
gmake[1]: Target 'all-am' not remade because of errors.
gmake[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
Makefile:9131: recipe for target 'lib/routemap_cli.lo' failed
make[1]: *** [lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.

Ubuntu 16.04 arm8 build: Unknown Log <config.log.gz>
URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18085/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-18085/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-18085/artifact/F29BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:9750: lib/routemap_cli.lo] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.18085/frr-source'

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

make[1]: Entering directory '/home/ci/cibuild.18085/frr-source'
lib/routemap_cli.c: In function route_map_magic:
lib/routemap_cli.c:51:6: error: unused variable action_type [-Werror=unused-variable]
lib/routemap_cli.c:50:20: error: unused variable rm [-Werror=unused-variable]
lib/routemap_cli.c:49:26: error: unused variable rmi [-Werror=unused-variable]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:9751: lib/routemap_cli.lo] Error 1
make[1]: Leaving directory '/home/ci/cibuild.18085/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-18085/artifact/DEB10BUILD/config.status/config.status

Successful on other platforms/tests
  • CentOS 7 amd64 build

@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 30, 2021

🛑 Basic BGPD CI results: FAILURE

Results table
_ _
Result FAILURE git merge/7419 d02d204 Crash -- 1 cores
Date 03/30/2021
Start 08:05:58
Finish 08:21:24
Run-Time 15:26
Total 1147
Pass 1146
Fail 1
Valgrind-Errors
Valgrind-Loss
Details vncregress-2021-03-30-08:05:58.txt
Log bgpd-2021-03-30-08:07:05.127.0.0.131-2021-03-30-08:05:58.log
Memory

For details, please contact louberger

@louberger
Copy link
Member

from labn ci failure (I don't think it's a real core)

core_handler: memstats: Route map compiled : 1 * 7
core_handler: memstats: Route map dependency : 1 * 24
core_handler: memstats: Route map dependency data : 1 * 16
core_handler: memstats: Skip List : 18 * 56
core_handler: memstats: Skip Node : 37 * (variably sized)
core_handler: memstats: Socket union : 6 * 28
core_handler: memstats: Stream : 11 * (variably sized)
core_handler: memstats: Stream FIFO : 6 * 64
core_handler: memstats: Route table : 437 * 56
core_handler: memstats: Route node : 1 * 112
core_handler: memstats: Thread : 25 * 152
core_handler: memstats: Thread master : 12 * (variably sized)
core_handler: memstats: Thread Poll Info : 6 * 8192
core_handler: memstats: Thread stats : 32 * 72
core_handler: memstats: Typed-hash bucket : 8 * (variably sized)
core_handler: memstats: Typed-heap array : 1 * (variably sized)
core_handler: memstats: Vector : 27794 * 16
core_handler: memstats: Vector index : 27794 * (variably sized)
core_handler: memstats: VRF : 1 * 216
core_handler: memstats: VRF bit-map : 1 * 8
core_handler: memstats: VTY : 2 * (variably sized)
core_handler: memstats: VTY history : 20 * (variably sized)
core_handler: memstats: Work queue : 9 * 152
core_handler: memstats: Work queue name string : 9 * (variably sized)
core_handler: memstats: YANG module : 7 * 48
core_handler: memstats: Zclient : 2 * 3480
core_handler: memstats: Redistribution instance IDs : 6 * 2
core_handler: memstats: log thread-local buffer : 2 * 10264
core_handler: showing active allocations in memory group logging subsystem
core_handler: memstats: log file target : 2 * 88

@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 30, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git pull/7419 9e9473d (merge failed)
Date 03/30/2021
Start 11:05:13
Finish 11:47:13
Run-Time 42:00
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-03-30-11:05:13.txt
Log autoscript-2021-03-30-11:06:20.log.bz2
Memory 466 483 421

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

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.

This commit includes the following:
1) Modifications to the frr-route-map.yang to enable addition of
   bgpd, ospfd, ospf6d and zebra specific route map match/set clauses.
2) Yang definitions for bgpd match/set clauses.
3) Yang definitions for ospfd and ospf6d match/set clauses.
4) Yang definitions for zebra match/set clauses.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
This commit introduces the changes to the library route-map
north-bound callback implementation in order to align it to
the modified yang definitions.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
This commit introduces the implementation for the north-bound
callbacks for the zebra-specific route-map match and set clauses.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
This commit introduces the implementation for the north-bound
callbacks for the ospf6d-specific route-map match and set clauses.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
This commit introduces the implementation for the north-bound
callbacks for the ospfd-specific route-map match and set clauses.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
This commit introduces the implementation for the north-bound
callbacks for the bgp-specific route-map match and set clauses.

Signed-off-by: NaveenThanikachalam <nthanikachal@vmware.com>
Signed-off-by: Sarita Patra <saritap@vmware.com>
@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 30, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7419 29156a7
Date 03/30/2021
Start 15:55:56
Finish 16:37:32
Run-Time 41:36
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-03-30-15:55:56.txt
Log autoscript-2021-03-30-15:57:07.log.bz2
Memory 476 492 431

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Mar 30, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7419 48cb7ea
Date 03/30/2021
Start 16:40:56
Finish 17:22:33
Run-Time 41:37
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-03-30-16:40:56.txt
Log autoscript-2021-03-30-16:42:07.log.bz2
Memory 471 487 429

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

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
<stdin>:11020: trailing whitespace.
    case script { 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 62 issues
===============================================
< WARNING: line over 80 characters
< #3852: FILE: /tmp/f1-31972/bgp_routemap.c:3852:
< WARNING: line over 80 characters
< #3873: FILE: /tmp/f1-31972/bgp_routemap.c:3873:
< WARNING: line over 80 characters
< #3917: FILE: /tmp/f1-31972/bgp_routemap.c:3917:
< WARNING: line over 80 characters
< #3945: FILE: /tmp/f1-31972/bgp_routemap.c:3945:
< WARNING: line over 80 characters
< #4002: FILE: /tmp/f1-31972/bgp_routemap.c:4002:
< WARNING: line over 80 characters
< #4024: FILE: /tmp/f1-31972/bgp_routemap.c:4024:
< WARNING: line over 80 characters
< #4284: FILE: /tmp/f1-31972/bgp_routemap.c:4284:
< WARNING: line over 80 characters
< #4311: FILE: /tmp/f1-31972/bgp_routemap.c:4311:
< WARNING: line over 80 characters
< #4328: FILE: /tmp/f1-31972/bgp_routemap.c:4328:
< WARNING: line over 80 characters
< #4352: FILE: /tmp/f1-31972/bgp_routemap.c:4352:
< WARNING: line over 80 characters
< #4368: FILE: /tmp/f1-31972/bgp_routemap.c:4368:
< WARNING: line over 80 characters
< #4392: FILE: /tmp/f1-31972/bgp_routemap.c:4392:
< WARNING: line over 80 characters
< #4421: FILE: /tmp/f1-31972/bgp_routemap.c:4421:
< WARNING: line over 80 characters
< #4432: FILE: /tmp/f1-31972/bgp_routemap.c:4432:
< WARNING: line over 80 characters
< #4465: FILE: /tmp/f1-31972/bgp_routemap.c:4465:
< WARNING: line over 80 characters
< #4482: FILE: /tmp/f1-31972/bgp_routemap.c:4482:
< WARNING: line over 80 characters
< #4493: FILE: /tmp/f1-31972/bgp_routemap.c:4493:
< WARNING: line over 80 characters
< #4526: FILE: /tmp/f1-31972/bgp_routemap.c:4526:
< WARNING: line over 80 characters
< #4542: FILE: /tmp/f1-31972/bgp_routemap.c:4542:
< WARNING: line over 80 characters
< #4552: FILE: /tmp/f1-31972/bgp_routemap.c:4552:
< WARNING: line over 80 characters
< #4569: FILE: /tmp/f1-31972/bgp_routemap.c:4569:
< WARNING: line over 80 characters
< #5309: FILE: /tmp/f1-31972/bgp_routemap.c:5309:
< WARNING: line over 80 characters
< #5336: FILE: /tmp/f1-31972/bgp_routemap.c:5336:
< WARNING: line over 80 characters
< #5872: FILE: /tmp/f1-31972/bgp_routemap.c:5872:
< WARNING: line over 80 characters
< #5881: FILE: /tmp/f1-31972/bgp_routemap.c:5881:
< WARNING: line over 80 characters
< #5919: FILE: /tmp/f1-31972/bgp_routemap.c:5919:
< WARNING: line over 80 characters
< #5923: FILE: /tmp/f1-31972/bgp_routemap.c:5923:
< WARNING: line over 80 characters
< #5951: FILE: /tmp/f1-31972/bgp_routemap.c:5951:
< WARNING: line over 80 characters
< #5960: FILE: /tmp/f1-31972/bgp_routemap.c:5960:
< WARNING: line over 80 characters
< #5993: FILE: /tmp/f1-31972/bgp_routemap.c:5993:
< WARNING: line over 80 characters
< #5997: FILE: /tmp/f1-31972/bgp_routemap.c:5997:
Report for bgp_routemap_nb.c | 64 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-31972/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-31972/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-31972/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-31972/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-31972/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_script_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-31972/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_script_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-31972/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-31972/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-31972/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-31972/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-31972/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-31972/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-31972/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-31972/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-31972/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-31972/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-31972/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-31972/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-31972/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-31972/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-31972/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-31972/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-31972/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-31972/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-31972/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-31972/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-31972/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-31972/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-31972/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-31972/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-31972/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-31972/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-31972/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-31972/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-31972/bgp_routemap_nb.c:112:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-31972/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-31972/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-31972/bgp_routemap_nb.c:119:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-31972/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-31972/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-31972/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-31972/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-31972/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-31972/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-31972/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-31972/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-31972/bgp_routemap_nb.c:140:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#144: FILE: /tmp/f1-31972/bgp_routemap_nb.c:144:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#146: FILE: /tmp/f1-31972/bgp_routemap_nb.c:146:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#147: FILE: /tmp/f1-31972/bgp_routemap_nb.c:147:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-31972/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-31972/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-31972/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-31972/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-31972/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-31972/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-31972/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-31972/bgp_routemap_nb.c:167:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#168: FILE: /tmp/f1-31972/bgp_routemap_nb.c:168:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#172: FILE: /tmp/f1-31972/bgp_routemap_nb.c:172:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#174: FILE: /tmp/f1-31972/bgp_routemap_nb.c:174:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#175: FILE: /tmp/f1-31972/bgp_routemap_nb.c:175:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#179: FILE: /tmp/f1-31972/bgp_routemap_nb.c:179:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#181: FILE: /tmp/f1-31972/bgp_routemap_nb.c:181:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#182: FILE: /tmp/f1-31972/bgp_routemap_nb.c:182:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#186: FILE: /tmp/f1-31972/bgp_routemap_nb.c:186:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#188: FILE: /tmp/f1-31972/bgp_routemap_nb.c:188:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#189: FILE: /tmp/f1-31972/bgp_routemap_nb.c:189:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#193: FILE: /tmp/f1-31972/bgp_routemap_nb.c:193:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#195: FILE: /tmp/f1-31972/bgp_routemap_nb.c:195:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#196: FILE: /tmp/f1-31972/bgp_routemap_nb.c:196:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#200: FILE: /tmp/f1-31972/bgp_routemap_nb.c:200:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#202: FILE: /tmp/f1-31972/bgp_routemap_nb.c:202:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#203: FILE: /tmp/f1-31972/bgp_routemap_nb.c:203:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#207: FILE: /tmp/f1-31972/bgp_routemap_nb.c:207:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#209: FILE: /tmp/f1-31972/bgp_routemap_nb.c:209:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#210: FILE: /tmp/f1-31972/bgp_routemap_nb.c:210:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#214: FILE: /tmp/f1-31972/bgp_routemap_nb.c:214:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#216: FILE: /tmp/f1-31972/bgp_routemap_nb.c:216:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#217: FILE: /tmp/f1-31972/bgp_routemap_nb.c:217:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#221: FILE: /tmp/f1-31972/bgp_routemap_nb.c:221:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#223: FILE: /tmp/f1-31972/bgp_routemap_nb.c:223:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#224: FILE: /tmp/f1-31972/bgp_routemap_nb.c:224:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#228: FILE: /tmp/f1-31972/bgp_routemap_nb.c:228:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#230: FILE: /tmp/f1-31972/bgp_routemap_nb.c:230:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#231: FILE: /tmp/f1-31972/bgp_routemap_nb.c:231:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#235: FILE: /tmp/f1-31972/bgp_routemap_nb.c:235:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#237: FILE: /tmp/f1-31972/bgp_routemap_nb.c:237:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#238: FILE: /tmp/f1-31972/bgp_routemap_nb.c:238:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#242: FILE: /tmp/f1-31972/bgp_routemap_nb.c:242:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#244: FILE: /tmp/f1-31972/bgp_routemap_nb.c:244:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#245: FILE: /tmp/f1-31972/bgp_routemap_nb.c:245:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#249: FILE: /tmp/f1-31972/bgp_routemap_nb.c:249:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#251: FILE: /tmp/f1-31972/bgp_routemap_nb.c:251:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#252: FILE: /tmp/f1-31972/bgp_routemap_nb.c:252:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#256: FILE: /tmp/f1-31972/bgp_routemap_nb.c:256:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#258: FILE: /tmp/f1-31972/bgp_routemap_nb.c:258:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#259: FILE: /tmp/f1-31972/bgp_routemap_nb.c:259:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#263: FILE: /tmp/f1-31972/bgp_routemap_nb.c:263:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#265: FILE: /tmp/f1-31972/bgp_routemap_nb.c:265:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#266: FILE: /tmp/f1-31972/bgp_routemap_nb.c:266:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#270: FILE: /tmp/f1-31972/bgp_routemap_nb.c:270:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#272: FILE: /tmp/f1-31972/bgp_routemap_nb.c:272:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#273: FILE: /tmp/f1-31972/bgp_routemap_nb.c:273:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#277: FILE: /tmp/f1-31972/bgp_routemap_nb.c:277:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#279: FILE: /tmp/f1-31972/bgp_routemap_nb.c:279:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#280: FILE: /tmp/f1-31972/bgp_routemap_nb.c:280:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#284: FILE: /tmp/f1-31972/bgp_routemap_nb.c:284:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#286: FILE: /tmp/f1-31972/bgp_routemap_nb.c:286:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#287: FILE: /tmp/f1-31972/bgp_routemap_nb.c:287:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#291: FILE: /tmp/f1-31972/bgp_routemap_nb.c:291:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#293: FILE: /tmp/f1-31972/bgp_routemap_nb.c:293:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#294: FILE: /tmp/f1-31972/bgp_routemap_nb.c:294:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#298: FILE: /tmp/f1-31972/bgp_routemap_nb.c:298:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#300: FILE: /tmp/f1-31972/bgp_routemap_nb.c:300:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#301: FILE: /tmp/f1-31972/bgp_routemap_nb.c:301:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#305: FILE: /tmp/f1-31972/bgp_routemap_nb.c:305:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#307: FILE: /tmp/f1-31972/bgp_routemap_nb.c:307:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#308: FILE: /tmp/f1-31972/bgp_routemap_nb.c:308:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#312: FILE: /tmp/f1-31972/bgp_routemap_nb.c:312:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#314: FILE: /tmp/f1-31972/bgp_routemap_nb.c:314:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#315: FILE: /tmp/f1-31972/bgp_routemap_nb.c:315:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#319: FILE: /tmp/f1-31972/bgp_routemap_nb.c:319:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#321: FILE: /tmp/f1-31972/bgp_routemap_nb.c:321:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#325: FILE: /tmp/f1-31972/bgp_routemap_nb.c:325:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#327: FILE: /tmp/f1-31972/bgp_routemap_nb.c:327:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#328: FILE: /tmp/f1-31972/bgp_routemap_nb.c:328:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#332: FILE: /tmp/f1-31972/bgp_routemap_nb.c:332:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#334: FILE: /tmp/f1-31972/bgp_routemap_nb.c:334:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#335: FILE: /tmp/f1-31972/bgp_routemap_nb.c:335:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#339: FILE: /tmp/f1-31972/bgp_routemap_nb.c:339:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#341: FILE: /tmp/f1-31972/bgp_routemap_nb.c:341:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#342: FILE: /tmp/f1-31972/bgp_routemap_nb.c:342:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,

WARNING: line over 80 characters
#346: FILE: /tmp/f1-31972/bgp_routemap_nb.c:346:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb",

WARNING: line over 80 characters
#348: FILE: /tmp/f1-31972/bgp_routemap_nb.c:348:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-31972/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-31972/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-31972/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-31972/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-31972/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-31972/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-31972/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-31972/bgp_routemap_nb.c:368:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify,

WARNING: line over 80 characters
#369: FILE: /tmp/f1-31972/bgp_routemap_nb.c:369:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy,
Report for bgp_routemap_nb_config.c | 41 issues
===============================================
ERROR: do not use assignment in if condition
#71: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:71:
+			if ((tmpstr = route_map_get_match_arg(index, command))

ERROR: switch and case should be at the same indent
#82: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:82:
+	switch (ret) {
+		case RMAP_RULE_MISSING:
[...]
+		case RMAP_COMPILE_ERROR:
[...]
+		case RMAP_COMPILE_SUCCESS:

WARNING: line over 80 characters
#106: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:106:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#109: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#145: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:145:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#161: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:161:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script

WARNING: line over 80 characters
#216: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:216:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#271: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:271:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#326: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:326:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#380: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:380:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#435: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:435:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#438: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:438:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#474: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:474:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#490: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:490:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#545: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:545:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#548: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:548:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#584: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:584:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#600: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:600:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#658: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:658:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: line over 80 characters
#700: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:700:
+						  args->errmsg, args->errmsg_len);

WARNING: line over 80 characters
#749: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:749:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#752: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:752:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#786: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:786:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#802: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:802:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#857: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:857:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#897: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:897:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#913: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:913:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#916: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:916:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#952: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:952:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#968: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:968:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1026: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1026:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1029: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1029:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1044: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1044:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1061: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1061:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1064: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1064:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1079: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1079:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1095: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1095:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1150: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1150:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1206: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1258: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1258:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1312: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1312:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1367: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1367:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1419: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1419:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1472: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1472:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1544: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1544:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1608: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1608:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1660: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1660:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1713: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1713:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1765: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1765:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#1818: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1818:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

WARNING: line over 80 characters
#1870: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1870:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#1922: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1922:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#1974: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:1974:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2029: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2029:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2092: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2092:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2147: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2147:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2206: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2260: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2260:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2321: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2321:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2376: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2376:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2407: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2425: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2425:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2442: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2442:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2445: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2445:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

WARNING: line over 80 characters
#2460: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2460:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

WARNING: line over 80 characters
#2477: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2477:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name

WARNING: line over 80 characters
#2545: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2545:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb

WARNING: line over 80 characters
#2587: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2587:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type

WARNING: line over 80 characters
#2605: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2605:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(

WARNING: line over 80 characters
#2623: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2623:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific

WARNING: line over 80 characters
#2626: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2626:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(

WARNING: line over 80 characters
#2633: FILE: /tmp/f1-31972/bgp_routemap_nb_config.c:2633:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(
Report for bgp_routemap_nb.h | 156 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-31972/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-31972/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-31972/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-31972/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-31972/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-31972/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-31972/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-31972/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-31972/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-31972/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-31972/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-31972/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-31972/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-31972/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-31972/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-31972/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-31972/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-31972/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-31972/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-31972/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-31972/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-31972/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-31972/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-31972/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-31972/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-31972/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-31972/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-31972/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-31972/bgp_routemap_nb.h:60:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-31972/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-31972/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-31972/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-31972/bgp_routemap_nb.h:64:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-31972/bgp_routemap_nb.h:65:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-31972/bgp_routemap_nb.h:66:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-31972/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-31972/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-31972/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-31972/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-31972/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-31972/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-31972/bgp_routemap_nb.h:73:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-31972/bgp_routemap_nb.h:74:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-31972/bgp_routemap_nb.h:75:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-31972/bgp_routemap_nb.h:76:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-31972/bgp_routemap_nb.h:77:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-31972/bgp_routemap_nb.h:78:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-31972/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-31972/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-31972/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-31972/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-31972/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-31972/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-31972/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-31972/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-31972/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-31972/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-31972/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-31972/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-31972/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-31972/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-31972/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-31972/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-31972/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-31972/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-31972/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-31972/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-31972/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-31972/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-31972/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-31972/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-31972/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-31972/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-31972/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-31972/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-31972/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-31972/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-31972/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-31972/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-31972/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-31972/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-31972/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-31972/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-31972/bgp_routemap_nb.h:115:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-31972/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-31972/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-31972/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-31972/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-31972/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-31972/bgp_routemap_nb.h:121:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-31972/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-31972/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-31972/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-31972/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-31972/bgp_routemap_nb.h:126:
+void lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-31972/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-31972/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-31972/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-31972/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-31972/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#132: FILE: /tmp/f1-31972/bgp_routemap_nb.h:132:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#45: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:45:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address",

WARNING: line over 80 characters
#47: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:47:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#48: FILE: /tmp/f1-31972/ospf6_routemap_nb.c:48:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 8 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-31972/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#80: FILE: /tmp/f1-31972/ospf6_routemap_nb_config.c:80:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/ospf6_routemap_nb.h:32:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-31972/ospf6_routemap_nb.h:33:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-31972/ospf6_routemap_nb.h:34:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 12 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-31972/ospf_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/ospf_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/ospf_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,
Report for ospf_routemap_nb_config.c | 4 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-31972/ospf_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type
Report for ospf_routemap_nb.h | 8 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-31972/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for routemap_cli.c | 148 issues
===============================================
< WARNING: line over 80 characters
< #176: FILE: /tmp/f1-31972/routemap_cli.c:176:
< WARNING: line over 80 characters
< #199: FILE: /tmp/f1-31972/routemap_cli.c:199:
< WARNING: line over 80 characters
< #257: FILE: /tmp/f1-31972/routemap_cli.c:257:
< WARNING: line over 80 characters
< #280: FILE: /tmp/f1-31972/routemap_cli.c:280:
< WARNING: line over 80 characters
< #298: FILE: /tmp/f1-31972/routemap_cli.c:298:
< WARNING: line over 80 characters
< #321: FILE: /tmp/f1-31972/routemap_cli.c:321:
< WARNING: line over 80 characters
< #338: FILE: /tmp/f1-31972/routemap_cli.c:338:
< WARNING: line over 80 characters
< #358: FILE: /tmp/f1-31972/routemap_cli.c:358:
< WARNING: line over 80 characters
< #374: FILE: /tmp/f1-31972/routemap_cli.c:374:
< WARNING: line over 80 characters
< #395: FILE: /tmp/f1-31972/routemap_cli.c:395:
< WARNING: line over 80 characters
< #451: FILE: /tmp/f1-31972/routemap_cli.c:451:
< WARNING: line over 80 characters
< #471: FILE: /tmp/f1-31972/routemap_cli.c:471:
< ERROR: do not use assignment in if condition
< #562: FILE: /tmp/f1-31972/routemap_cli.c:562:
< WARNING: line over 80 characters
< #611: FILE: /tmp/f1-31972/routemap_cli.c:611:
< WARNING: line over 80 characters
< #616: FILE: /tmp/f1-31972/routemap_cli.c:616:
< WARNING: line over 80 characters
< #621: FILE: /tmp/f1-31972/routemap_cli.c:621:
< WARNING: line over 80 characters
< #626: FILE: /tmp/f1-31972/routemap_cli.c:626:
< WARNING: line over 80 characters
< #631: FILE: /tmp/f1-31972/routemap_cli.c:631:
< WARNING: line over 80 characters
< #636: FILE: /tmp/f1-31972/routemap_cli.c:636:
< WARNING: line over 80 characters
< #641: FILE: /tmp/f1-31972/routemap_cli.c:641:
< WARNING: line over 80 characters
< #646: FILE: /tmp/f1-31972/routemap_cli.c:646:
< WARNING: line over 80 characters
< #651: FILE: /tmp/f1-31972/routemap_cli.c:651:
< WARNING: line over 80 characters
< #656: FILE: /tmp/f1-31972/routemap_cli.c:656:
< ERROR: do not use assignment in if condition
< #659: FILE: /tmp/f1-31972/routemap_cli.c:659:
< WARNING: line over 80 characters
< #661: FILE: /tmp/f1-31972/routemap_cli.c:661:
< ERROR: do not use assignment in if condition
< #664: FILE: /tmp/f1-31972/routemap_cli.c:664:
< WARNING: line over 80 characters
< #667: FILE: /tmp/f1-31972/routemap_cli.c:667:
< ERROR: do not use assignment in if condition
< #670: FILE: /tmp/f1-31972/routemap_cli.c:670:
< WARNING: line over 80 characters
< #673: FILE: /tmp/f1-31972/routemap_cli.c:673:
< WARNING: line over 80 characters
< #678: FILE: /tmp/f1-31972/routemap_cli.c:678:
< WARNING: line over 80 characters
< #687: FILE: /tmp/f1-31972/routemap_cli.c:687:
< WARNING: line over 80 characters
< #692: FILE: /tmp/f1-31972/routemap_cli.c:692:
< WARNING: line over 80 characters
< #699: FILE: /tmp/f1-31972/routemap_cli.c:699:
< WARNING: line over 80 characters
< #704: FILE: /tmp/f1-31972/routemap_cli.c:704:
< WARNING: line over 80 characters
< #709: FILE: /tmp/f1-31972/routemap_cli.c:709:
< WARNING: line over 80 characters
< #714: FILE: /tmp/f1-31972/routemap_cli.c:714:
< ERROR: do not use assignment in if condition
< #717: FILE: /tmp/f1-31972/routemap_cli.c:717:
< WARNING: line over 80 characters
< #730: FILE: /tmp/f1-31972/routemap_cli.c:730:
< ERROR: do not use assignment in if condition
< #733: FILE: /tmp/f1-31972/routemap_cli.c:733:
< WARNING: line over 80 characters
< #735: FILE: /tmp/f1-31972/routemap_cli.c:735:
< ERROR: do not use assignment in if condition
< #744: FILE: /tmp/f1-31972/routemap_cli.c:744:
< WARNING: line over 80 characters
< #746: FILE: /tmp/f1-31972/routemap_cli.c:746:
< WARNING: line over 80 characters
< #753: FILE: /tmp/f1-31972/routemap_cli.c:753:
< ERROR: do not use assignment in if condition
< #764: FILE: /tmp/f1-31972/routemap_cli.c:764:
< WARNING: line over 80 characters
< #766: FILE: /tmp/f1-31972/routemap_cli.c:766:
< WARNING: line over 80 characters
< #773: FILE: /tmp/f1-31972/routemap_cli.c:773:
< ERROR: do not use assignment in if condition
< #785: FILE: /tmp/f1-31972/routemap_cli.c:785:
< WARNING: line over 80 characters
< #787: FILE: /tmp/f1-31972/routemap_cli.c:787:
< WARNING: line over 80 characters
< #798: FILE: /tmp/f1-31972/routemap_cli.c:798:
< WARNING: line over 80 characters
< #803: FILE: /tmp/f1-31972/routemap_cli.c:803:
< WARNING: line over 80 characters
< #1073: FILE: /tmp/f1-31972/routemap_cli.c:1073:
< WARNING: line over 80 characters
< #1077: FILE: /tmp/f1-31972/routemap_cli.c:1077:
< WARNING: line over 80 characters
< #1082: FILE: /tmp/f1-31972/routemap_cli.c:1082:
< WARNING: line over 80 characters
< #1087: FILE: /tmp/f1-31972/routemap_cli.c:1087:
< WARNING: line over 80 characters
< #1092: FILE: /tmp/f1-31972/routemap_cli.c:1092:
< WARNING: line over 80 characters
< #1107: FILE: /tmp/f1-31972/routemap_cli.c:1107:
< WARNING: line over 80 characters
< #1112: FILE: /tmp/f1-31972/routemap_cli.c:1112:
< WARNING: line over 80 characters
< #1117: FILE: /tmp/f1-31972/routemap_cli.c:1117:
< WARNING: line over 80 characters
< #1129: FILE: /tmp/f1-31972/routemap_cli.c:1129:
< ERROR: do not use assignment in if condition
< #1132: FILE: /tmp/f1-31972/routemap_cli.c:1132:
< WARNING: line over 80 characters
< #1134: FILE: /tmp/f1-31972/routemap_cli.c:1134:
< ERROR: do not use assignment in if condition
< #1143: FILE: /tmp/f1-31972/routemap_cli.c:1143:
< WARNING: line over 80 characters
< #1145: FILE: /tmp/f1-31972/routemap_cli.c:1145:
< WARNING: line over 80 characters
< #1155: FILE: /tmp/f1-31972/routemap_cli.c:1155:
< WARNING: line over 80 characters
< #1159: FILE: /tmp/f1-31972/routemap_cli.c:1159:
< WARNING: line over 80 characters
< #1164: FILE: /tmp/f1-31972/routemap_cli.c:1164:
< WARNING: line over 80 characters
< #1170: FILE: /tmp/f1-31972/routemap_cli.c:1170:
< WARNING: line over 80 characters
< #1174: FILE: /tmp/f1-31972/routemap_cli.c:1174:
< WARNING: line over 80 characters
< #1179: FILE: /tmp/f1-31972/routemap_cli.c:1179:
< WARNING: line over 80 characters
< #1186: FILE: /tmp/f1-31972/routemap_cli.c:1186:
< WARNING: line over 80 characters
< #1191: FILE: /tmp/f1-31972/routemap_cli.c:1191:
< WARNING: line over 80 characters
< #1196: FILE: /tmp/f1-31972/routemap_cli.c:1196:
< WARNING: line over 80 characters
< #1199: FILE: /tmp/f1-31972/routemap_cli.c:1199:
< WARNING: line over 80 characters
< #1204: FILE: /tmp/f1-31972/routemap_cli.c:1204:
Report for routemap_northbound.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #1211: FILE: /tmp/f1-31972/routemap_northbound.c:1211:
< WARNING: line over 80 characters
< #1368: FILE: /tmp/f1-31972/routemap_northbound.c:1368:
< WARNING: line over 80 characters
< #1370: FILE: /tmp/f1-31972/routemap_northbound.c:1370:
< WARNING: line over 80 characters
< #1371: FILE: /tmp/f1-31972/routemap_northbound.c:1371:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-31972/zebra_routemap.c:361:
< WARNING: line over 80 characters
< #385: FILE: /tmp/f1-31972/zebra_routemap.c:385:
< WARNING: line over 80 characters
< #402: FILE: /tmp/f1-31972/zebra_routemap.c:402:
< WARNING: line over 80 characters
< #426: FILE: /tmp/f1-31972/zebra_routemap.c:426:
< WARNING: line over 80 characters
< #443: FILE: /tmp/f1-31972/zebra_routemap.c:443:
< WARNING: line over 80 characters
< #467: FILE: /tmp/f1-31972/zebra_routemap.c:467:
< WARNING: line over 80 characters
< #482: FILE: /tmp/f1-31972/zebra_routemap.c:482:
< WARNING: line over 80 characters
< #503: FILE: /tmp/f1-31972/zebra_routemap.c:503:
< WARNING: line over 80 characters
< #518: FILE: /tmp/f1-31972/zebra_routemap.c:518:
< WARNING: line over 80 characters
< #538: FILE: /tmp/f1-31972/zebra_routemap.c:538:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-31972/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-31972/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-31972/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-31972/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-31972/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-31972/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-31972/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-31972/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-31972/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-31972/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-31972/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-31972/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-31972/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-31972/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-31972/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-31972/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 48 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#55: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:55:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#71: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:71:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#74: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:74:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#109: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#126: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:126:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#164: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:164:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#180: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:180:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#227: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:227:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#243: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#321: FILE: /tmp/f1-31972/zebra_routemap_nb_config.c:321:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-31972/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-31972/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-31972/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-31972/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-31972/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-31972/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-31972/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-31972/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-31972/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-31972/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-31972/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-31972/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

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

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
<stdin>:11020: trailing whitespace.
    case script { 
warning: 1 line adds whitespace errors.
Report for bgp_routemap.c | 62 issues
===============================================
< WARNING: line over 80 characters
< #3852: FILE: /tmp/f1-17859/bgp_routemap.c:3852:
< WARNING: line over 80 characters
< #3873: FILE: /tmp/f1-17859/bgp_routemap.c:3873:
< WARNING: line over 80 characters
< #3917: FILE: /tmp/f1-17859/bgp_routemap.c:3917:
< WARNING: line over 80 characters
< #3945: FILE: /tmp/f1-17859/bgp_routemap.c:3945:
< WARNING: line over 80 characters
< #4002: FILE: /tmp/f1-17859/bgp_routemap.c:4002:
< WARNING: line over 80 characters
< #4024: FILE: /tmp/f1-17859/bgp_routemap.c:4024:
< WARNING: line over 80 characters
< #4284: FILE: /tmp/f1-17859/bgp_routemap.c:4284:
< WARNING: line over 80 characters
< #4311: FILE: /tmp/f1-17859/bgp_routemap.c:4311:
< WARNING: line over 80 characters
< #4328: FILE: /tmp/f1-17859/bgp_routemap.c:4328:
< WARNING: line over 80 characters
< #4352: FILE: /tmp/f1-17859/bgp_routemap.c:4352:
< WARNING: line over 80 characters
< #4368: FILE: /tmp/f1-17859/bgp_routemap.c:4368:
< WARNING: line over 80 characters
< #4392: FILE: /tmp/f1-17859/bgp_routemap.c:4392:
< WARNING: line over 80 characters
< #4421: FILE: /tmp/f1-17859/bgp_routemap.c:4421:
< WARNING: line over 80 characters
< #4432: FILE: /tmp/f1-17859/bgp_routemap.c:4432:
< WARNING: line over 80 characters
< #4465: FILE: /tmp/f1-17859/bgp_routemap.c:4465:
< WARNING: line over 80 characters
< #4482: FILE: /tmp/f1-17859/bgp_routemap.c:4482:
< WARNING: line over 80 characters
< #4493: FILE: /tmp/f1-17859/bgp_routemap.c:4493:
< WARNING: line over 80 characters
< #4526: FILE: /tmp/f1-17859/bgp_routemap.c:4526:
< WARNING: line over 80 characters
< #4542: FILE: /tmp/f1-17859/bgp_routemap.c:4542:
< WARNING: line over 80 characters
< #4552: FILE: /tmp/f1-17859/bgp_routemap.c:4552:
< WARNING: line over 80 characters
< #4569: FILE: /tmp/f1-17859/bgp_routemap.c:4569:
< WARNING: line over 80 characters
< #5309: FILE: /tmp/f1-17859/bgp_routemap.c:5309:
< WARNING: line over 80 characters
< #5336: FILE: /tmp/f1-17859/bgp_routemap.c:5336:
< WARNING: line over 80 characters
< #5872: FILE: /tmp/f1-17859/bgp_routemap.c:5872:
< WARNING: line over 80 characters
< #5881: FILE: /tmp/f1-17859/bgp_routemap.c:5881:
< WARNING: line over 80 characters
< #5919: FILE: /tmp/f1-17859/bgp_routemap.c:5919:
< WARNING: line over 80 characters
< #5923: FILE: /tmp/f1-17859/bgp_routemap.c:5923:
< WARNING: line over 80 characters
< #5951: FILE: /tmp/f1-17859/bgp_routemap.c:5951:
< WARNING: line over 80 characters
< #5960: FILE: /tmp/f1-17859/bgp_routemap.c:5960:
< WARNING: line over 80 characters
< #5993: FILE: /tmp/f1-17859/bgp_routemap.c:5993:
< WARNING: line over 80 characters
< #5997: FILE: /tmp/f1-17859/bgp_routemap.c:5997:
Report for bgp_routemap_nb.c | 64 issues
===============================================
WARNING: line over 80 characters
#33: FILE: /tmp/f1-17859/bgp_routemap_nb.c:33:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference",

WARNING: line over 80 characters
#35: FILE: /tmp/f1-17859/bgp_routemap_nb.c:35:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-17859/bgp_routemap_nb.c:36:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy,

WARNING: line over 80 characters
#40: FILE: /tmp/f1-17859/bgp_routemap_nb.c:40:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script",

WARNING: line over 80 characters
#42: FILE: /tmp/f1-17859/bgp_routemap_nb.c:42:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_script_modify,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-17859/bgp_routemap_nb.c:43:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_script_destroy,

WARNING: line over 80 characters
#47: FILE: /tmp/f1-17859/bgp_routemap_nb.c:47:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#49: FILE: /tmp/f1-17859/bgp_routemap_nb.c:49:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_origin_modify,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-17859/bgp_routemap_nb.c:50:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy,

WARNING: line over 80 characters
#54: FILE: /tmp/f1-17859/bgp_routemap_nb.c:54:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki",

WARNING: line over 80 characters
#56: FILE: /tmp/f1-17859/bgp_routemap_nb.c:56:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-17859/bgp_routemap_nb.c:57:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy,

WARNING: line over 80 characters
#61: FILE: /tmp/f1-17859/bgp_routemap_nb.c:61:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability",

WARNING: line over 80 characters
#63: FILE: /tmp/f1-17859/bgp_routemap_nb.c:63:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_probability_modify,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-17859/bgp_routemap_nb.c:64:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy,

WARNING: line over 80 characters
#68: FILE: /tmp/f1-17859/bgp_routemap_nb.c:68:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf",

WARNING: line over 80 characters
#70: FILE: /tmp/f1-17859/bgp_routemap_nb.c:70:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify,

WARNING: line over 80 characters
#71: FILE: /tmp/f1-17859/bgp_routemap_nb.c:71:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy,

WARNING: line over 80 characters
#75: FILE: /tmp/f1-17859/bgp_routemap_nb.c:75:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address",

WARNING: line over 80 characters
#77: FILE: /tmp/f1-17859/bgp_routemap_nb.c:77:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify,

WARNING: line over 80 characters
#78: FILE: /tmp/f1-17859/bgp_routemap_nb.c:78:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy,

WARNING: line over 80 characters
#82: FILE: /tmp/f1-17859/bgp_routemap_nb.c:82:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface",

WARNING: line over 80 characters
#84: FILE: /tmp/f1-17859/bgp_routemap_nb.c:84:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify,

WARNING: line over 80 characters
#85: FILE: /tmp/f1-17859/bgp_routemap_nb.c:85:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy,

WARNING: line over 80 characters
#89: FILE: /tmp/f1-17859/bgp_routemap_nb.c:89:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address",

WARNING: line over 80 characters
#91: FILE: /tmp/f1-17859/bgp_routemap_nb.c:91:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify,

WARNING: line over 80 characters
#92: FILE: /tmp/f1-17859/bgp_routemap_nb.c:92:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy,

WARNING: line over 80 characters
#96: FILE: /tmp/f1-17859/bgp_routemap_nb.c:96:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local",

WARNING: line over 80 characters
#98: FILE: /tmp/f1-17859/bgp_routemap_nb.c:98:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify,

WARNING: line over 80 characters
#99: FILE: /tmp/f1-17859/bgp_routemap_nb.c:99:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy,

WARNING: line over 80 characters
#103: FILE: /tmp/f1-17859/bgp_routemap_nb.c:103:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name",

WARNING: line over 80 characters
#105: FILE: /tmp/f1-17859/bgp_routemap_nb.c:105:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify,

WARNING: line over 80 characters
#106: FILE: /tmp/f1-17859/bgp_routemap_nb.c:106:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy,

WARNING: line over 80 characters
#110: FILE: /tmp/f1-17859/bgp_routemap_nb.c:110:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route",

WARNING: line over 80 characters
#112: FILE: /tmp/f1-17859/bgp_routemap_nb.c:112:
+				.create = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create,

WARNING: line over 80 characters
#113: FILE: /tmp/f1-17859/bgp_routemap_nb.c:113:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy,

WARNING: line over 80 characters
#117: FILE: /tmp/f1-17859/bgp_routemap_nb.c:117:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni",

WARNING: line over 80 characters
#119: FILE: /tmp/f1-17859/bgp_routemap_nb.c:119:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify,

WARNING: line over 80 characters
#120: FILE: /tmp/f1-17859/bgp_routemap_nb.c:120:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy,

WARNING: line over 80 characters
#124: FILE: /tmp/f1-17859/bgp_routemap_nb.c:124:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type",

WARNING: line over 80 characters
#126: FILE: /tmp/f1-17859/bgp_routemap_nb.c:126:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify,

WARNING: line over 80 characters
#127: FILE: /tmp/f1-17859/bgp_routemap_nb.c:127:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy,

WARNING: line over 80 characters
#131: FILE: /tmp/f1-17859/bgp_routemap_nb.c:131:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher",

WARNING: line over 80 characters
#133: FILE: /tmp/f1-17859/bgp_routemap_nb.c:133:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify,

WARNING: line over 80 characters
#134: FILE: /tmp/f1-17859/bgp_routemap_nb.c:134:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy,

WARNING: line over 80 characters
#138: FILE: /tmp/f1-17859/bgp_routemap_nb.c:138:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list",

WARNING: line over 80 characters
#140: FILE: /tmp/f1-17859/bgp_routemap_nb.c:140:
+				.apply_finish = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish,

WARNING: line over 80 characters
#144: FILE: /tmp/f1-17859/bgp_routemap_nb.c:144:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name",

WARNING: line over 80 characters
#146: FILE: /tmp/f1-17859/bgp_routemap_nb.c:146:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify,

WARNING: line over 80 characters
#147: FILE: /tmp/f1-17859/bgp_routemap_nb.c:147:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy,

WARNING: line over 80 characters
#151: FILE: /tmp/f1-17859/bgp_routemap_nb.c:151:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match",

WARNING: line over 80 characters
#153: FILE: /tmp/f1-17859/bgp_routemap_nb.c:153:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify,

WARNING: line over 80 characters
#154: FILE: /tmp/f1-17859/bgp_routemap_nb.c:154:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy,

WARNING: line over 80 characters
#158: FILE: /tmp/f1-17859/bgp_routemap_nb.c:158:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#160: FILE: /tmp/f1-17859/bgp_routemap_nb.c:160:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify,

WARNING: line over 80 characters
#161: FILE: /tmp/f1-17859/bgp_routemap_nb.c:161:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy,

WARNING: line over 80 characters
#165: FILE: /tmp/f1-17859/bgp_routemap_nb.c:165:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#167: FILE: /tmp/f1-17859/bgp_routemap_nb.c:167:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify,

WARNING: line over 80 characters
#168: FILE: /tmp/f1-17859/bgp_routemap_nb.c:168:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy,

WARNING: line over 80 characters
#172: FILE: /tmp/f1-17859/bgp_routemap_nb.c:172:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance",

WARNING: line over 80 characters
#174: FILE: /tmp/f1-17859/bgp_routemap_nb.c:174:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_distance_modify,

WARNING: line over 80 characters
#175: FILE: /tmp/f1-17859/bgp_routemap_nb.c:175:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_distance_destroy,

WARNING: line over 80 characters
#179: FILE: /tmp/f1-17859/bgp_routemap_nb.c:179:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt",

WARNING: line over 80 characters
#181: FILE: /tmp/f1-17859/bgp_routemap_nb.c:181:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify,

WARNING: line over 80 characters
#182: FILE: /tmp/f1-17859/bgp_routemap_nb.c:182:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy,

WARNING: line over 80 characters
#186: FILE: /tmp/f1-17859/bgp_routemap_nb.c:186:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo",

WARNING: line over 80 characters
#188: FILE: /tmp/f1-17859/bgp_routemap_nb.c:188:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify,

WARNING: line over 80 characters
#189: FILE: /tmp/f1-17859/bgp_routemap_nb.c:189:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy,

WARNING: line over 80 characters
#193: FILE: /tmp/f1-17859/bgp_routemap_nb.c:193:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address",

WARNING: line over 80 characters
#195: FILE: /tmp/f1-17859/bgp_routemap_nb.c:195:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify,

WARNING: line over 80 characters
#196: FILE: /tmp/f1-17859/bgp_routemap_nb.c:196:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy,

WARNING: line over 80 characters
#200: FILE: /tmp/f1-17859/bgp_routemap_nb.c:200:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop",

WARNING: line over 80 characters
#202: FILE: /tmp/f1-17859/bgp_routemap_nb.c:202:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify,

WARNING: line over 80 characters
#203: FILE: /tmp/f1-17859/bgp_routemap_nb.c:203:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy,

WARNING: line over 80 characters
#207: FILE: /tmp/f1-17859/bgp_routemap_nb.c:207:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address",

WARNING: line over 80 characters
#209: FILE: /tmp/f1-17859/bgp_routemap_nb.c:209:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#210: FILE: /tmp/f1-17859/bgp_routemap_nb.c:210:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,

WARNING: line over 80 characters
#214: FILE: /tmp/f1-17859/bgp_routemap_nb.c:214:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference",

WARNING: line over 80 characters
#216: FILE: /tmp/f1-17859/bgp_routemap_nb.c:216:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_preference_modify,

WARNING: line over 80 characters
#217: FILE: /tmp/f1-17859/bgp_routemap_nb.c:217:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_preference_destroy,

WARNING: line over 80 characters
#221: FILE: /tmp/f1-17859/bgp_routemap_nb.c:221:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index",

WARNING: line over 80 characters
#223: FILE: /tmp/f1-17859/bgp_routemap_nb.c:223:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_label_index_modify,

WARNING: line over 80 characters
#224: FILE: /tmp/f1-17859/bgp_routemap_nb.c:224:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_label_index_destroy,

WARNING: line over 80 characters
#228: FILE: /tmp/f1-17859/bgp_routemap_nb.c:228:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref",

WARNING: line over 80 characters
#230: FILE: /tmp/f1-17859/bgp_routemap_nb.c:230:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_local_pref_modify,

WARNING: line over 80 characters
#231: FILE: /tmp/f1-17859/bgp_routemap_nb.c:231:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy,

WARNING: line over 80 characters
#235: FILE: /tmp/f1-17859/bgp_routemap_nb.c:235:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight",

WARNING: line over 80 characters
#237: FILE: /tmp/f1-17859/bgp_routemap_nb.c:237:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_weight_modify,

WARNING: line over 80 characters
#238: FILE: /tmp/f1-17859/bgp_routemap_nb.c:238:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_weight_destroy,

WARNING: line over 80 characters
#242: FILE: /tmp/f1-17859/bgp_routemap_nb.c:242:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin",

WARNING: line over 80 characters
#244: FILE: /tmp/f1-17859/bgp_routemap_nb.c:244:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_origin_modify,

WARNING: line over 80 characters
#245: FILE: /tmp/f1-17859/bgp_routemap_nb.c:245:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_origin_destroy,

WARNING: line over 80 characters
#249: FILE: /tmp/f1-17859/bgp_routemap_nb.c:249:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id",

WARNING: line over 80 characters
#251: FILE: /tmp/f1-17859/bgp_routemap_nb.c:251:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_originator_id_modify,

WARNING: line over 80 characters
#252: FILE: /tmp/f1-17859/bgp_routemap_nb.c:252:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy,

WARNING: line over 80 characters
#256: FILE: /tmp/f1-17859/bgp_routemap_nb.c:256:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table",

WARNING: line over 80 characters
#258: FILE: /tmp/f1-17859/bgp_routemap_nb.c:258:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_table_modify,

WARNING: line over 80 characters
#259: FILE: /tmp/f1-17859/bgp_routemap_nb.c:259:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_table_destroy,

WARNING: line over 80 characters
#263: FILE: /tmp/f1-17859/bgp_routemap_nb.c:263:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate",

WARNING: line over 80 characters
#265: FILE: /tmp/f1-17859/bgp_routemap_nb.c:265:
+				.create = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create,

WARNING: line over 80 characters
#266: FILE: /tmp/f1-17859/bgp_routemap_nb.c:266:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy,

WARNING: line over 80 characters
#270: FILE: /tmp/f1-17859/bgp_routemap_nb.c:270:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path",

WARNING: line over 80 characters
#272: FILE: /tmp/f1-17859/bgp_routemap_nb.c:272:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify,

WARNING: line over 80 characters
#273: FILE: /tmp/f1-17859/bgp_routemap_nb.c:273:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy,

WARNING: line over 80 characters
#277: FILE: /tmp/f1-17859/bgp_routemap_nb.c:277:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as",

WARNING: line over 80 characters
#279: FILE: /tmp/f1-17859/bgp_routemap_nb.c:279:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_last_as_modify,

WARNING: line over 80 characters
#280: FILE: /tmp/f1-17859/bgp_routemap_nb.c:280:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_last_as_destroy,

WARNING: line over 80 characters
#284: FILE: /tmp/f1-17859/bgp_routemap_nb.c:284:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path",

WARNING: line over 80 characters
#286: FILE: /tmp/f1-17859/bgp_routemap_nb.c:286:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify,

WARNING: line over 80 characters
#287: FILE: /tmp/f1-17859/bgp_routemap_nb.c:287:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy,

WARNING: line over 80 characters
#291: FILE: /tmp/f1-17859/bgp_routemap_nb.c:291:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none",

WARNING: line over 80 characters
#293: FILE: /tmp/f1-17859/bgp_routemap_nb.c:293:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_none_modify,

WARNING: line over 80 characters
#294: FILE: /tmp/f1-17859/bgp_routemap_nb.c:294:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_none_destroy,

WARNING: line over 80 characters
#298: FILE: /tmp/f1-17859/bgp_routemap_nb.c:298:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string",

WARNING: line over 80 characters
#300: FILE: /tmp/f1-17859/bgp_routemap_nb.c:300:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_community_string_modify,

WARNING: line over 80 characters
#301: FILE: /tmp/f1-17859/bgp_routemap_nb.c:301:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_community_string_destroy,

WARNING: line over 80 characters
#305: FILE: /tmp/f1-17859/bgp_routemap_nb.c:305:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none",

WARNING: line over 80 characters
#307: FILE: /tmp/f1-17859/bgp_routemap_nb.c:307:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify,

WARNING: line over 80 characters
#308: FILE: /tmp/f1-17859/bgp_routemap_nb.c:308:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy,

WARNING: line over 80 characters
#312: FILE: /tmp/f1-17859/bgp_routemap_nb.c:312:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string",

WARNING: line over 80 characters
#314: FILE: /tmp/f1-17859/bgp_routemap_nb.c:314:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify,

WARNING: line over 80 characters
#315: FILE: /tmp/f1-17859/bgp_routemap_nb.c:315:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy,

WARNING: line over 80 characters
#319: FILE: /tmp/f1-17859/bgp_routemap_nb.c:319:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator",

WARNING: line over 80 characters
#321: FILE: /tmp/f1-17859/bgp_routemap_nb.c:321:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_aggregator_finish,

WARNING: line over 80 characters
#325: FILE: /tmp/f1-17859/bgp_routemap_nb.c:325:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn",

WARNING: line over 80 characters
#327: FILE: /tmp/f1-17859/bgp_routemap_nb.c:327:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify,

WARNING: line over 80 characters
#328: FILE: /tmp/f1-17859/bgp_routemap_nb.c:328:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy,

WARNING: line over 80 characters
#332: FILE: /tmp/f1-17859/bgp_routemap_nb.c:332:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address",

WARNING: line over 80 characters
#334: FILE: /tmp/f1-17859/bgp_routemap_nb.c:334:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify,

WARNING: line over 80 characters
#335: FILE: /tmp/f1-17859/bgp_routemap_nb.c:335:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy,

WARNING: line over 80 characters
#339: FILE: /tmp/f1-17859/bgp_routemap_nb.c:339:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name",

WARNING: line over 80 characters
#341: FILE: /tmp/f1-17859/bgp_routemap_nb.c:341:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify,

WARNING: line over 80 characters
#342: FILE: /tmp/f1-17859/bgp_routemap_nb.c:342:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy,

WARNING: line over 80 characters
#346: FILE: /tmp/f1-17859/bgp_routemap_nb.c:346:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb",

WARNING: line over 80 characters
#348: FILE: /tmp/f1-17859/bgp_routemap_nb.c:348:
+				.apply_finish = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish,

WARNING: line over 80 characters
#352: FILE: /tmp/f1-17859/bgp_routemap_nb.c:352:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type",

WARNING: line over 80 characters
#354: FILE: /tmp/f1-17859/bgp_routemap_nb.c:354:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify,

WARNING: line over 80 characters
#355: FILE: /tmp/f1-17859/bgp_routemap_nb.c:355:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy,

WARNING: line over 80 characters
#359: FILE: /tmp/f1-17859/bgp_routemap_nb.c:359:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth",

WARNING: line over 80 characters
#361: FILE: /tmp/f1-17859/bgp_routemap_nb.c:361:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify,

WARNING: line over 80 characters
#362: FILE: /tmp/f1-17859/bgp_routemap_nb.c:362:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy,

WARNING: line over 80 characters
#366: FILE: /tmp/f1-17859/bgp_routemap_nb.c:366:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific",

WARNING: line over 80 characters
#368: FILE: /tmp/f1-17859/bgp_routemap_nb.c:368:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify,

WARNING: line over 80 characters
#369: FILE: /tmp/f1-17859/bgp_routemap_nb.c:369:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy,
Report for bgp_routemap_nb_config.c | 41 issues
===============================================
ERROR: do not use assignment in if condition
#71: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:71:
+			if ((tmpstr = route_map_get_match_arg(index, command))

ERROR: switch and case should be at the same indent
#82: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:82:
+	switch (ret) {
+		case RMAP_RULE_MISSING:
[...]
+		case RMAP_COMPILE_ERROR:
[...]
+		case RMAP_COMPILE_SUCCESS:

WARNING: line over 80 characters
#106: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:106:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:local-preference

WARNING: line over 80 characters
#109: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(

WARNING: line over 80 characters
#145: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:145:
+lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(

WARNING: line over 80 characters
#161: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:161:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:script

WARNING: line over 80 characters
#216: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:216:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:origin

WARNING: line over 80 characters
#271: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:271:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:rpki

WARNING: line over 80 characters
#326: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:326:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:probability

WARNING: line over 80 characters
#380: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:380:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:source-vrf

WARNING: line over 80 characters
#435: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:435:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv4-address

WARNING: line over 80 characters
#438: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:438:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(

WARNING: line over 80 characters
#474: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:474:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(

WARNING: line over 80 characters
#490: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:490:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-interface

WARNING: line over 80 characters
#545: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:545:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-ipv6-address

WARNING: line over 80 characters
#548: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:548:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(

WARNING: line over 80 characters
#584: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:584:
+lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(

WARNING: line over 80 characters
#600: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:600:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:peer-local

WARNING: line over 80 characters
#658: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:658:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:list-name

WARNING: line over 80 characters
#700: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:700:
+						  args->errmsg, args->errmsg_len);

WARNING: line over 80 characters
#749: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:749:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-default-route

WARNING: line over 80 characters
#752: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:752:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(

WARNING: line over 80 characters
#786: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:786:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(

WARNING: line over 80 characters
#802: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:802:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-vni

WARNING: line over 80 characters
#857: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:857:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:evpn-route-type

WARNING: line over 80 characters
#897: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:897:
+lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(

WARNING: line over 80 characters
#913: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:913:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:route-distinguisher

WARNING: line over 80 characters
#916: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:916:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(

WARNING: line over 80 characters
#952: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:952:
+lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(

WARNING: line over 80 characters
#968: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:968:
+ * XPath = /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list

WARNING: line over 80 characters
#1026: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1026:
+ * /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name

WARNING: line over 80 characters
#1029: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1029:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(

WARNING: line over 80 characters
#1044: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1044:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(

WARNING: line over 80 characters
#1061: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1061:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:comm-list/comm-list-name-exact-match

WARNING: line over 80 characters
#1064: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1064:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(

WARNING: line over 80 characters
#1079: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1079:
+lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(

WARNING: line over 80 characters
#1095: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1095:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1150: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1150:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1206: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:distance

WARNING: line over 80 characters
#1258: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1258:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-rt

WARNING: line over 80 characters
#1312: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1312:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-soo

WARNING: line over 80 characters
#1367: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1367:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-address

WARNING: line over 80 characters
#1419: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1419:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv4-nexthop

WARNING: line over 80 characters
#1472: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1472:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:ipv6-address

WARNING: line over 80 characters
#1544: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1544:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:preference

WARNING: line over 80 characters
#1608: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1608:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:label-index

WARNING: line over 80 characters
#1660: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1660:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:local-pref

WARNING: line over 80 characters
#1713: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1713:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:weight

WARNING: line over 80 characters
#1765: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1765:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:origin

WARNING: line over 80 characters
#1818: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1818:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:originator-id

WARNING: line over 80 characters
#1870: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1870:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:table

WARNING: line over 80 characters
#1922: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1922:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:atomic-aggregate

WARNING: line over 80 characters
#1974: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:1974:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:prepend-as-path

WARNING: line over 80 characters
#2029: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2029:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:last-as

WARNING: line over 80 characters
#2092: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2092:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:exclude-as-path

WARNING: line over 80 characters
#2147: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2147:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-none

WARNING: line over 80 characters
#2206: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2206:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:community-string

WARNING: line over 80 characters
#2260: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2260:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-none

WARNING: line over 80 characters
#2321: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2321:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:large-community-string

WARNING: line over 80 characters
#2376: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2376:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator

WARNING: line over 80 characters
#2407: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2407:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-asn

WARNING: line over 80 characters
#2425: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2425:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(

WARNING: line over 80 characters
#2442: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2442:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:aggregator/aggregator-address

WARNING: line over 80 characters
#2445: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2445:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(

WARNING: line over 80 characters
#2460: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2460:
+lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(

WARNING: line over 80 characters
#2477: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2477:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:comm-list-name

WARNING: line over 80 characters
#2545: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2545:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb

WARNING: line over 80 characters
#2587: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2587:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/lb-type

WARNING: line over 80 characters
#2605: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2605:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/bandwidth

WARNING: line over 80 characters
#2615: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2615:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(

WARNING: line over 80 characters
#2623: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2623:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-bgp-route-map:extcommunity-lb/two-octet-as-specific

WARNING: line over 80 characters
#2626: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2626:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(

WARNING: line over 80 characters
#2633: FILE: /tmp/f1-17859/bgp_routemap_nb_config.c:2633:
+lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(
Report for bgp_routemap_nb.h | 156 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-17859/bgp_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/bgp_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_local_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/bgp_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-17859/bgp_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_script_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-17859/bgp_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-17859/bgp_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-17859/bgp_routemap_nb.h:36:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-17859/bgp_routemap_nb.h:37:
+int lib_route_map_entry_match_condition_rmap_match_condition_rpki_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-17859/bgp_routemap_nb.h:38:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-17859/bgp_routemap_nb.h:39:
+int lib_route_map_entry_match_condition_rmap_match_condition_probability_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#40: FILE: /tmp/f1-17859/bgp_routemap_nb.h:40:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#41: FILE: /tmp/f1-17859/bgp_routemap_nb.h:41:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_vrf_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#42: FILE: /tmp/f1-17859/bgp_routemap_nb.h:42:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#43: FILE: /tmp/f1-17859/bgp_routemap_nb.h:43:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#44: FILE: /tmp/f1-17859/bgp_routemap_nb.h:44:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#45: FILE: /tmp/f1-17859/bgp_routemap_nb.h:45:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_interface_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#46: FILE: /tmp/f1-17859/bgp_routemap_nb.h:46:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#47: FILE: /tmp/f1-17859/bgp_routemap_nb.h:47:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#48: FILE: /tmp/f1-17859/bgp_routemap_nb.h:48:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#49: FILE: /tmp/f1-17859/bgp_routemap_nb.h:49:
+int lib_route_map_entry_match_condition_rmap_match_condition_peer_local_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#50: FILE: /tmp/f1-17859/bgp_routemap_nb.h:50:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#51: FILE: /tmp/f1-17859/bgp_routemap_nb.h:51:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#52: FILE: /tmp/f1-17859/bgp_routemap_nb.h:52:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#53: FILE: /tmp/f1-17859/bgp_routemap_nb.h:53:
+int lib_route_map_entry_match_condition_rmap_match_condition_access_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#54: FILE: /tmp/f1-17859/bgp_routemap_nb.h:54:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#55: FILE: /tmp/f1-17859/bgp_routemap_nb.h:55:
+int lib_route_map_entry_match_condition_rmap_match_condition_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#56: FILE: /tmp/f1-17859/bgp_routemap_nb.h:56:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#57: FILE: /tmp/f1-17859/bgp_routemap_nb.h:57:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_default_route_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#58: FILE: /tmp/f1-17859/bgp_routemap_nb.h:58:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#59: FILE: /tmp/f1-17859/bgp_routemap_nb.h:59:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_vni_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#60: FILE: /tmp/f1-17859/bgp_routemap_nb.h:60:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#61: FILE: /tmp/f1-17859/bgp_routemap_nb.h:61:
+int lib_route_map_entry_match_condition_rmap_match_condition_evpn_route_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#62: FILE: /tmp/f1-17859/bgp_routemap_nb.h:62:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#63: FILE: /tmp/f1-17859/bgp_routemap_nb.h:63:
+int lib_route_map_entry_match_condition_rmap_match_condition_route_distinguisher_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#64: FILE: /tmp/f1-17859/bgp_routemap_nb.h:64:
+void lib_route_map_entry_match_condition_rmap_match_condition_comm_list_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#65: FILE: /tmp/f1-17859/bgp_routemap_nb.h:65:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#66: FILE: /tmp/f1-17859/bgp_routemap_nb.h:66:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#67: FILE: /tmp/f1-17859/bgp_routemap_nb.h:67:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#68: FILE: /tmp/f1-17859/bgp_routemap_nb.h:68:
+int lib_route_map_entry_match_condition_rmap_match_condition_comm_list_comm_list_name_exact_match_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#69: FILE: /tmp/f1-17859/bgp_routemap_nb.h:69:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#70: FILE: /tmp/f1-17859/bgp_routemap_nb.h:70:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#71: FILE: /tmp/f1-17859/bgp_routemap_nb.h:71:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#72: FILE: /tmp/f1-17859/bgp_routemap_nb.h:72:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#73: FILE: /tmp/f1-17859/bgp_routemap_nb.h:73:
+int lib_route_map_entry_set_action_rmap_set_action_distance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#74: FILE: /tmp/f1-17859/bgp_routemap_nb.h:74:
+int lib_route_map_entry_set_action_rmap_set_action_distance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#75: FILE: /tmp/f1-17859/bgp_routemap_nb.h:75:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#76: FILE: /tmp/f1-17859/bgp_routemap_nb.h:76:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_rt_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#77: FILE: /tmp/f1-17859/bgp_routemap_nb.h:77:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#78: FILE: /tmp/f1-17859/bgp_routemap_nb.h:78:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_soo_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#79: FILE: /tmp/f1-17859/bgp_routemap_nb.h:79:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#80: FILE: /tmp/f1-17859/bgp_routemap_nb.h:80:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#81: FILE: /tmp/f1-17859/bgp_routemap_nb.h:81:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#82: FILE: /tmp/f1-17859/bgp_routemap_nb.h:82:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_nexthop_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#83: FILE: /tmp/f1-17859/bgp_routemap_nb.h:83:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#84: FILE: /tmp/f1-17859/bgp_routemap_nb.h:84:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#85: FILE: /tmp/f1-17859/bgp_routemap_nb.h:85:
+int lib_route_map_entry_set_action_rmap_set_action_preference_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#86: FILE: /tmp/f1-17859/bgp_routemap_nb.h:86:
+int lib_route_map_entry_set_action_rmap_set_action_preference_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#87: FILE: /tmp/f1-17859/bgp_routemap_nb.h:87:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#88: FILE: /tmp/f1-17859/bgp_routemap_nb.h:88:
+int lib_route_map_entry_set_action_rmap_set_action_label_index_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#89: FILE: /tmp/f1-17859/bgp_routemap_nb.h:89:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#90: FILE: /tmp/f1-17859/bgp_routemap_nb.h:90:
+int lib_route_map_entry_set_action_rmap_set_action_local_pref_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#91: FILE: /tmp/f1-17859/bgp_routemap_nb.h:91:
+int lib_route_map_entry_set_action_rmap_set_action_weight_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#92: FILE: /tmp/f1-17859/bgp_routemap_nb.h:92:
+int lib_route_map_entry_set_action_rmap_set_action_weight_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#93: FILE: /tmp/f1-17859/bgp_routemap_nb.h:93:
+int lib_route_map_entry_set_action_rmap_set_action_origin_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#94: FILE: /tmp/f1-17859/bgp_routemap_nb.h:94:
+int lib_route_map_entry_set_action_rmap_set_action_origin_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#95: FILE: /tmp/f1-17859/bgp_routemap_nb.h:95:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#96: FILE: /tmp/f1-17859/bgp_routemap_nb.h:96:
+int lib_route_map_entry_set_action_rmap_set_action_originator_id_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#97: FILE: /tmp/f1-17859/bgp_routemap_nb.h:97:
+int lib_route_map_entry_set_action_rmap_set_action_table_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#98: FILE: /tmp/f1-17859/bgp_routemap_nb.h:98:
+int lib_route_map_entry_set_action_rmap_set_action_table_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#99: FILE: /tmp/f1-17859/bgp_routemap_nb.h:99:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_create(struct nb_cb_create_args *args);

WARNING: line over 80 characters
#100: FILE: /tmp/f1-17859/bgp_routemap_nb.h:100:
+int lib_route_map_entry_set_action_rmap_set_action_atomic_aggregate_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#101: FILE: /tmp/f1-17859/bgp_routemap_nb.h:101:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#102: FILE: /tmp/f1-17859/bgp_routemap_nb.h:102:
+int lib_route_map_entry_set_action_rmap_set_action_prepend_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#103: FILE: /tmp/f1-17859/bgp_routemap_nb.h:103:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#104: FILE: /tmp/f1-17859/bgp_routemap_nb.h:104:
+int lib_route_map_entry_set_action_rmap_set_action_last_as_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#105: FILE: /tmp/f1-17859/bgp_routemap_nb.h:105:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#106: FILE: /tmp/f1-17859/bgp_routemap_nb.h:106:
+int lib_route_map_entry_set_action_rmap_set_action_exclude_as_path_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#107: FILE: /tmp/f1-17859/bgp_routemap_nb.h:107:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#108: FILE: /tmp/f1-17859/bgp_routemap_nb.h:108:
+int lib_route_map_entry_set_action_rmap_set_action_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#109: FILE: /tmp/f1-17859/bgp_routemap_nb.h:109:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#110: FILE: /tmp/f1-17859/bgp_routemap_nb.h:110:
+int lib_route_map_entry_set_action_rmap_set_action_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#111: FILE: /tmp/f1-17859/bgp_routemap_nb.h:111:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#112: FILE: /tmp/f1-17859/bgp_routemap_nb.h:112:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_none_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#113: FILE: /tmp/f1-17859/bgp_routemap_nb.h:113:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#114: FILE: /tmp/f1-17859/bgp_routemap_nb.h:114:
+int lib_route_map_entry_set_action_rmap_set_action_large_community_string_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#115: FILE: /tmp/f1-17859/bgp_routemap_nb.h:115:
+void lib_route_map_entry_set_action_rmap_set_action_aggregator_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#116: FILE: /tmp/f1-17859/bgp_routemap_nb.h:116:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#117: FILE: /tmp/f1-17859/bgp_routemap_nb.h:117:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_asn_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#118: FILE: /tmp/f1-17859/bgp_routemap_nb.h:118:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#119: FILE: /tmp/f1-17859/bgp_routemap_nb.h:119:
+int lib_route_map_entry_set_action_rmap_set_action_aggregator_aggregator_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#120: FILE: /tmp/f1-17859/bgp_routemap_nb.h:120:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#121: FILE: /tmp/f1-17859/bgp_routemap_nb.h:121:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#122: FILE: /tmp/f1-17859/bgp_routemap_nb.h:122:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#123: FILE: /tmp/f1-17859/bgp_routemap_nb.h:123:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_num_extended_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#124: FILE: /tmp/f1-17859/bgp_routemap_nb.h:124:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#125: FILE: /tmp/f1-17859/bgp_routemap_nb.h:125:
+int lib_route_map_entry_set_action_rmap_set_action_comm_list_name_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#126: FILE: /tmp/f1-17859/bgp_routemap_nb.h:126:
+void lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_finish(struct nb_cb_apply_finish_args *args);

WARNING: line over 80 characters
#127: FILE: /tmp/f1-17859/bgp_routemap_nb.h:127:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#128: FILE: /tmp/f1-17859/bgp_routemap_nb.h:128:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_lb_type_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#129: FILE: /tmp/f1-17859/bgp_routemap_nb.h:129:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#130: FILE: /tmp/f1-17859/bgp_routemap_nb.h:130:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_bandwidth_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#131: FILE: /tmp/f1-17859/bgp_routemap_nb.h:131:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#132: FILE: /tmp/f1-17859/bgp_routemap_nb.h:132:
+int lib_route_map_entry_set_action_rmap_set_action_extcommunity_lb_two_octet_as_specific_destroy(struct nb_cb_destroy_args *args);
Report for ospf6_routemap_nb.c | 24 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,

WARNING: line over 80 characters
#45: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:45:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address",

WARNING: line over 80 characters
#47: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:47:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify,

WARNING: line over 80 characters
#48: FILE: /tmp/f1-17859/ospf6_routemap_nb.c:48:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy,
Report for ospf6_routemap_nb_config.c | 8 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-17859/ospf6_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type

WARNING: line over 80 characters
#80: FILE: /tmp/f1-17859/ospf6_routemap_nb_config.c:80:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf6-route-map:ipv6-address
Report for ospf6_routemap_nb.h | 16 issues
===============================================
WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/ospf6_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/ospf6_routemap_nb.h:32:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-17859/ospf6_routemap_nb.h:33:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-17859/ospf6_routemap_nb.h:34:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for ospf_routemap_nb.c | 12 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-17859/ospf_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/ospf_routemap_nb.c:31:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_metric_type_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/ospf_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy,
Report for ospf_routemap_nb_config.c | 4 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-17859/ospf_routemap_nb_config.c:28:
+ * /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-ospf-route-map:metric-type
Report for ospf_routemap_nb.h | 8 issues
===============================================
WARNING: line over 80 characters
#30: FILE: /tmp/f1-17859/ospf_routemap_nb.h:30:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/ospf_routemap_nb.h:31:
+int lib_route_map_entry_set_action_rmap_set_action_metric_type_destroy(struct nb_cb_destroy_args *args);
Report for routemap_cli.c | 148 issues
===============================================
< WARNING: line over 80 characters
< #176: FILE: /tmp/f1-17859/routemap_cli.c:176:
< WARNING: line over 80 characters
< #199: FILE: /tmp/f1-17859/routemap_cli.c:199:
< WARNING: line over 80 characters
< #257: FILE: /tmp/f1-17859/routemap_cli.c:257:
< WARNING: line over 80 characters
< #280: FILE: /tmp/f1-17859/routemap_cli.c:280:
< WARNING: line over 80 characters
< #298: FILE: /tmp/f1-17859/routemap_cli.c:298:
< WARNING: line over 80 characters
< #321: FILE: /tmp/f1-17859/routemap_cli.c:321:
< WARNING: line over 80 characters
< #338: FILE: /tmp/f1-17859/routemap_cli.c:338:
< WARNING: line over 80 characters
< #358: FILE: /tmp/f1-17859/routemap_cli.c:358:
< WARNING: line over 80 characters
< #374: FILE: /tmp/f1-17859/routemap_cli.c:374:
< WARNING: line over 80 characters
< #395: FILE: /tmp/f1-17859/routemap_cli.c:395:
< WARNING: line over 80 characters
< #451: FILE: /tmp/f1-17859/routemap_cli.c:451:
< WARNING: line over 80 characters
< #471: FILE: /tmp/f1-17859/routemap_cli.c:471:
< ERROR: do not use assignment in if condition
< #562: FILE: /tmp/f1-17859/routemap_cli.c:562:
< WARNING: line over 80 characters
< #611: FILE: /tmp/f1-17859/routemap_cli.c:611:
< WARNING: line over 80 characters
< #616: FILE: /tmp/f1-17859/routemap_cli.c:616:
< WARNING: line over 80 characters
< #621: FILE: /tmp/f1-17859/routemap_cli.c:621:
< WARNING: line over 80 characters
< #626: FILE: /tmp/f1-17859/routemap_cli.c:626:
< WARNING: line over 80 characters
< #631: FILE: /tmp/f1-17859/routemap_cli.c:631:
< WARNING: line over 80 characters
< #636: FILE: /tmp/f1-17859/routemap_cli.c:636:
< WARNING: line over 80 characters
< #641: FILE: /tmp/f1-17859/routemap_cli.c:641:
< WARNING: line over 80 characters
< #646: FILE: /tmp/f1-17859/routemap_cli.c:646:
< WARNING: line over 80 characters
< #651: FILE: /tmp/f1-17859/routemap_cli.c:651:
< WARNING: line over 80 characters
< #656: FILE: /tmp/f1-17859/routemap_cli.c:656:
< ERROR: do not use assignment in if condition
< #659: FILE: /tmp/f1-17859/routemap_cli.c:659:
< WARNING: line over 80 characters
< #661: FILE: /tmp/f1-17859/routemap_cli.c:661:
< ERROR: do not use assignment in if condition
< #664: FILE: /tmp/f1-17859/routemap_cli.c:664:
< WARNING: line over 80 characters
< #667: FILE: /tmp/f1-17859/routemap_cli.c:667:
< ERROR: do not use assignment in if condition
< #670: FILE: /tmp/f1-17859/routemap_cli.c:670:
< WARNING: line over 80 characters
< #673: FILE: /tmp/f1-17859/routemap_cli.c:673:
< WARNING: line over 80 characters
< #678: FILE: /tmp/f1-17859/routemap_cli.c:678:
< WARNING: line over 80 characters
< #687: FILE: /tmp/f1-17859/routemap_cli.c:687:
< WARNING: line over 80 characters
< #692: FILE: /tmp/f1-17859/routemap_cli.c:692:
< WARNING: line over 80 characters
< #699: FILE: /tmp/f1-17859/routemap_cli.c:699:
< WARNING: line over 80 characters
< #704: FILE: /tmp/f1-17859/routemap_cli.c:704:
< WARNING: line over 80 characters
< #709: FILE: /tmp/f1-17859/routemap_cli.c:709:
< WARNING: line over 80 characters
< #714: FILE: /tmp/f1-17859/routemap_cli.c:714:
< ERROR: do not use assignment in if condition
< #717: FILE: /tmp/f1-17859/routemap_cli.c:717:
< WARNING: line over 80 characters
< #730: FILE: /tmp/f1-17859/routemap_cli.c:730:
< ERROR: do not use assignment in if condition
< #733: FILE: /tmp/f1-17859/routemap_cli.c:733:
< WARNING: line over 80 characters
< #735: FILE: /tmp/f1-17859/routemap_cli.c:735:
< ERROR: do not use assignment in if condition
< #744: FILE: /tmp/f1-17859/routemap_cli.c:744:
< WARNING: line over 80 characters
< #746: FILE: /tmp/f1-17859/routemap_cli.c:746:
< WARNING: line over 80 characters
< #753: FILE: /tmp/f1-17859/routemap_cli.c:753:
< ERROR: do not use assignment in if condition
< #764: FILE: /tmp/f1-17859/routemap_cli.c:764:
< WARNING: line over 80 characters
< #766: FILE: /tmp/f1-17859/routemap_cli.c:766:
< WARNING: line over 80 characters
< #773: FILE: /tmp/f1-17859/routemap_cli.c:773:
< ERROR: do not use assignment in if condition
< #785: FILE: /tmp/f1-17859/routemap_cli.c:785:
< WARNING: line over 80 characters
< #787: FILE: /tmp/f1-17859/routemap_cli.c:787:
< WARNING: line over 80 characters
< #798: FILE: /tmp/f1-17859/routemap_cli.c:798:
< WARNING: line over 80 characters
< #803: FILE: /tmp/f1-17859/routemap_cli.c:803:
< WARNING: line over 80 characters
< #1073: FILE: /tmp/f1-17859/routemap_cli.c:1073:
< WARNING: line over 80 characters
< #1077: FILE: /tmp/f1-17859/routemap_cli.c:1077:
< WARNING: line over 80 characters
< #1082: FILE: /tmp/f1-17859/routemap_cli.c:1082:
< WARNING: line over 80 characters
< #1087: FILE: /tmp/f1-17859/routemap_cli.c:1087:
< WARNING: line over 80 characters
< #1092: FILE: /tmp/f1-17859/routemap_cli.c:1092:
< WARNING: line over 80 characters
< #1107: FILE: /tmp/f1-17859/routemap_cli.c:1107:
< WARNING: line over 80 characters
< #1112: FILE: /tmp/f1-17859/routemap_cli.c:1112:
< WARNING: line over 80 characters
< #1117: FILE: /tmp/f1-17859/routemap_cli.c:1117:
< WARNING: line over 80 characters
< #1129: FILE: /tmp/f1-17859/routemap_cli.c:1129:
< ERROR: do not use assignment in if condition
< #1132: FILE: /tmp/f1-17859/routemap_cli.c:1132:
< WARNING: line over 80 characters
< #1134: FILE: /tmp/f1-17859/routemap_cli.c:1134:
< ERROR: do not use assignment in if condition
< #1143: FILE: /tmp/f1-17859/routemap_cli.c:1143:
< WARNING: line over 80 characters
< #1145: FILE: /tmp/f1-17859/routemap_cli.c:1145:
< WARNING: line over 80 characters
< #1155: FILE: /tmp/f1-17859/routemap_cli.c:1155:
< WARNING: line over 80 characters
< #1159: FILE: /tmp/f1-17859/routemap_cli.c:1159:
< WARNING: line over 80 characters
< #1164: FILE: /tmp/f1-17859/routemap_cli.c:1164:
< WARNING: line over 80 characters
< #1170: FILE: /tmp/f1-17859/routemap_cli.c:1170:
< WARNING: line over 80 characters
< #1174: FILE: /tmp/f1-17859/routemap_cli.c:1174:
< WARNING: line over 80 characters
< #1179: FILE: /tmp/f1-17859/routemap_cli.c:1179:
< WARNING: line over 80 characters
< #1186: FILE: /tmp/f1-17859/routemap_cli.c:1186:
< WARNING: line over 80 characters
< #1191: FILE: /tmp/f1-17859/routemap_cli.c:1191:
< WARNING: line over 80 characters
< #1196: FILE: /tmp/f1-17859/routemap_cli.c:1196:
< WARNING: line over 80 characters
< #1199: FILE: /tmp/f1-17859/routemap_cli.c:1199:
< WARNING: line over 80 characters
< #1204: FILE: /tmp/f1-17859/routemap_cli.c:1204:
Report for routemap_northbound.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #1211: FILE: /tmp/f1-17859/routemap_northbound.c:1211:
< WARNING: line over 80 characters
< #1368: FILE: /tmp/f1-17859/routemap_northbound.c:1368:
< WARNING: line over 80 characters
< #1370: FILE: /tmp/f1-17859/routemap_northbound.c:1370:
< WARNING: line over 80 characters
< #1371: FILE: /tmp/f1-17859/routemap_northbound.c:1371:
Report for zebra_routemap.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #361: FILE: /tmp/f1-17859/zebra_routemap.c:361:
< WARNING: line over 80 characters
< #385: FILE: /tmp/f1-17859/zebra_routemap.c:385:
< WARNING: line over 80 characters
< #402: FILE: /tmp/f1-17859/zebra_routemap.c:402:
< WARNING: line over 80 characters
< #426: FILE: /tmp/f1-17859/zebra_routemap.c:426:
< WARNING: line over 80 characters
< #443: FILE: /tmp/f1-17859/zebra_routemap.c:443:
< WARNING: line over 80 characters
< #467: FILE: /tmp/f1-17859/zebra_routemap.c:467:
< WARNING: line over 80 characters
< #482: FILE: /tmp/f1-17859/zebra_routemap.c:482:
< WARNING: line over 80 characters
< #503: FILE: /tmp/f1-17859/zebra_routemap.c:503:
< WARNING: line over 80 characters
< #518: FILE: /tmp/f1-17859/zebra_routemap.c:518:
< WARNING: line over 80 characters
< #538: FILE: /tmp/f1-17859/zebra_routemap.c:538:
Report for zebra_routemap_nb.c | 72 issues
===============================================
WARNING: line over 80 characters
#29: FILE: /tmp/f1-17859/zebra_routemap_nb.c:29:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length",

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/zebra_routemap_nb.c:31:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify,

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/zebra_routemap_nb.c:32:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy,

WARNING: line over 80 characters
#36: FILE: /tmp/f1-17859/zebra_routemap_nb.c:36:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length",

WARNING: line over 80 characters
#38: FILE: /tmp/f1-17859/zebra_routemap_nb.c:38:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify,

WARNING: line over 80 characters
#39: FILE: /tmp/f1-17859/zebra_routemap_nb.c:39:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy,

WARNING: line over 80 characters
#43: FILE: /tmp/f1-17859/zebra_routemap_nb.c:43:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance",

WARNING: line over 80 characters
#45: FILE: /tmp/f1-17859/zebra_routemap_nb.c:45:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify,

WARNING: line over 80 characters
#46: FILE: /tmp/f1-17859/zebra_routemap_nb.c:46:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy,

WARNING: line over 80 characters
#50: FILE: /tmp/f1-17859/zebra_routemap_nb.c:50:
+			.xpath = "/frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol",

WARNING: line over 80 characters
#52: FILE: /tmp/f1-17859/zebra_routemap_nb.c:52:
+				.modify = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify,

WARNING: line over 80 characters
#53: FILE: /tmp/f1-17859/zebra_routemap_nb.c:53:
+				.destroy = lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy,

WARNING: line over 80 characters
#57: FILE: /tmp/f1-17859/zebra_routemap_nb.c:57:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address",

WARNING: line over 80 characters
#59: FILE: /tmp/f1-17859/zebra_routemap_nb.c:59:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify,

WARNING: line over 80 characters
#60: FILE: /tmp/f1-17859/zebra_routemap_nb.c:60:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy,

WARNING: line over 80 characters
#64: FILE: /tmp/f1-17859/zebra_routemap_nb.c:64:
+			.xpath = "/frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address",

WARNING: line over 80 characters
#66: FILE: /tmp/f1-17859/zebra_routemap_nb.c:66:
+				.modify = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify,

WARNING: line over 80 characters
#67: FILE: /tmp/f1-17859/zebra_routemap_nb.c:67:
+				.destroy = lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy,
Report for zebra_routemap_nb_config.c | 48 issues
===============================================
WARNING: line over 80 characters
#11: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:11:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv4-prefix-length

WARNING: line over 80 characters
#14: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:14:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(

WARNING: line over 80 characters
#55: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:55:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(

WARNING: line over 80 characters
#71: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:71:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:ipv6-prefix-length

WARNING: line over 80 characters
#74: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:74:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(

WARNING: line over 80 characters
#109: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:109:
+lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(

WARNING: line over 80 characters
#126: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:126:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-instance

WARNING: line over 80 characters
#164: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:164:
+lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(

WARNING: line over 80 characters
#180: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:180:
+ * XPath: /frr-route-map:lib/route-map/entry/match-condition/rmap-match-condition/frr-zebra-route-map:source-protocol

WARNING: line over 80 characters
#227: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:227:
+lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(

WARNING: line over 80 characters
#243: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:243:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv4-src-address

WARNING: line over 80 characters
#321: FILE: /tmp/f1-17859/zebra_routemap_nb_config.c:321:
+ * XPath: /frr-route-map:lib/route-map/entry/set-action/rmap-set-action/frr-zebra-route-map:ipv6-src-address
Report for zebra_routemap_nb.h | 48 issues
===============================================
WARNING: line over 80 characters
#28: FILE: /tmp/f1-17859/zebra_routemap_nb.h:28:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#29: FILE: /tmp/f1-17859/zebra_routemap_nb.h:29:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv4_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#30: FILE: /tmp/f1-17859/zebra_routemap_nb.h:30:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#31: FILE: /tmp/f1-17859/zebra_routemap_nb.h:31:
+int lib_route_map_entry_match_condition_rmap_match_condition_ipv6_prefix_length_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#32: FILE: /tmp/f1-17859/zebra_routemap_nb.h:32:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#33: FILE: /tmp/f1-17859/zebra_routemap_nb.h:33:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_instance_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#34: FILE: /tmp/f1-17859/zebra_routemap_nb.h:34:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#35: FILE: /tmp/f1-17859/zebra_routemap_nb.h:35:
+int lib_route_map_entry_match_condition_rmap_match_condition_source_protocol_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#36: FILE: /tmp/f1-17859/zebra_routemap_nb.h:36:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#37: FILE: /tmp/f1-17859/zebra_routemap_nb.h:37:
+int lib_route_map_entry_set_action_rmap_set_action_ipv4_src_address_destroy(struct nb_cb_destroy_args *args);

WARNING: line over 80 characters
#38: FILE: /tmp/f1-17859/zebra_routemap_nb.h:38:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_modify(struct nb_cb_modify_args *args);

WARNING: line over 80 characters
#39: FILE: /tmp/f1-17859/zebra_routemap_nb.h:39:
+int lib_route_map_entry_set_action_rmap_set_action_ipv6_src_address_destroy(struct nb_cb_destroy_args *args);

@idryzhov idryzhov merged commit fb63937 into FRRouting:master Mar 30, 2021
@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-18101/

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants