[dpdk-test-report] |FAILURE| pw22965 [PATCH v2 2/5] add new xstats API id support for e1000

sys_stv at intel.com sys_stv at intel.com
Sat Apr 1 19:39:16 CEST 2017


Test-Label: Intel-compilation
Test-Status: FAILURE

http://dpdk.org/patch/22965

_Compilation issues_

Submitter: Michal Jastrzebski <michalx.k.jastrzebski at intel.com>
Date: Thu, 30 Mar 2017 23:50:36 +0200
DPDK git baseline: Repo:dpdk, Branch:master, CommitID:ba82829fda022e14a938c3a669de0e634626e4c8

Patch22964-22965 --> compile error
Build Summary: 18 Builds Done, 0 Successful, 18 Failures

Test environment and configuration as below:
OS: RHEL7.2_64
    Kernel Version:3.10.0-514.10.2.el7.x86_64
    CPU info:Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz
    GCC Version:gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4)
    Clang Version:3.4.2
    i686-native-linuxapp-gcc
    x86_64-native-linuxapp-gcc
    x86_64-native-linuxapp-gcc-shared
OS: FreeBSD10.3_64
    Kernel Version:10.3-RELEASE
    CPU info: Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz (2194.97-MHz K8-class CPU)
    GCC Version:gcc (FreeBSD Ports Collection) 4.8.5
    Clang Version:3.4.1
    x86_64-native-bsdapp-clang
    x86_64-native-bsdapp-gcc
OS: FC24_64
    Kernel Version:4.9.13-100.fc24.x86_64
    CPU info:Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
    GCC Version:gcc (GCC) 6.2.1 20160916 (Red Hat 6.2.1-2)
    Clang Version:3.8.0
    x86_64-native-linuxapp-clang
    i686-native-linuxapp-gcc
    x86_64-native-linuxapp-gcc
    x86_64-native-linuxapp-gcc-shared
    x86_64-native-linuxapp-gcc-debug
OS: UB1604_64
    Kernel Version:4.4.0-64-generic
    CPU info:Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
    GCC Version:gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609
    Clang Version:3.8.0
    i686-native-linuxapp-gcc
    x86_64-native-linuxapp-clang
    x86_64-native-linuxapp-gcc-shared
    x86_64-native-linuxapp-gcc
OS: CentOS7_64
    Kernel Version:3.10.0-514.10.2.el7.x86_64
    CPU info:Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
    GCC Version:gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4)
    Clang Version:3.4.2
    i686-native-linuxapp-gcc
    x86_64-native-linuxapp-clang
    x86_64-native-linuxapp-gcc-shared
    x86_64-native-linuxapp-gcc

Failed Build #1:
OS: RHEL7.2_64
Target: i686-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


Failed Build #2:
OS: RHEL7.2_64
Target: x86_64-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


Failed Build #3:
OS: RHEL7.2_64
Target: x86_64-native-linuxapp-gcc-shared

/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


