test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/2] add support NIC
@ 2020-09-30  6:46 Chen Linglix
  2020-09-30  6:46 ` [dts] [dts 1/2] tests/TestSuite_userspace_ethtool:add foxville Chen Linglix
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Chen Linglix @ 2020-09-30  6:46 UTC (permalink / raw)
  To: dts; +Cc: Chen Linglix

add support NIC

Chen Linglix (2):
  tests/TestSuite_userspace_ethtool:add foxville
  tests/TestSuite_inline_ipsec:add support NIC twinpond

 tests/TestSuite_inline_ipsec.py      | 2 +-
 tests/TestSuite_userspace_ethtool.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dts] [dts 1/2] tests/TestSuite_userspace_ethtool:add foxville
  2020-09-30  6:46 [dts] [PATCH V1 0/2] add support NIC Chen Linglix
@ 2020-09-30  6:46 ` Chen Linglix
  2020-09-30  6:46 ` [dts] [dts 2/2] tests/TestSuite_inline_ipsec:add support NIC twinpond Chen Linglix
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Chen Linglix @ 2020-09-30  6:46 UTC (permalink / raw)
  To: dts; +Cc: Chen Linglix

Signed-off-by: Chen Linglix <linglix.chen@intel.com>
---
 tests/TestSuite_userspace_ethtool.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_userspace_ethtool.py b/tests/TestSuite_userspace_ethtool.py
index 213a6283..68dace33 100644
--- a/tests/TestSuite_userspace_ethtool.py
+++ b/tests/TestSuite_userspace_ethtool.py
@@ -585,7 +585,7 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
         mtus = [1519, 2048]
         mtu_threshold = 2022
         offset = 0
-        if self.nic in ['powerville', 'springville']:
+        if self.nic in ['powerville', 'springville', 'foxville']:
             mtu_threshold = 2026
             offset = 4
         # RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN + ICE_VLAN_TAG_SIZE * 2
@@ -605,7 +605,7 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
 
                 # The mtu threshold is 2022,When it is greater than 2022, the open/stop port is required.
                 if mtu > mtu_threshold:
-                    if self.nic in ['powerville', 'springville']:
+                    if self.nic in ['powerville', 'springville', 'foxville']:
                         mtu = mtu_threshold
                     self.dut.send_expect("stop %s" % index, "EthApp>")
                     self.dut.send_expect("mtu %d %d" % (index, mtu), "EthApp>")
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dts] [dts 2/2] tests/TestSuite_inline_ipsec:add support NIC twinpond
  2020-09-30  6:46 [dts] [PATCH V1 0/2] add support NIC Chen Linglix
  2020-09-30  6:46 ` [dts] [dts 1/2] tests/TestSuite_userspace_ethtool:add foxville Chen Linglix
@ 2020-09-30  6:46 ` Chen Linglix
  2020-09-30  6:57 ` [dts] [PATCH V1 0/2] add support NIC Chen, LingliX
  2020-10-13  2:23 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Chen Linglix @ 2020-09-30  6:46 UTC (permalink / raw)
  To: dts; +Cc: Chen Linglix

Signed-off-by: Chen Linglix <linglix.chen@intel.com>
---
 tests/TestSuite_inline_ipsec.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_inline_ipsec.py b/tests/TestSuite_inline_ipsec.py
index 2e6ec7c0..2b599374 100644
--- a/tests/TestSuite_inline_ipsec.py
+++ b/tests/TestSuite_inline_ipsec.py
@@ -58,7 +58,7 @@ class TestInlineIpsec(TestCase):
         """
         Run at the start of each test suite.
         """
-        self.verify(self.nic in ["niantic"], "%s NIC not support" % self.nic)
+        self.verify(self.nic in ["niantic", "twinpond"], "%s NIC not support" % self.nic)
         self.verify(self.drivername in ["vfio-pci"], "%s drivername not support" % self.drivername)
         self.dut_ports = self.dut.get_ports(self.nic)
         self.verify(len(self.dut_ports) >= 2, "Insufficient ports")
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dts] [PATCH V1 0/2] add support NIC
  2020-09-30  6:46 [dts] [PATCH V1 0/2] add support NIC Chen Linglix
  2020-09-30  6:46 ` [dts] [dts 1/2] tests/TestSuite_userspace_ethtool:add foxville Chen Linglix
  2020-09-30  6:46 ` [dts] [dts 2/2] tests/TestSuite_inline_ipsec:add support NIC twinpond Chen Linglix