Failed Build #4:
OS: FreeBSD10.3_64
Target: x86_64-native-bsdapp-clang
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:56: error: too few arguments to function call, expected 4, have 3
        cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
                     ~~~~~~~~~~~~~~~~~~~~~~~~                 ^
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:37: error: too few arguments to function call, expected 4, have 3
                        port_id, xstats_names, cnt_xstats)) {
                                                         ^
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:66: error: too few arguments to function call, expected 4, have 3
        if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                          ~~~~~~~~~~~~~~~~~~                            ^
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-clang/include/rte_ethdev.h:2441:1: note: 'rte_eth_xstats_get' declared here
int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
^
3 errors generated.
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #5:
OS: FreeBSD10.3_64
Target: x86_64-native-bsdapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function 'nic_xstats_display':
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function 'rte_eth_xstats_get_names'
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of 'rte_eth_xstats_get_names' makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2494:5: note: expected 'uint64_t *' but argument is of type 'int'
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function 'rte_eth_xstats_get_names'
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of 'rte_eth_xstats_get' from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2441:5: note: expected 'uint64_t *' but argument is of type 'struct rte_eth_xstat *'
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of 'rte_eth_xstats_get' makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2441:5: note: expected 'uint64_t *' but argument is of type 'int'
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function 'rte_eth_xstats_get'
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-bsdapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #6:
OS: FC24_64
Target: x86_64-native-linuxapp-clang
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:56: error: too few arguments to function call, expected 4, have 3
        cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
                     ~~~~~~~~~~~~~~~~~~~~~~~~                 ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:37: error: too few arguments to function call, expected 4, have 3
                        port_id, xstats_names, cnt_xstats)) {
                                                         ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:66: error: too few arguments to function call, expected 4, have 3
        if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                          ~~~~~~~~~~~~~~~~~~                            ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2441:1: note: 'rte_eth_xstats_get' declared here
int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
^
3 errors generated.
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #7:
OS: FC24_64
Target: i686-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #8:
OS: FC24_64
Target: x86_64-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #9:
OS: FC24_64
Target: x86_64-native-linuxapp-gcc-shared

/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #10:
OS: FC24_64
Target: x86_64-native-linuxapp-gcc-debug

/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^~~~~~~~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^~~~~~~~~~~~~~~~~~
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #11:
OS: UB1604_64
Target: i686-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #12:
OS: UB1604_64
Target: x86_64-native-linuxapp-clang
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:56: error: too few arguments to function call, expected 4, have 3
        cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
                     ~~~~~~~~~~~~~~~~~~~~~~~~                 ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:37: error: too few arguments to function call, expected 4, have 3
                        port_id, xstats_names, cnt_xstats)) {
                                                         ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:66: error: too few arguments to function call, expected 4, have 3
        if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                          ~~~~~~~~~~~~~~~~~~                            ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2441:1: note: 'rte_eth_xstats_get' declared here
int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
^
3 errors generated.
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #13:
OS: UB1604_64
Target: x86_64-native-linuxapp-gcc-shared

/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #14:
OS: UB1604_64
Target: x86_64-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:15: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
               ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:27: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror=int-conversion]
    port_id, xstats_names, cnt_xstats)) {
                           ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:290:20: error: too few arguments to function ‘rte_eth_xstats_get_names’
  if (cnt_xstats != rte_eth_xstats_get_names(
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:48: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror=incompatible-pointer-types]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:56: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror=int-conversion]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                                                        ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:20: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors
/home/patchWorkOrg/compilation/mk/internal/rte.compile-pre.mk:138: recipe for target 'config.o' failed
/home/patchWorkOrg/compilation/mk/rte.subdir.mk:63: recipe for target 'test-pmd' failed
/home/patchWorkOrg/compilation/mk/rte.sdkbuild.mk:73: recipe for target 'app' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:124: recipe for target 'all' failed
/home/patchWorkOrg/compilation/mk/rte.sdkinstall.mk:85: recipe for target 'pre_install' failed
/home/patchWorkOrg/compilation/mk/rte.sdkroot.mk:103: recipe for target 'install' failed


Failed Build #15:
OS: CentOS7_64
Target: i686-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/i686-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


Failed Build #16:
OS: CentOS7_64
Target: x86_64-native-linuxapp-clang
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:56: error: too few arguments to function call, expected 4, have 3
        cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
                     ~~~~~~~~~~~~~~~~~~~~~~~~                 ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:37: error: too few arguments to function call, expected 4, have 3
                        port_id, xstats_names, cnt_xstats)) {
                                                         ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2494:1: note: 'rte_eth_xstats_get_names' declared here
int rte_eth_xstats_get_names(uint8_t port_id,
^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:66: error: too few arguments to function call, expected 4, have 3
        if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
                          ~~~~~~~~~~~~~~~~~~                            ^
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-clang/include/rte_ethdev.h:2441:1: note: 'rte_eth_xstats_get' declared here
int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
^
3 errors generated.


Failed Build #17:
OS: CentOS7_64
Target: x86_64-native-linuxapp-gcc-shared

/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


Failed Build #18:
OS: CentOS7_64
Target: x86_64-native-linuxapp-gcc
/home/patchWorkOrg/compilation/app/test-pmd/config.c: In function ‘nic_xstats_display’:
/home/patchWorkOrg/compilation/app/test-pmd/config.c:278:2: error: too few arguments to function ‘rte_eth_xstats_get_names’
  cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: passing argument 3 of ‘rte_eth_xstats_get_names’ makes pointer from integer without a cast [-Werror]
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:291:4: error: too few arguments to function ‘rte_eth_xstats_get_names’
    port_id, xstats_names, cnt_xstats)) {
    ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2494:5: note: declared here
 int rte_eth_xstats_get_names(uint8_t port_id,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 2 of ‘rte_eth_xstats_get’ from incompatible pointer type [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘struct rte_eth_xstat *’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: passing argument 3 of ‘rte_eth_xstats_get’ makes pointer from integer without a cast [-Werror]
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: expected ‘uint64_t *’ but argument is of type ‘int’
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
/home/patchWorkOrg/compilation/app/test-pmd/config.c:304:2: error: too few arguments to function ‘rte_eth_xstats_get’
  if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
  ^
In file included from /home/patchWorkOrg/compilation/app/test-pmd/config.c:92:0:
/home/patchWorkOrg/compilation/x86_64-native-linuxapp-gcc/include/rte_ethdev.h:2441:5: note: declared here
 int rte_eth_xstats_get(uint8_t port_id, uint64_t *ids, uint64_t *values,
     ^
cc1: all warnings being treated as errors


DPDK STV team


More information about the test-report mailing list