@ 2020-09-30  6:57 ` Chen, LingliX
  2020-10-13  2:23 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Chen, LingliX @ 2020-09-30  6:57 UTC (permalink / raw)
  To: dts

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

Tested-by:  Chen, LingliX <linglix.chen@intel.com>

Regards,
Chen, LingliX

> -----Original Message-----
> From: Chen, LingliX
> Sent: Wednesday, September 30, 2020 2:47 PM
> To: dts@dpdk.org
> Cc: Chen, LingliX <linglix.chen@intel.com>
> Subject: [dts][PATCH V1 0/2] add support NIC


[-- Attachment #2: TestInlineIpsec.log --]
[-- Type: application/octet-stream, Size: 60077 bytes --]

30/09/2020 00:37:45                            dts: 
TEST SUITE : TestInlineIpsec
30/09/2020 00:37:45                            dts: NIC :        twinpond
30/09/2020 00:37:45             dut.10.240.183.151: 
30/09/2020 00:37:45                         tester: 
30/09/2020 00:37:46             dut.10.240.183.151: sed -i -e 's/if (nb_rx > 0)/if (nb_rx > 0) {/g' -e '/\/\* dequeue and process completed crypto-ops \*\//i\\t\t\t}' -e '/process_pkts(qconf, pkts, nb_rx, portid);/i\\t\t\t\tprintf("[debug]receive %llu packet in rxqueueid=%llu\\n",(unsigned long long)nb_rx, (unsigned long long)queueid);' examples/ipsec-secgw/ipsec-secgw.c
30/09/2020 00:37:46             dut.10.240.183.151: 
30/09/2020 00:37:46             dut.10.240.183.151: meson configure -Dexamples=ipsec-secgw x86_64-native-linuxapp-icc
30/09/2020 00:37:47             dut.10.240.183.151: 
30/09/2020 00:37:47             dut.10.240.183.151: ninja -C x86_64-native-linuxapp-icc
30/09/2020 00:37:55             dut.10.240.183.151: ninja: Entering directory `x86_64-native-linuxapp-icc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.54.3
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-icc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 20.11.0-rc0
C compiler for the host machine: icc (intel 19.1.1.217 "icc (ICC) 19.1.1.217 20200306")
C linker for the host machine: icc ld.bfd 2.30-73
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
Program gen-pmdinfo-cfile.sh found: YES (/root/dpdk/buildtools/gen-pmdinfo-cfile.sh)
Program list-dir-globs.py found: YES (/root/dpdk/buildtools/list-dir-globs.py)
Program check-symbols.sh found: YES (/root/dpdk/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/root/dpdk/buildtools/options-ibverbs-static.sh)
Program binutils-avx512-check.sh found: YES (/root/dpdk/buildtools/binutils-avx512-check.sh)
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES (/usr/bin/cat)
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Dependency pcap found: YES 1.7.3 (cached)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:229: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: NO (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: NO (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: NO (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: NO (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES (cached)
Compiler for C supports arguments -diag-disable=188: YES (cached)
Compiler for C supports arguments -diag-disable=2203: YES (cached)
Compiler for C supports arguments -diag-disable=2279: YES (cached)
Compiler for C supports arguments -diag-disable=2557: YES (cached)
Compiler for C supports arguments -diag-disable=3179: YES (cached)
Compiler for C supports arguments -diag-disable=3656: YES (cached)
Compiler for C supports arguments -mno-avx512f: YES (cached)
../config/x86/meson.build:9: WARNING: Binutils error with AVX512 assembly, disabling AVX512 support
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" :  (cached)
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: NO (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Has header "getopt.h" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.11 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Dependency libelf found: YES 0.178 (cached)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: NO (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "pmd_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "pmd_ark"
Message: drivers/net/atlantic: Defining dependency "pmd_atlantic"
Message: drivers/net/avp: Defining dependency "pmd_avp"
Message: drivers/net/axgbe: Defining dependency "pmd_axgbe"
Message: drivers/net/bonding: Defining dependency "pmd_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "pmd_bnx2x"
Message: drivers/net/bnxt: Defining dependency "pmd_bnxt"
Message: drivers/net/cxgbe: Defining dependency "pmd_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "pmd_dpaa"
Message: drivers/net/dpaa2: Defining dependency "pmd_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: NO (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: NO (cached)
Message: drivers/net/e1000: Defining dependency "pmd_e1000"
Message: drivers/net/ena: Defining dependency "pmd_ena"
Message: drivers/net/enetc: Defining dependency "pmd_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "pmd_enic"
Message: drivers/net/failsafe: Defining dependency "pmd_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: NO (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: NO (cached)
Message: drivers/net/fm10k: Defining dependency "pmd_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: NO (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "pmd_i40e"
Message: drivers/net/hinic: Defining dependency "pmd_hinic"
Message: drivers/net/hns3: Defining dependency "pmd_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/iavf: Defining dependency "pmd_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/ice: Defining dependency "pmd_ice"
Message: drivers/net/igc: Defining dependency "pmd_igc"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "pmd_ixgbe"
Message: drivers/net/kni: Defining dependency "pmd_kni"
Message: drivers/net/liquidio: Defining dependency "pmd_liquidio"
Message: drivers/net/memif: Defining dependency "pmd_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "pmd_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "pmd_nfp"
Message: drivers/net/null: Defining dependency "pmd_null"
Message: drivers/net/octeontx: Defining dependency "pmd_octeontx"
Compiler for C supports arguments -flax-vector-conversions: NO (cached)
Message: drivers/net/octeontx2: Defining dependency "pmd_octeontx2"
Message: drivers/net/pcap: Defining dependency "pmd_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "pmd_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: NO (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: NO (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: NO (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: NO (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: NO (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: NO (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: NO (cached)
Message: drivers/net/qede: Defining dependency "pmd_qede"
Message: drivers/net/ring: Defining dependency "pmd_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: NO (cached)
Compiler for C supports arguments -Wbad-function-cast: NO (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: NO (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/net/sfc: Defining dependency "pmd_sfc"
Message: drivers/net/softnic: Defining dependency "pmd_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "pmd_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: NO (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "pmd_thunderx"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "pmd_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "pmd_vhost"
Message: drivers/net/virtio: Defining dependency "pmd_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: NO (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: NO (cached)
Message: drivers/net/vmxnet3: Defining dependency "pmd_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "rawdev_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "rawdev_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "rawdev_ioat"
Message: drivers/raw/ntb: Defining dependency "rawdev_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "rawdev_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "rawdev_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "rawdev_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/caam_jr: Defining dependency "pmd_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "pmd_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "pmd_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "pmd_nitrox"
Message: drivers/crypto/null: Defining dependency "pmd_null_crypto"
Message: drivers/crypto/octeontx: Defining dependency "pmd_octeontx_crypto"
Message: drivers/crypto/octeontx2: Defining dependency "pmd_octeontx2_crypto"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "pmd_crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "pmd_virtio_crypto"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "pmd_octeontx_compress"
Message: drivers/compress/qat: Defining dependency "pmd_qat"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "pmd_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/vdpa/ifc: Defining dependency "pmd_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dpaa: Defining dependency "pmd_dpaa_event"
Message: drivers/event/dpaa2: Defining dependency "pmd_dpaa2_event"
Message: drivers/event/octeontx2: Defining dependency "pmd_octeontx2_event"
Message: drivers/event/opdl: Defining dependency "pmd_opdl_event"
Message: drivers/event/skeleton: Defining dependency "pmd_skeleton_event"
Message: drivers/event/sw: Defining dependency "pmd_sw_event"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: NO (cached)
Message: drivers/event/dsw: Defining dependency "pmd_dsw_event"
Message: drivers/event/octeontx: Defining dependency "pmd_octeontx_event"
Message: drivers/baseband/null: Defining dependency "pmd_bbdev_null"
Message: drivers/baseband/turbo_sw: Defining dependency "pmd_bbdev_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "pmd_bbdev_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "pmd_bbdev_fpga_5gnr_fec"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: NO (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: NO (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pcap, pfe, qede, ring, sfc, softnic, tap, thunderx, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	caam_jr, dpaa_sec, dpaa2_sec, nitrox, null_crypto, octeontx_crypto, octeontx2_crypto, crypto_scheduler, 
	virtio_crypto, 
compress:
	octeontx_compress, qat, zlib, 
regex:
	
vdpa:
	ifc, 
event:
	dpaa, dpaa2, octeontx2, opdl, skeleton, sw, dsw, octeontx, 
	
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	Missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 946

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_sad.c.o'
[2/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_rt.c.o'
[3/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_flow.c.o'
[4/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_sp4.c.o'
[5/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_parser.c.o'
[6/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_sp6.c.o'
[7/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_esp.c.o'
[8/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_event_helper.c.o'
[9/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_sa.c.o'
[10/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_ipsec_worker.c.o'
[11/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_ipsec_process.c.o'
[12/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_ipsec.c.o'
[13/14] Compiling C object 'examples/c590b3c@@dpdk-ipsec-secgw@exe/ipsec-secgw_ipsec-secgw.c.o'
[14/14] Linking target examples/dpdk-ipsec-secgw
30/09/2020 00:37:55             dut.10.240.183.151: ls x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw  
30/09/2020 00:37:55             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw
30/09/2020 00:37:55             dut.10.240.183.151: scp -v enc.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:37:57             dut.10.240.183.151: scp -v dec.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:37:58             dut.10.240.183.151: scp -v enc_rss.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:38:00             dut.10.240.183.151: scp -v dec_rss.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:38:02             dut.10.240.183.151: scp -v enc_dec.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:38:03             dut.10.240.183.151: scp -v dec_wrong_key.cfg root@10.240.183.151:~/dpdk
30/09/2020 00:38:04                TestInlineIpsec: Test Case test_IPSec_Decryption Begin
30/09/2020 00:38:05             dut.10.240.183.151: 
30/09/2020 00:38:05                         tester: 
30/09/2020 00:38:05             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 --config='(0,0,21),(1,0,21)' -f /root/dpdk/dec.cfg
30/09/2020 00:38:06             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0x800e, tx_offloads=0x2
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

Creating SA context with 1 maximum entries on socket 1
	spi_in(  5):aes-128-gcm mode:IP4Tunnel 172.16.1.5 172.16.2.5 type:inline-crypto-offload 
30/09/2020 00:38:24             dut.10.240.183.151: ^C
30/09/2020 00:38:25             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:38:25                TestInlineIpsec: Test Case test_IPSec_Decryption Result PASSED:
30/09/2020 00:38:25                         tester: killall scapy
30/09/2020 00:38:25                         tester: 
30/09/2020 00:38:25                         tester: killall tcpdump
30/09/2020 00:38:25                         tester: tcpdump: no process found
30/09/2020 00:38:25             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:38:28                TestInlineIpsec: Test Case test_IPSec_Decryption_Jumboframe Begin
30/09/2020 00:38:28             dut.10.240.183.151:  
30/09/2020 00:38:28                         tester:  
30/09/2020 00:38:28             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 -j 9200 --mtu 9000 --config='(0,0,21),(1,0,21)' -f /root/dpdk/dec.cfg
30/09/2020 00:38:30             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
Custom frame buffer size 9200
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0x80e, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0x880e, tx_offloads=0x2
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

Creating SA context with 1 maximum entries on socket 1
	spi_in(  5):aes-128-gcm mode:IP4Tunnel 172.16.1.5 172.16.2.5 type:inline-crypto-offload 
30/09/2020 00:38:48             dut.10.240.183.151: ^C
30/09/2020 00:38:48             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:38:48                TestInlineIpsec: Test Case test_IPSec_Decryption_Jumboframe Result PASSED:
30/09/2020 00:38:48                         tester: killall scapy
30/09/2020 00:38:48                         tester: scapy: no process found
30/09/2020 00:38:48                         tester: killall tcpdump
30/09/2020 00:38:49                         tester: tcpdump: no process found
30/09/2020 00:38:49             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:38:52                TestInlineIpsec: Test Case test_Ipsec_Decryption_Rss Begin
30/09/2020 00:38:52             dut.10.240.183.151:  
30/09/2020 00:38:52                         tester:  
30/09/2020 00:38:52             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 --config='(0,0,20),(0,1,20),(1,0,21),(1,1,21)' -f /root/dpdk/dec_rss.cfg
30/09/2020 00:38:54             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 20 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 12928
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=2 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup rxq=0,0,1
Setup rxq=0,1,1
Setup txq=21,1,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=2 nb_tx_queue=2...
port 1 configurng rx_offloads=0x800e, tx_offloads=0x2
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1
Setup rxq=1,1,1

Creating SA context with 1 maximum entries on socket 1
	spi_in(  3):aes-128-gcm mode:IP4Tunnel 172.16.21.25 172.16.22.25 type:inline-crypto-offload 
30/09/2020 00:39:26             dut.10.240.183.151: : No SA Outbound rule specified
IPSEC: No IPv4 SP Inbound rule specified
IPSEC: No IPv4 SP Outbound rule specified
IPSEC: No IPv6 SP Inbound rule specified
IPSEC: No IPv6 SP Outbound rule specified
Creating IPv4 Routing Table (RT) context with 1024 max routes
LPM: Adding route 192.168.105.10/32 (0)

Checking link status..............................................done
Port 0 Link up at 10 Gbps FDX Autoneg
Port 1 Link up at 10 Gbps FDX Autoneg
IPSEC: Stats display disabled
IPSEC: entering main loop on lcore 20
IPSEC:  -- lcoreid=20 portid=0 rxqueueid=0
IPSEC:  -- lcoreid=20 portid=0 rxqueueid=1
IPSEC: entering main loop on lcore 21
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=0
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=1
[debug]receive 1 packet in rxqueueid=1
[debug]receive 1 packet in rxqueueid=1

30/09/2020 00:39:26             dut.10.240.183.151: ^C
30/09/2020 00:39:27             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:39:27                TestInlineIpsec: Test Case test_Ipsec_Decryption_Rss Result PASSED:
30/09/2020 00:39:27                         tester: killall scapy
30/09/2020 00:39:27                         tester: scapy: no process found
30/09/2020 00:39:27                         tester: killall tcpdump
30/09/2020 00:39:27                         tester: tcpdump: no process found
30/09/2020 00:39:27             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:39:31                TestInlineIpsec: Test Case test_Ipsec_Decryption_wrongkey Begin
30/09/2020 00:39:31             dut.10.240.183.151:  
30/09/2020 00:39:31                         tester:  
30/09/2020 00:39:31             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 --config='(0,0,21),(1,0,21)' -f /root/dpdk/dec_wrong_key.cfg
30/09/2020 00:39:33             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0x800e, tx_offloads=0x2
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

Creating SA context with 1 maximum entries on socket 1
	spi_in(  5):aes-128-gcm mode:IP4Tunnel 172.16.1.5 172.16.2.5 type:inline-crypto-offload 
30/09/2020 00:40:05             dut.10.240.183.151: : No SA Outbound rule specified
IPSEC: No IPv4 SP Inbound rule specified
IPSEC: No IPv4 SP Outbound rule specified
IPSEC: No IPv6 SP Inbound rule specified
IPSEC: No IPv6 SP Outbound rule specified
Creating IPv4 Routing Table (RT) context with 1024 max routes
LPM: Adding route 192.168.105.10/32 (0)

Checking link status...............................................done
Port 0 Link up at 10 Gbps FDX Autoneg
Port 1 Link up at 10 Gbps FDX Autoneg
IPSEC: Stats display disabled
IPSEC: entering main loop on lcore 21
IPSEC:  -- lcoreid=21 portid=0 rxqueueid=0
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=0
[debug]receive 1 packet in rxqueueid=0
IPSEC_ESP: esp_inbound_post() failed crypto op
[debug]receive 1 packet in rxqueueid=0
IPSEC_ESP: esp_inbound_post() failed crypto op

30/09/2020 00:40:05             dut.10.240.183.151: ^C
30/09/2020 00:40:06             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:40:06                TestInlineIpsec: Test Case test_Ipsec_Decryption_wrongkey Result PASSED:
30/09/2020 00:40:06                         tester: killall scapy
30/09/2020 00:40:06                         tester: scapy: no process found
30/09/2020 00:40:06                         tester: killall tcpdump
30/09/2020 00:40:06                         tester: tcpdump: no process found
30/09/2020 00:40:06             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:40:09                TestInlineIpsec: Test Case test_Ipsec_Encryption Begin
30/09/2020 00:40:09             dut.10.240.183.151:  
30/09/2020 00:40:10                         tester:  
30/09/2020 00:40:10             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 --config='(0,0,21),(1,0,21)' -f /root/dpdk/enc.cfg
30/09/2020 00:40:11             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0xe, tx_offloads=0x20002
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

30/09/2020 00:40:35             dut.10.240.183.151: ^C
30/09/2020 00:40:36             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:40:36                TestInlineIpsec: Test Case test_Ipsec_Encryption Result PASSED:
30/09/2020 00:40:36                         tester: killall scapy
30/09/2020 00:40:36                         tester: scapy: no process found
30/09/2020 00:40:36                         tester: killall tcpdump
30/09/2020 00:40:36                         tester: tcpdump: no process found
30/09/2020 00:40:36             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:40:39                TestInlineIpsec: Test Case test_Ipsec_Encryption_Decryption Begin
30/09/2020 00:40:39             dut.10.240.183.151:  
30/09/2020 00:40:39                         tester:  
30/09/2020 00:40:39             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1 -- -p 0xf -P -u 0x2 --config='(0,0,21),(1,0,21)' -f /root/dpdk/enc_dec.cfg
30/09/2020 00:40:41             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0x800e, tx_offloads=0x20002
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

Creating SA context with 1 maximum entries on socket 1
	spi_in(  5):aes-128-gcm mode:IP4Tunnel 172.16.1.5 172.16.2.5 type:inline-crypto-offload 
Creating SA context with 1 maximum entries on socket 1
	spi_out(1005):aes-128-gcm mode:IP4Tunnel 172.16.1.5 172.16.2.5 type:inline-crypto-offload 
30/09/2020 00:40:56                TestInlineIpsec: Test Case test_Ipsec_Encryption_Decryption Result PASSED:
30/09/2020 00:40:56                         tester: killall scapy
30/09/2020 00:40:56                         tester: scapy: no process found
30/09/2020 00:40:56                         tester: killall tcpdump
30/09/2020 00:40:56                         tester: tcpdump: no process found
30/09/2020 00:40:56             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:40:59             dut.10.240.183.151: : No IPv4 SP Inbound rule specified
Creating SP context with 1 rules
IPv4 sp_ip4_out_1 entries [1]:
	1:0.0.0.0/0 192.168.105.0/24 0 : 65535 0 : 65535 0x0/0x0 0x1-0x1-0x1 
acl context <sp_ip4_out_1>@0x11fd9da900
  socket_id=1
  alg=3
  max_rules=1
  rule_size=96
  num_rules=1
  num_categories=1
  num_tries=1
IPSEC: No IPv6 SP Inbound rule specified
IPSEC: No IPv6 SP Outbound rule specified
Creating IPv4 Routing Table (RT) context with 1024 max routes
LPM: Adding route 172.16.2.5/32 (1)
LPM: Adding route 192.168.105.10/32 (0)

Checking link status..............................................done
Port 0 Link up at 10 Gbps FDX Autoneg
Port 1 Link up at 10 Gbps FDX Autoneg
IPSEC: Stats display disabled
IPSEC: entering main loop on lcore 21
IPSEC:  -- lcoreid=21 portid=0 rxqueueid=0
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=0
[debug]receive 1 packet in rxqueueid=0
[debug]receive 1 packet in rxqueueid=0
[debug]receive 1 packet in rxqueueid=0
Killed
[PEXPECT]# 
30/09/2020 00:41:02                TestInlineIpsec: Test Case test_Ipsec_Encryption_Jumboframe Begin
30/09/2020 00:41:02             dut.10.240.183.151: 
30/09/2020 00:41:02                         tester:  
30/09/2020 00:41:02             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 -j 9200 --mtu 9000 --config='(0,0,21),(1,0,21)' -f /root/dpdk/enc.cfg
30/09/2020 00:41:04             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
Custom frame buffer size 9200
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 21 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 10880
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 0 configurng rx_offloads=0x80e, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=0,0,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=1 nb_tx_queue=2...
port 1 configurng rx_offloads=0x80e, tx_offloads=0x20002
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1

30/09/2020 00:41:27             dut.10.240.183.151: ^C
30/09/2020 00:41:28             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:41:28                TestInlineIpsec: Test Case test_Ipsec_Encryption_Jumboframe Result PASSED:
30/09/2020 00:41:28                         tester: killall scapy
30/09/2020 00:41:28                         tester: scapy: no process found
30/09/2020 00:41:28                         tester: killall tcpdump
30/09/2020 00:41:28                         tester: tcpdump: no process found
30/09/2020 00:41:28             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:41:31                TestInlineIpsec: Test Case test_Ipsec_Encryption_Rss Begin
30/09/2020 00:41:31             dut.10.240.183.151:  
30/09/2020 00:41:31                         tester:  
30/09/2020 00:41:31             dut.10.240.183.151: x86_64-native-linuxapp-icc/examples/dpdk-ipsec-secgw   -l 20,21 -w 0000:83:00.0 -w 0000:83:00.1 --vdev 'crypto_null' --log-level 8 --socket-mem 1024,1024 -- -p 0xf -P -u 0x2 --config='(0,0,20),(0,1,20),(1,0,21),(1,1,21)' -f /root/dpdk/enc_rss.cfg
30/09/2020 00:41:33             dut.10.240.183.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:1528) device: 0000:83:00.1 (socket 1)
CRYPTODEV: Creating cryptodev crypto_null

CRYPTODEV: Initialisation parameters - name: crypto_null,socket id: 1, max queue pairs: 8
Promiscuous mode selected
librte_ipsec usage: disabled
replay window size: 0
ESN: disabled
SA flags: 0
Frag TTL: 10000000000 ns
lcore/cryptodev/qp mappings:
Outbound cdev mapping: lcore 20 using cdev 0 qp 0 (cdev_id_qp 0)
Inbound cdev mapping: lcore 21 using cdev 0 qp 1 (cdev_id_qp 0)

Allocated mbuf pool on socket 1
CRYPTODEV: elt_size 128 is expanded to 160

Allocated session pool on socket 1
Allocated session priv pool on socket 1
Number of mbufs in packet pool 12928
Configuring device port 0:
Address: B4:96:91:46:E1:20
Creating queues: nb_rx_queue=2 nb_tx_queue=2...
port 0 configurng rx_offloads=0xe, tx_offloads=0x2
Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup rxq=0,0,1
Setup rxq=0,1,1
Setup txq=21,1,1

Configuring device port 1:
Address: B4:96:91:46:E1:22
Creating queues: nb_rx_queue=2 nb_tx_queue=2...
port 1 configurng rx_offloads=0xe, tx_offloads=0x20002
Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x38d34
Setup txq=20,0,1
Setup txq=21,1,1
Setup rxq=1,0,1
Setup rxq=1,1,1

30/09/2020 00:42:11             dut.10.240.183.151: : No SA Inbound rule specified
Creating SA context with 1 maximum entries on socket 1
	spi_out(1002):aes-128-gcm mode:IP4Tunnel 172.16.31.35 172.16.32.35 type:inline-crypto-offload 
IPSEC: No IPv4 SP Inbound rule specified
Creating SP context with 1 rules
IPv4 sp_ip4_out_1 entries [1]:
	1:0.0.0.0/0 192.168.102.0/24 0 : 65535 0 : 65535 0x0/0x0 0x1-0x1-0x1 
acl context <sp_ip4_out_1>@0x11fd4d3d40
  socket_id=1
  alg=3
  max_rules=1
  rule_size=96
  num_rules=1
  num_categories=1
  num_tries=1
IPSEC: No IPv6 SP Inbound rule specified
IPSEC: No IPv6 SP Outbound rule specified
Creating IPv4 Routing Table (RT) context with 1024 max routes
LPM: Adding route 172.16.32.35/32 (1)

Checking link status...............................................done
Port 0 Link up at 10 Gbps FDX Autoneg
Port 1 Link up at 10 Gbps FDX Autoneg
IPSEC: Stats display disabled
IPSEC: entering main loop on lcore 20
IPSEC:  -- lcoreid=20 portid=0 rxqueueid=0
IPSEC:  -- lcoreid=20 portid=0 rxqueueid=1
IPSEC: entering main loop on lcore 21
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=0
IPSEC:  -- lcoreid=21 portid=1 rxqueueid=1
[debug]receive 1 packet in rxqueueid=1

30/09/2020 00:42:11             dut.10.240.183.151: ^C
30/09/2020 00:42:12             dut.10.240.183.151: 

Signal 2 received, preparing to exit...
Closing cryptodev 0... Done
Closing port 0... Done
Closing port 1... Done
Bye...
30/09/2020 00:42:12                TestInlineIpsec: Test Case test_Ipsec_Encryption_Rss Result PASSED:
30/09/2020 00:42:12                         tester: killall scapy
30/09/2020 00:42:12                         tester: scapy: no process found
30/09/2020 00:42:12                         tester: killall tcpdump
30/09/2020 00:42:12                         tester: tcpdump: no process found
30/09/2020 00:42:12             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2020 00:42:16                            dts: 
TEST SUITE ENDED: TestInlineIpsec

[-- Attachment #3: TestUserspaceEthtool.log --]
[-- Type: application/octet-stream, Size: 103507 bytes --]

27/09/2020 23:08:48                            dts: 
TEST SUITE : TestUserspaceEthtool
27/09/2020 23:08:48                            dts: NIC :        foxville
27/09/2020 23:08:48             dut.10.240.183.171: 
27/09/2020 23:08:48                         tester: 
27/09/2020 23:08:48             dut.10.240.183.171: meson configure -Dexamples=ethtool x86_64-native-linuxapp-gcc
27/09/2020 23:08:49             dut.10.240.183.171: 
27/09/2020 23:08:49             dut.10.240.183.171: ninja -C x86_64-native-linuxapp-gcc
27/09/2020 23:08:57             dut.10.240.183.171: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc0
C compiler for the host machine: gcc (gcc 8.3.1 "gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.30-73
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Dependency pcap found: YES 1.7.3 (cached)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:229: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: YES (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: NO (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES (cached)
Compiler for C supports arguments -mno-avx512f: YES (cached)
../config/x86/meson.build:9: WARNING: Binutils error with AVX512 assembly, disabling AVX512 support
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" : 1 (cached)
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Has header "getopt.h" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Dependency libelf found: YES 0.178 (cached)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "pmd_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "pmd_ark"
Message: drivers/net/atlantic: Defining dependency "pmd_atlantic"
Message: drivers/net/avp: Defining dependency "pmd_avp"
Message: drivers/net/axgbe: Defining dependency "pmd_axgbe"
Message: drivers/net/bonding: Defining dependency "pmd_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "pmd_bnx2x"
Message: drivers/net/bnxt: Defining dependency "pmd_bnxt"
Message: drivers/net/cxgbe: Defining dependency "pmd_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "pmd_dpaa"
Message: drivers/net/dpaa2: Defining dependency "pmd_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/e1000: Defining dependency "pmd_e1000"
Message: drivers/net/ena: Defining dependency "pmd_ena"
Message: drivers/net/enetc: Defining dependency "pmd_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "pmd_enic"
Message: drivers/net/failsafe: Defining dependency "pmd_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "pmd_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "pmd_i40e"
Message: drivers/net/hinic: Defining dependency "pmd_hinic"
Message: drivers/net/hns3: Defining dependency "pmd_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/iavf: Defining dependency "pmd_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/ice: Defining dependency "pmd_ice"
Message: drivers/net/igc: Defining dependency "pmd_igc"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "pmd_ixgbe"
Message: drivers/net/kni: Defining dependency "pmd_kni"
Message: drivers/net/liquidio: Defining dependency "pmd_liquidio"
Message: drivers/net/memif: Defining dependency "pmd_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "pmd_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "pmd_nfp"
Message: drivers/net/null: Defining dependency "pmd_null"
Message: drivers/net/octeontx: Defining dependency "pmd_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Message: drivers/net/octeontx2: Defining dependency "pmd_octeontx2"
Message: drivers/net/pcap: Defining dependency "pmd_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "pmd_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "pmd_qede"
Message: drivers/net/ring: Defining dependency "pmd_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/net/sfc: Defining dependency "pmd_sfc"
Message: drivers/net/softnic: Defining dependency "pmd_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "pmd_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "pmd_thunderx"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "pmd_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "pmd_vhost"
Message: drivers/net/virtio: Defining dependency "pmd_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "pmd_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "rawdev_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "rawdev_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "rawdev_ioat"
Message: drivers/raw/ntb: Defining dependency "rawdev_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "rawdev_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "rawdev_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "rawdev_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/caam_jr: Defining dependency "pmd_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "pmd_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "pmd_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "pmd_nitrox"
Message: drivers/crypto/null: Defining dependency "pmd_null_crypto"
Message: drivers/crypto/octeontx: Defining dependency "pmd_octeontx_crypto"
Message: drivers/crypto/octeontx2: Defining dependency "pmd_octeontx2_crypto"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "pmd_crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "pmd_virtio_crypto"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "pmd_octeontx_compress"
Message: drivers/compress/qat: Defining dependency "pmd_qat"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "pmd_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/vdpa/ifc: Defining dependency "pmd_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dpaa: Defining dependency "pmd_dpaa_event"
Message: drivers/event/dpaa2: Defining dependency "pmd_dpaa2_event"
Message: drivers/event/octeontx2: Defining dependency "pmd_octeontx2_event"
Message: drivers/event/opdl: Defining dependency "pmd_opdl_event"
Message: drivers/event/skeleton: Defining dependency "pmd_skeleton_event"
Message: drivers/event/sw: Defining dependency "pmd_sw_event"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "pmd_dsw_event"
Message: drivers/event/octeontx: Defining dependency "pmd_octeontx_event"
Message: drivers/baseband/null: Defining dependency "pmd_bbdev_null"
Message: drivers/baseband/turbo_sw: Defining dependency "pmd_bbdev_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "pmd_bbdev_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "pmd_bbdev_fpga_5gnr_fec"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pcap, pfe, qede, ring, sfc, softnic, tap, thunderx, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	caam_jr, dpaa_sec, dpaa2_sec, nitrox, null_crypto, octeontx_crypto, octeontx2_crypto, crypto_scheduler, 
	virtio_crypto, 
compress:
	octeontx_compress, qat, zlib, 
regex:
	
vdpa:
	ifc, 
event:
	dpaa, dpaa2, octeontx2, opdl, skeleton, sw, dsw, octeontx, 
	
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	Missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 946

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/4] Compiling C object examples/dpdk-ethtool.p/ethtool_ethtool-app_main.c.o
[2/4] Compiling C object examples/dpdk-ethtool.p/ethtool_lib_rte_ethtool.c.o
[3/4] Compiling C object examples/dpdk-ethtool.p/ethtool_ethtool-app_ethapp.c.o
[4/4] Linking target examples/dpdk-ethtool
27/09/2020 23:08:57             dut.10.240.183.171: ls x86_64-native-linuxapp-gcc/examples/dpdk-ethtool  
27/09/2020 23:08:57             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool
27/09/2020 23:08:57             dut.10.240.183.171: cat /sys/bus/pci/devices/0000:81:00.0/numa_node 
27/09/2020 23:08:57             dut.10.240.183.171: 1
27/09/2020 23:08:57             dut.10.240.183.171: lscpu |grep "NUMA node1 CPU(s):"
27/09/2020 23:08:57             dut.10.240.183.171: NUMA node1 CPU(s):   22-43,66-87
27/09/2020 23:08:57           TestUserspaceEthtool: Test Case test_dump_driver_info Result SKIPPED:
27/09/2020 23:08:57           TestUserspaceEthtool: Test Case test_ethtool_vlan Begin
27/09/2020 23:08:57             dut.10.240.183.171: 
27/09/2020 23:08:57                         tester: 
27/09/2020 23:08:57             dut.10.240.183.171: sed -i -e '/cfg_port.txmode.mq_mode = ETH_MQ_TX_NONE;$/a\cfg_port.rxmode.offloads|=DEV_RX_OFFLOAD_VLAN_FILTER;' examples/ethtool/ethtool-app/main.c
27/09/2020 23:08:57             dut.10.240.183.171: 
27/09/2020 23:08:57             dut.10.240.183.171: meson configure -Dexamples=ethtool x86_64-native-linuxapp-gcc
27/09/2020 23:08:58             dut.10.240.183.171: 
27/09/2020 23:08:58             dut.10.240.183.171: ninja -C x86_64-native-linuxapp-gcc
27/09/2020 23:09:06             dut.10.240.183.171: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc0
C compiler for the host machine: gcc (gcc 8.3.1 "gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.30-73
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Dependency pcap found: YES 1.7.3 (cached)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:229: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: YES (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: NO (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES (cached)
Compiler for C supports arguments -mno-avx512f: YES (cached)
../config/x86/meson.build:9: WARNING: Binutils error with AVX512 assembly, disabling AVX512 support
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" : 1 (cached)
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Has header "getopt.h" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Dependency libelf found: YES 0.178 (cached)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "pmd_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "pmd_ark"
Message: drivers/net/atlantic: Defining dependency "pmd_atlantic"
Message: drivers/net/avp: Defining dependency "pmd_avp"
Message: drivers/net/axgbe: Defining dependency "pmd_axgbe"
Message: drivers/net/bonding: Defining dependency "pmd_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "pmd_bnx2x"
Message: drivers/net/bnxt: Defining dependency "pmd_bnxt"
Message: drivers/net/cxgbe: Defining dependency "pmd_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "pmd_dpaa"
Message: drivers/net/dpaa2: Defining dependency "pmd_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/e1000: Defining dependency "pmd_e1000"
Message: drivers/net/ena: Defining dependency "pmd_ena"
Message: drivers/net/enetc: Defining dependency "pmd_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "pmd_enic"
Message: drivers/net/failsafe: Defining dependency "pmd_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "pmd_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "pmd_i40e"
Message: drivers/net/hinic: Defining dependency "pmd_hinic"
Message: drivers/net/hns3: Defining dependency "pmd_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/iavf: Defining dependency "pmd_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/ice: Defining dependency "pmd_ice"
Message: drivers/net/igc: Defining dependency "pmd_igc"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "pmd_ixgbe"
Message: drivers/net/kni: Defining dependency "pmd_kni"
Message: drivers/net/liquidio: Defining dependency "pmd_liquidio"
Message: drivers/net/memif: Defining dependency "pmd_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "pmd_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "pmd_nfp"
Message: drivers/net/null: Defining dependency "pmd_null"
Message: drivers/net/octeontx: Defining dependency "pmd_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Message: drivers/net/octeontx2: Defining dependency "pmd_octeontx2"
Message: drivers/net/pcap: Defining dependency "pmd_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "pmd_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "pmd_qede"
Message: drivers/net/ring: Defining dependency "pmd_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/net/sfc: Defining dependency "pmd_sfc"
Message: drivers/net/softnic: Defining dependency "pmd_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "pmd_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "pmd_thunderx"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "pmd_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "pmd_vhost"
Message: drivers/net/virtio: Defining dependency "pmd_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "pmd_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "rawdev_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "rawdev_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "rawdev_ioat"
Message: drivers/raw/ntb: Defining dependency "rawdev_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "rawdev_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "rawdev_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "rawdev_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/caam_jr: Defining dependency "pmd_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "pmd_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "pmd_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "pmd_nitrox"
Message: drivers/crypto/null: Defining dependency "pmd_null_crypto"
Message: drivers/crypto/octeontx: Defining dependency "pmd_octeontx_crypto"
Message: drivers/crypto/octeontx2: Defining dependency "pmd_octeontx2_crypto"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "pmd_crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "pmd_virtio_crypto"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "pmd_octeontx_compress"
Message: drivers/compress/qat: Defining dependency "pmd_qat"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "pmd_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/vdpa/ifc: Defining dependency "pmd_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dpaa: Defining dependency "pmd_dpaa_event"
Message: drivers/event/dpaa2: Defining dependency "pmd_dpaa2_event"
Message: drivers/event/octeontx2: Defining dependency "pmd_octeontx2_event"
Message: drivers/event/opdl: Defining dependency "pmd_opdl_event"
Message: drivers/event/skeleton: Defining dependency "pmd_skeleton_event"
Message: drivers/event/sw: Defining dependency "pmd_sw_event"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "pmd_dsw_event"
Message: drivers/event/octeontx: Defining dependency "pmd_octeontx_event"
Message: drivers/baseband/null: Defining dependency "pmd_bbdev_null"
Message: drivers/baseband/turbo_sw: Defining dependency "pmd_bbdev_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "pmd_bbdev_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "pmd_bbdev_fpga_5gnr_fec"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pcap, pfe, qede, ring, sfc, softnic, tap, thunderx, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	caam_jr, dpaa_sec, dpaa2_sec, nitrox, null_crypto, octeontx_crypto, octeontx2_crypto, crypto_scheduler, 
	virtio_crypto, 
compress:
	octeontx_compress, qat, zlib, 
regex:
	
vdpa:
	ifc, 
event:
	dpaa, dpaa2, octeontx2, opdl, skeleton, sw, dsw, octeontx, 
	
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	Missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 946

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-ethtool.p/ethtool_ethtool-app_main.c.o
[2/2] Linking target examples/dpdk-ethtool
27/09/2020 23:09:06             dut.10.240.183.171: ls x86_64-native-linuxapp-gcc/examples/dpdk-ethtool  
27/09/2020 23:09:06             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool
27/09/2020 23:09:06             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:09:07             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:09:07             dut.10.240.183.171: vlan 0 add 38
27/09/2020 23:09:07             dut.10.240.183.171: 
VLAN vid 38 added
27/09/2020 23:09:10             dut.10.240.183.171: portstats 0 
27/09/2020 23:09:10             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:09:10             dut.10.240.183.171: link
27/09/2020 23:09:14             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:09:22             dut.10.240.183.171: portstats 0 
27/09/2020 23:09:22             dut.10.240.183.171: 
Port 0 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:24             dut.10.240.183.171: portstats 0 
27/09/2020 23:09:24             dut.10.240.183.171: 
Port 0 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:24             dut.10.240.183.171: vlan 0 del 38
27/09/2020 23:09:24             dut.10.240.183.171: 
VLAN vid 38 removed
27/09/2020 23:09:26             dut.10.240.183.171: portstats 0 
27/09/2020 23:09:26             dut.10.240.183.171: 
Port 0 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:26             dut.10.240.183.171: vlan 1 add 1183
27/09/2020 23:09:26             dut.10.240.183.171: 
VLAN vid 1183 added
27/09/2020 23:09:29             dut.10.240.183.171: portstats 1 
27/09/2020 23:09:29             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:09:29             dut.10.240.183.171: link
27/09/2020 23:09:29             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:09:38             dut.10.240.183.171: portstats 1 
27/09/2020 23:09:38             dut.10.240.183.171: 
Port 1 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:40             dut.10.240.183.171: portstats 1 
27/09/2020 23:09:40             dut.10.240.183.171: 
Port 1 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:40             dut.10.240.183.171: vlan 1 del 1183
27/09/2020 23:09:40             dut.10.240.183.171: 
VLAN vid 1183 removed
27/09/2020 23:09:42             dut.10.240.183.171: portstats 1 
27/09/2020 23:09:42             dut.10.240.183.171: 
Port 1 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:09:42             dut.10.240.183.171: quit
27/09/2020 23:09:42             dut.10.240.183.171: 
27/09/2020 23:09:42             dut.10.240.183.171: sed -i -e '/cfg_port.rxmode.offloads|=DEV_RX_OFFLOAD_VLAN_FILTER;$/d' examples/ethtool/ethtool-app/main.c
27/09/2020 23:09:42             dut.10.240.183.171: 
27/09/2020 23:09:42             dut.10.240.183.171: meson configure -Dexamples=ethtool x86_64-native-linuxapp-gcc
27/09/2020 23:09:43             dut.10.240.183.171: 
27/09/2020 23:09:43             dut.10.240.183.171: ninja -C x86_64-native-linuxapp-gcc
27/09/2020 23:09:51             dut.10.240.183.171: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc0
C compiler for the host machine: gcc (gcc 8.3.1 "gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.30-73
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Dependency pcap found: YES 1.7.3 (cached)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:229: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: YES (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: NO (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES (cached)
Compiler for C supports arguments -mno-avx512f: YES (cached)
../config/x86/meson.build:9: WARNING: Binutils error with AVX512 assembly, disabling AVX512 support
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" : 1 (cached)
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Has header "getopt.h" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Dependency libelf found: YES 0.178 (cached)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "pmd_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "pmd_ark"
Message: drivers/net/atlantic: Defining dependency "pmd_atlantic"
Message: drivers/net/avp: Defining dependency "pmd_avp"
Message: drivers/net/axgbe: Defining dependency "pmd_axgbe"
Message: drivers/net/bonding: Defining dependency "pmd_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "pmd_bnx2x"
Message: drivers/net/bnxt: Defining dependency "pmd_bnxt"
Message: drivers/net/cxgbe: Defining dependency "pmd_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "pmd_dpaa"
Message: drivers/net/dpaa2: Defining dependency "pmd_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/e1000: Defining dependency "pmd_e1000"
Message: drivers/net/ena: Defining dependency "pmd_ena"
Message: drivers/net/enetc: Defining dependency "pmd_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "pmd_enic"
Message: drivers/net/failsafe: Defining dependency "pmd_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "pmd_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "pmd_i40e"
Message: drivers/net/hinic: Defining dependency "pmd_hinic"
Message: drivers/net/hns3: Defining dependency "pmd_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/iavf: Defining dependency "pmd_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/ice: Defining dependency "pmd_ice"
Message: drivers/net/igc: Defining dependency "pmd_igc"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "pmd_ixgbe"
Message: drivers/net/kni: Defining dependency "pmd_kni"
Message: drivers/net/liquidio: Defining dependency "pmd_liquidio"
Message: drivers/net/memif: Defining dependency "pmd_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "pmd_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "pmd_nfp"
Message: drivers/net/null: Defining dependency "pmd_null"
Message: drivers/net/octeontx: Defining dependency "pmd_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Message: drivers/net/octeontx2: Defining dependency "pmd_octeontx2"
Message: drivers/net/pcap: Defining dependency "pmd_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "pmd_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "pmd_qede"
Message: drivers/net/ring: Defining dependency "pmd_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/net/sfc: Defining dependency "pmd_sfc"
Message: drivers/net/softnic: Defining dependency "pmd_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "pmd_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "pmd_thunderx"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "pmd_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "pmd_vhost"
Message: drivers/net/virtio: Defining dependency "pmd_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "pmd_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "rawdev_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "rawdev_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "rawdev_ioat"
Message: drivers/raw/ntb: Defining dependency "rawdev_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "rawdev_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "rawdev_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "rawdev_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/caam_jr: Defining dependency "pmd_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "pmd_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "pmd_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "pmd_nitrox"
Message: drivers/crypto/null: Defining dependency "pmd_null_crypto"
Message: drivers/crypto/octeontx: Defining dependency "pmd_octeontx_crypto"
Message: drivers/crypto/octeontx2: Defining dependency "pmd_octeontx2_crypto"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "pmd_crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "pmd_virtio_crypto"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "pmd_octeontx_compress"
Message: drivers/compress/qat: Defining dependency "pmd_qat"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "pmd_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/vdpa/ifc: Defining dependency "pmd_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dpaa: Defining dependency "pmd_dpaa_event"
Message: drivers/event/dpaa2: Defining dependency "pmd_dpaa2_event"
Message: drivers/event/octeontx2: Defining dependency "pmd_octeontx2_event"
Message: drivers/event/opdl: Defining dependency "pmd_opdl_event"
Message: drivers/event/skeleton: Defining dependency "pmd_skeleton_event"
Message: drivers/event/sw: Defining dependency "pmd_sw_event"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "pmd_dsw_event"
Message: drivers/event/octeontx: Defining dependency "pmd_octeontx_event"
Message: drivers/baseband/null: Defining dependency "pmd_bbdev_null"
Message: drivers/baseband/turbo_sw: Defining dependency "pmd_bbdev_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "pmd_bbdev_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "pmd_bbdev_fpga_5gnr_fec"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pcap, pfe, qede, ring, sfc, softnic, tap, thunderx, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	caam_jr, dpaa_sec, dpaa2_sec, nitrox, null_crypto, octeontx_crypto, octeontx2_crypto, crypto_scheduler, 
	virtio_crypto, 
compress:
	octeontx_compress, qat, zlib, 
regex:
	
vdpa:
	ifc, 
event:
	dpaa, dpaa2, octeontx2, opdl, skeleton, sw, dsw, octeontx, 
	
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	Missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 946

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-ethtool.p/ethtool_ethtool-app_main.c.o
[2/2] Linking target examples/dpdk-ethtool
27/09/2020 23:09:51             dut.10.240.183.171: ls x86_64-native-linuxapp-gcc/examples/dpdk-ethtool  
27/09/2020 23:09:51             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool
27/09/2020 23:09:51           TestUserspaceEthtool: Test Case test_ethtool_vlan Result PASSED:
27/09/2020 23:09:51             dut.10.240.183.171: kill_all: called by dut and has no prefix list.
27/09/2020 23:09:53           TestUserspaceEthtool: Test Case test_mac_address Begin
27/09/2020 23:09:53             dut.10.240.183.171: 
27/09/2020 23:09:53                         tester: 
27/09/2020 23:09:53             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:09:54             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:09:54             dut.10.240.183.171: macaddr 0
27/09/2020 23:09:54             dut.10.240.183.171: 
Port 0 MAC Address: 00:a0:c9:00:00:00
27/09/2020 23:09:54             dut.10.240.183.171: macaddr 0 00:10:00:00:00:00
27/09/2020 23:09:54             dut.10.240.183.171: 
MAC address changed
27/09/2020 23:09:54             dut.10.240.183.171: macaddr 0
27/09/2020 23:09:54             dut.10.240.183.171: 
Port 0 MAC Address: 00:10:00:00:00:00
27/09/2020 23:09:54             dut.10.240.183.171: link
27/09/2020 23:09:57             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:09:57                         tester: ls -d /tmp/tester/
27/09/2020 23:09:57                         tester: /tmp/tester/
27/09/2020 23:09:57                         tester: rm -rf /tmp/tester/sniff_eno4.pcap
27/09/2020 23:09:57                         tester: 
27/09/2020 23:10:09             dut.10.240.183.171: macaddr 1
27/09/2020 23:10:09             dut.10.240.183.171: 
Port 1 MAC Address: 00:a0:c9:00:00:00
27/09/2020 23:10:09             dut.10.240.183.171: macaddr 1 00:10:00:00:00:00
27/09/2020 23:10:09             dut.10.240.183.171: 
MAC address changed
27/09/2020 23:10:09             dut.10.240.183.171: macaddr 1
27/09/2020 23:10:09             dut.10.240.183.171: 
Port 1 MAC Address: 00:10:00:00:00:00
27/09/2020 23:10:09             dut.10.240.183.171: link
27/09/2020 23:10:09             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:10:09                         tester: ls -d /tmp/tester/
27/09/2020 23:10:09                         tester: /tmp/tester/
27/09/2020 23:10:09                         tester: rm -rf /tmp/tester/sniff_eno3.pcap
27/09/2020 23:10:09                         tester: 
27/09/2020 23:10:26             dut.10.240.183.171: validate 01:00:00:00:00:00
27/09/2020 23:10:26             dut.10.240.183.171: 
Address is not unicast
27/09/2020 23:10:26             dut.10.240.183.171: validate 00:00:00:00:00:00
27/09/2020 23:10:26             dut.10.240.183.171: 
Address is not unicast
27/09/2020 23:10:26             dut.10.240.183.171: validate 00:10:00:00:00:00
27/09/2020 23:10:26             dut.10.240.183.171: 
Address is unicast
27/09/2020 23:10:26             dut.10.240.183.171: quit
27/09/2020 23:10:26             dut.10.240.183.171: 
27/09/2020 23:10:26           TestUserspaceEthtool: Test Case test_mac_address Result PASSED:
27/09/2020 23:10:26             dut.10.240.183.171: kill_all: called by dut and has no prefix list.
27/09/2020 23:10:28           TestUserspaceEthtool: Test Case test_port_config Begin
27/09/2020 23:10:28             dut.10.240.183.171: 
27/09/2020 23:10:28                         tester: 
27/09/2020 23:10:28             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:10:29             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:10:29             dut.10.240.183.171: portstats 0 
27/09/2020 23:10:29             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:10:34             dut.10.240.183.171: stop 0
27/09/2020 23:10:34             dut.10.240.183.171: 
27/09/2020 23:10:34             dut.10.240.183.171: link
27/09/2020 23:10:43             dut.10.240.183.171: 
Port 0: Down
Port 1: Up

27/09/2020 23:10:46             dut.10.240.183.171: portstats 0 
27/09/2020 23:10:46             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:10:46             dut.10.240.183.171: open 0
27/09/2020 23:10:46             dut.10.240.183.171: 
Device with port_id=0 already stopped
27/09/2020 23:10:46             dut.10.240.183.171: link
27/09/2020 23:10:50             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:10:53             dut.10.240.183.171: portstats 0 
27/09/2020 23:10:53             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:10:58             dut.10.240.183.171: portstats 0 
27/09/2020 23:10:58             dut.10.240.183.171: 
Port 0 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:10:58             dut.10.240.183.171: portstats 1 
27/09/2020 23:10:58             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:11:03             dut.10.240.183.171: stop 1
27/09/2020 23:11:03             dut.10.240.183.171: 
27/09/2020 23:11:03             dut.10.240.183.171: link
27/09/2020 23:11:12             dut.10.240.183.171: 
Port 0: Up
Port 1: Down

27/09/2020 23:11:15             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:15             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:11:15             dut.10.240.183.171: open 1
27/09/2020 23:11:15             dut.10.240.183.171: 
Device with port_id=1 already stopped
27/09/2020 23:11:15             dut.10.240.183.171: link
27/09/2020 23:11:19             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:11:22             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:22             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:11:27             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:27             dut.10.240.183.171: 
Port 1 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:11:27             dut.10.240.183.171: quit
27/09/2020 23:11:27             dut.10.240.183.171: 
27/09/2020 23:11:27           TestUserspaceEthtool: Test Case test_port_config Result PASSED:
27/09/2020 23:11:27             dut.10.240.183.171: kill_all: called by dut and has no prefix list.
27/09/2020 23:11:29           TestUserspaceEthtool: Test Case test_port_mtu Begin
27/09/2020 23:11:29             dut.10.240.183.171: 
27/09/2020 23:11:29                         tester: 
27/09/2020 23:11:29             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:11:30             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:11:30                         tester: ip link show eno4
27/09/2020 23:11:30                         tester: 9: eno4: <NO-CARRIER,BROADCAST,MULTICAST,PROMISC,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether 0c:c4:7a:c7:67:63 brd ff:ff:ff:ff:ff:ff
27/09/2020 23:11:30                         tester: ifconfig eno4 mtu 9000
27/09/2020 23:11:31                         tester: 
27/09/2020 23:11:31             dut.10.240.183.171: mtu 0 1519
27/09/2020 23:11:31             dut.10.240.183.171: 
Port 0: MTU set to 1519
27/09/2020 23:11:36             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:37             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:11:37             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:37             dut.10.240.183.171: 
Port 0 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 0
27/09/2020 23:11:37             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:37             dut.10.240.183.171: 
Port 0 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 8
27/09/2020 23:11:37             dut.10.240.183.171: stop 0
27/09/2020 23:11:37             dut.10.240.183.171: 
27/09/2020 23:11:37             dut.10.240.183.171: mtu 0 2026
27/09/2020 23:11:37             dut.10.240.183.171: 
Port 0: MTU set to 2026
27/09/2020 23:11:37             dut.10.240.183.171: open 0
27/09/2020 23:11:37             dut.10.240.183.171: 
Device with port_id=0 already stopped
27/09/2020 23:11:37             dut.10.240.183.171: mtu 0 2026
27/09/2020 23:11:37             dut.10.240.183.171: 
Port 0: MTU set to 2026
27/09/2020 23:11:42             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:42             dut.10.240.183.171: 
Port 0 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 8
27/09/2020 23:11:42             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:42             dut.10.240.183.171: 
Port 0 stats
   In: 8 (14324 bytes)
  Out: 8 (14324 bytes)
  Err: 8
27/09/2020 23:11:43             dut.10.240.183.171: portstats 0 
27/09/2020 23:11:43             dut.10.240.183.171: 
Port 0 stats
   In: 8 (14324 bytes)
  Out: 8 (14324 bytes)
  Err: 16
27/09/2020 23:11:43                         tester: ifconfig eno4 mtu 1500
27/09/2020 23:11:44                         tester: 
27/09/2020 23:11:44                         tester: ip link show eno3
27/09/2020 23:11:44                         tester: 8: eno3: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1518 qdisc mq state UP mode DEFAULT group default qlen 1000
    link/ether 0c:c4:7a:c7:67:62 brd ff:ff:ff:ff:ff:ff
27/09/2020 23:11:44                         tester: ifconfig eno3 mtu 9000
27/09/2020 23:11:45                         tester: 
27/09/2020 23:11:45             dut.10.240.183.171: mtu 1 1519
27/09/2020 23:11:45             dut.10.240.183.171: 
Port 1: MTU set to 1519
27/09/2020 23:11:51             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:51             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:11:51             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:51             dut.10.240.183.171: 
Port 1 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 0
27/09/2020 23:11:51             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:51             dut.10.240.183.171: 
Port 1 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 8
27/09/2020 23:11:51             dut.10.240.183.171: stop 1
27/09/2020 23:11:51             dut.10.240.183.171: 
27/09/2020 23:11:51             dut.10.240.183.171: mtu 1 2026
27/09/2020 23:11:51             dut.10.240.183.171: 
Port 1: MTU set to 2026
27/09/2020 23:11:51             dut.10.240.183.171: open 1
27/09/2020 23:11:51             dut.10.240.183.171: 
Device with port_id=1 already stopped
27/09/2020 23:11:51             dut.10.240.183.171: mtu 1 2026
27/09/2020 23:11:51             dut.10.240.183.171: 
Port 1: MTU set to 2026
27/09/2020 23:11:56             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:56             dut.10.240.183.171: 
Port 1 stats
   In: 4 (6148 bytes)
  Out: 4 (6148 bytes)
  Err: 8
27/09/2020 23:11:56             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:57             dut.10.240.183.171: 
Port 1 stats
   In: 8 (14324 bytes)
  Out: 8 (14324 bytes)
  Err: 8
27/09/2020 23:11:57             dut.10.240.183.171: portstats 1 
27/09/2020 23:11:57             dut.10.240.183.171: 
Port 1 stats
   In: 8 (14324 bytes)
  Out: 8 (14324 bytes)
  Err: 16
27/09/2020 23:11:57                         tester: ifconfig eno3 mtu 1518
27/09/2020 23:11:58                         tester: 
27/09/2020 23:11:58             dut.10.240.183.171: quit
27/09/2020 23:11:58             dut.10.240.183.171: 
27/09/2020 23:11:58           TestUserspaceEthtool: Test Case test_port_mtu Result PASSED:
27/09/2020 23:11:58             dut.10.240.183.171: kill_all: called by dut and has no prefix list.
27/09/2020 23:12:00           TestUserspaceEthtool: Test Case test_retrieve_eeprom Result SKIPPED:
27/09/2020 23:12:00           TestUserspaceEthtool: Test Case test_retrieve_reg Result SKIPPED:
27/09/2020 23:12:00           TestUserspaceEthtool: Test Case test_ring_parameter Begin
27/09/2020 23:12:00             dut.10.240.183.171: 
27/09/2020 23:12:00                         tester: 
27/09/2020 23:12:00             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:12:01             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:12:01             dut.10.240.183.171: portstats 0 
27/09/2020 23:12:01             dut.10.240.183.171: 
Port 0 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:12:01             dut.10.240.183.171: ringparam 0
27/09/2020 23:12:01             dut.10.240.183.171: 
Port 0 ring parameters
  Rx Pending: 1024 (32768 max)
  Tx Pending: 1024 (32768 max)
27/09/2020 23:12:01             dut.10.240.183.171: ringparam 0 32768 32768
27/09/2020 23:12:01             dut.10.240.183.171: 
27/09/2020 23:12:01             dut.10.240.183.171: ringparam 0
27/09/2020 23:12:01             dut.10.240.183.171: 
Port 0 ring parameters
  Rx Pending: 32768 (32768 max)
  Tx Pending: 32768 (32768 max)
27/09/2020 23:12:01             dut.10.240.183.171: link
27/09/2020 23:12:05             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:12:19             dut.10.240.183.171: portstats 0 
27/09/2020 23:12:19             dut.10.240.183.171: 
Port 0 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:12:19             dut.10.240.183.171: quit
27/09/2020 23:12:19             dut.10.240.183.171: 
27/09/2020 23:12:19             dut.10.240.183.171: x86_64-native-linuxapp-gcc/examples/dpdk-ethtool   -l 42,41,40,39 -n 4
27/09/2020 23:12:20             dut.10.240.183.171: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:81:00.0 (socket 1)
EAL: Probe PCI driver: net_igc (8086:15f2) device: 0000:86:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Number of NICs: 2
Init port 0..
Init port 1..
27/09/2020 23:12:20             dut.10.240.183.171: portstats 1 
27/09/2020 23:12:20             dut.10.240.183.171: 
Port 1 stats
   In: 0 (0 bytes)
  Out: 0 (0 bytes)
  Err: 0
27/09/2020 23:12:20             dut.10.240.183.171: ringparam 1
27/09/2020 23:12:20             dut.10.240.183.171: 
Port 1 ring parameters
  Rx Pending: 1024 (32768 max)
  Tx Pending: 1024 (32768 max)
27/09/2020 23:12:20             dut.10.240.183.171: ringparam 1 32768 32768
27/09/2020 23:12:20             dut.10.240.183.171: 
27/09/2020 23:12:20             dut.10.240.183.171: ringparam 1
27/09/2020 23:12:20             dut.10.240.183.171: 
Port 1 ring parameters
  Rx Pending: 32768 (32768 max)
  Tx Pending: 32768 (32768 max)
27/09/2020 23:12:20             dut.10.240.183.171: link
27/09/2020 23:12:27             dut.10.240.183.171: 
Port 0: Up
Port 1: Up

27/09/2020 23:12:41             dut.10.240.183.171: portstats 1 
27/09/2020 23:12:41             dut.10.240.183.171: 
Port 1 stats
   In: 4 (240 bytes)
  Out: 4 (240 bytes)
  Err: 0
27/09/2020 23:12:41             dut.10.240.183.171: quit
27/09/2020 23:12:42             dut.10.240.183.171: 
27/09/2020 23:12:42           TestUserspaceEthtool: Test Case test_ring_parameter Result PASSED:
27/09/2020 23:12:42             dut.10.240.183.171: kill_all: called by dut and has no prefix list.
27/09/2020 23:12:43                            dts: 
TEST SUITE ENDED: TestUserspaceEthtool

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dts] [PATCH V1 0/2] add support NIC
  2020-09-30  6:46 [dts] [PATCH V1 0/2] add support NIC Chen Linglix
                   ` (2 preceding siblings ...)
  2020-09-30  6:57 ` [dts] [PATCH V1 0/2] add support NIC Chen, LingliX
@ 2020-10-13  2:23 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Tu, Lijuan @ 2020-10-13  2:23 UTC (permalink / raw)
  To: Chen, LingliX, dts; +Cc: Chen, LingliX

> add support NIC

Applied

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-10-13  2:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-30  6:46 [dts] [PATCH V1 0/2] add support NIC Chen Linglix
2020-09-30  6:46 ` [dts] [dts 1/2] tests/TestSuite_userspace_ethtool:add foxville Chen Linglix
2020-09-30  6:46 ` [dts] [dts 2/2] tests/TestSuite_inline_ipsec:add support NIC twinpond Chen Linglix
2020-09-30  6:57 ` [dts] [PATCH V1 0/2] add support NIC Chen, LingliX
2020-10-13  2:23 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).