test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/2] add decorator to support pkg check
@ 2021-03-22  6:37 Zhimin Huang
  2021-03-22  6:37 ` [dts] [PATCH V1 1/2] remove replace pkg case Zhimin Huang
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Zhimin Huang @ 2021-03-22  6:37 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

 1.RXID22 to RXID16 case need to replace pkg, adapt to the framework modified about pkg check,
   so mark this case n/a in check_list
 2. add decorator to support framework pkg check, skip not support os default case

Zhimin Huang (2):
  conf/test_case_checklist:remove replace pkg case
  tests/pf_vf_flexible:add decorator for pkg check

 conf/test_case_checklist.json               | 15 +++++++++++++++
 tests/TestSuite_flexible_rxd.py             | 26 +++++++++++++-------------
 tests/TestSuite_iavf_flexible_descriptor.py | 21 +++++++++++++--------
 3 files changed, 41 insertions(+), 21 deletions(-)

-- 
1.8.3.1


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

* [dts] [PATCH V1 1/2] remove replace pkg case
  2021-03-22  6:37 [dts] [PATCH V1 0/2] add decorator to support pkg check Zhimin Huang
@ 2021-03-22  6:37 ` Zhimin Huang
  2021-03-25  6:06   ` Tu, Lijuan
  2021-03-22  6:37 ` [dts] [PATCH V1 2/2] tests/pf_vf_flexible:add decorator for pkg check Zhimin Huang
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Zhimin Huang @ 2021-03-22  6:37 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

*.add case in checklist

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 conf/test_case_checklist.json | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json
index 1a686d8..6b2b3e0 100644
--- a/conf/test_case_checklist.json
+++ b/conf/test_case_checklist.json
@@ -3210,6 +3210,21 @@
             "Comments": "only i40e and ixgbe driver support this case"
         }
 	],
+    "check_effect_replace_pkg_RXID_22_to_RXID_16": [
+        {
+            "OS": [
+                "ALL"
+            ],
+            "NIC": [
+                "ALL"
+            ],
+            "Target": [
+                "ALL"
+            ],
+            "Bug ID": "",
+            "Comments": "remove replace pkg case"
+        }
+	],
     "tunnel_filter_nvgre": [
         {
             "OS": [
-- 
1.8.3.1


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

* [dts] [PATCH V1 2/2] tests/pf_vf_flexible:add decorator for pkg check
  2021-03-22  6:37 [dts] [PATCH V1 0/2] add decorator to support pkg check Zhimin Huang
  2021-03-22  6:37 ` [dts] [PATCH V1 1/2] remove replace pkg case Zhimin Huang
@ 2021-03-22  6:37 ` Zhimin Huang
  2021-03-22  6:57 ` [dts] [PATCH V1 0/2] add decorator to support " Huang, ZhiminX
  2021-03-22  7:01 ` Huang, ZhiminX
  3 siblings, 0 replies; 7+ messages in thread
From: Zhimin Huang @ 2021-03-22  6:37 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

*.add decorator to skip not support os default pkg for pf and vf flexible suite

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 tests/TestSuite_flexible_rxd.py             | 26 +++++++++++++-------------
 tests/TestSuite_iavf_flexible_descriptor.py | 21 +++++++++++++--------
 2 files changed, 26 insertions(+), 21 deletions(-)

diff --git a/tests/TestSuite_flexible_rxd.py b/tests/TestSuite_flexible_rxd.py
index 648173e..45eb603 100644
--- a/tests/TestSuite_flexible_rxd.py
+++ b/tests/TestSuite_flexible_rxd.py
@@ -32,11 +32,12 @@
 
 
 import time
-from test_case import TestCase
+from test_case import TestCase, skip_unsupported_pkg, check_supported_nic
 from flexible_common import FlexibleRxdBase
 import rte_flow_common as rfc
 
 class TestFlexibleRxd(TestCase, FlexibleRxdBase):
+    supported_nic = ['columbiaville_100g', 'columbiaville_25g', 'columbiaville_25gx2', 'foxville']
 
     def preset_compilation(self):
         """
@@ -65,17 +66,11 @@ class TestFlexibleRxd(TestCase, FlexibleRxdBase):
         [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
         self.dut.build_install_dpdk(self.dut.target)
 
+    @check_supported_nic(supported_nic)
     def set_up_all(self):
         """
         run at the start of each test suite.
         """
-        support_nics = [
-            "columbiaville_25g",
-            "columbiaville_100g",
-            "foxville",
-        ]
-        self.verify(self.nic in support_nics,
-            "flexible rxd only supports CVL NIC.")
         self.dut_ports = self.dut.get_ports(self.nic)
         self.verify(len(self.dut_ports) >= 1, "Insufficient ports for testing")
         self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
@@ -85,17 +80,12 @@ class TestFlexibleRxd(TestCase, FlexibleRxdBase):
         self.pci = self.dut.ports_info[0]['pci']
         self.dst_mac = self.dut.get_mac_address(self.dut_ports[0])
         self.init_base(self.pci, self.dst_mac, 'pf')
-        self.ddp_dir = "/lib/firmware/updates/intel/ice/ddp/"
-        self.suite_config = rfc.get_suite_config(self)
-        self.os_default_pkg = self.suite_config["os_default_package_file_location"]
-        self.comms_pkg = self.suite_config["comms_package_file_location"]
 
     def tear_down_all(self):
         """
         Run after each test suite.
         """
         self.restore_compilation()
-        self.replace_pkg(pkg='comms')
 
     def set_up(self):
         """
@@ -111,60 +101,70 @@ class TestFlexibleRxd(TestCase, FlexibleRxdBase):
         time.sleep(2)
         self.dut.kill_all()
 
+    @skip_unsupported_pkg('os default')
     def test_check_single_VLAN_fields_in_RXD_8021Q(self):
         """
         Check single VLAN fields in RXD (802.1Q)
         """
         self.check_single_VLAN_fields_in_RXD_8021Q()
 
+    @skip_unsupported_pkg('os default')
     def test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag(self):
         """
         Check double VLAN fields in RXD (802.1Q) only 1 VLAN tag
         """
         self.check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag()
 
+    @skip_unsupported_pkg('os default')
     def test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag(self):
         """
         Check double VLAN fields in RXD (802.1Q) 2 VLAN tags
         """
         self.check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag()
 
+    @skip_unsupported_pkg('os default')
     def test_check_double_VLAN_fields_in_RXD_8021ad(self):
         """
         Check double VLAN fields in RXD (802.1ad)
         """
         self.check_double_VLAN_fields_in_RXD_8021ad()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv4_fields_in_RXD(self):
         """
         Check IPv4 fields in RXD
         """
         self.check_IPv4_fields_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv6_fields_in_RXD(self):
         """
         Check IPv6 fields in RXD
         """
         self.check_IPv6_fields_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv6_flow_field_in_RXD(self):
         """
         Check IPv6 flow field in RXD
         """
         self.check_IPv6_flow_field_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_TCP_fields_in_IPv4_in_RXD(self):
         """
         Check TCP fields in IPv4 in RXD
         """
         self.check_TCP_fields_in_IPv4_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_TCP_fields_in_IPv6_in_RXD(self):
         """
         Check TCP fields in IPv6 in RXD
         """
         self.check_TCP_fields_in_IPv6_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
         """
         Check IPv4, IPv6, TCP fields in RXD on specific queues
diff --git a/tests/TestSuite_iavf_flexible_descriptor.py b/tests/TestSuite_iavf_flexible_descriptor.py
index 3bfd5b9..41d227a 100644
--- a/tests/TestSuite_iavf_flexible_descriptor.py
+++ b/tests/TestSuite_iavf_flexible_descriptor.py
@@ -35,11 +35,12 @@ import time
 import traceback
 
 
-from test_case import TestCase
+from test_case import TestCase, skip_unsupported_pkg, check_supported_nic
 from flexible_common import FlexibleRxdBase
 
 
 class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
+    supported_nic = ['columbiaville_100g', 'columbiaville_25g', 'columbiaville_25gx2', 'foxville']
 
     def preset_compilation(self):
         """
@@ -100,17 +101,11 @@ class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
         except Exception as e:
             self.logger.info(traceback.format_exc())
 
+    @check_supported_nic(supported_nic)
     def set_up_all(self):
         """
         run at the start of each test suite.
         """
-        support_nics = [
-            "columbiaville_25g",
-            "columbiaville_100g",
-            "foxville",
-        ]
-        self.verify(self.nic in support_nics,
-            "flexible rxd only supports CVL NIC.")
         self.dut_ports = self.dut.get_ports(self.nic)
         self.verify(len(self.dut_ports) >= 1, "Insufficient ports for testing")
         self.preset_compilation()
@@ -139,18 +134,21 @@ class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
         time.sleep(2)
         self.dut.kill_all()
 
+    @skip_unsupported_pkg('os default')
     def test_check_single_VLAN_fields_in_RXD_8021Q(self):
         """
         Check single VLAN fields in RXD (802.1Q)
         """
         self.check_single_VLAN_fields_in_RXD_8021Q()
 
+    @skip_unsupported_pkg('os default')
     def test_check_single_VLAN_fields_in_RXD_8021ad(self):
         """
         Check single VLAN fields in RXD (802.1ad)
         """
         self.check_single_VLAN_fields_in_RXD_8021ad()
 
+    @skip_unsupported_pkg('os default')
     def test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag(self):
         """
         Check double VLAN fields in RXD (802.1Q) only 1 VLAN tag
@@ -163,42 +161,49 @@ class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
         """
         self.check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag()
 
+    @skip_unsupported_pkg('os default')
     def test_check_double_VLAN_fields_in_RXD_8021ad(self):
         """
         Check double VLAN fields in RXD (802.1ad)
         """
         self.check_double_VLAN_fields_in_RXD_8021ad()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv4_fields_in_RXD(self):
         """
         Check IPv4 fields in RXD
         """
         self.check_IPv4_fields_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv6_fields_in_RXD(self):
         """
         Check IPv6 fields in RXD
         """
         self.check_IPv6_fields_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv6_flow_field_in_RXD(self):
         """
         Check IPv6 flow field in RXD
         """
         self.check_IPv6_flow_field_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_TCP_fields_in_IPv4_in_RXD(self):
         """
         Check TCP fields in IPv4 in RXD
         """
         self.check_TCP_fields_in_IPv4_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_TCP_fields_in_IPv6_in_RXD(self):
         """
         Check TCP fields in IPv6 in RXD
         """
         self.check_TCP_fields_in_IPv6_in_RXD()
 
+    @skip_unsupported_pkg('os default')
     def test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
         """
         Check IPv4, IPv6, TCP fields in RXD on specific queues
-- 
1.8.3.1


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

* Re: [dts] [PATCH V1 0/2] add decorator to support pkg check
  2021-03-22  6:37 [dts] [PATCH V1 0/2] add decorator to support pkg check Zhimin Huang
  2021-03-22  6:37 ` [dts] [PATCH V1 1/2] remove replace pkg case Zhimin Huang
  2021-03-22  6:37 ` [dts] [PATCH V1 2/2] tests/pf_vf_flexible:add decorator for pkg check Zhimin Huang
@ 2021-03-22  6:57 ` Huang, ZhiminX
  2021-03-22  7:01 ` Huang, ZhiminX
  3 siblings, 0 replies; 7+ messages in thread
From: Huang, ZhiminX @ 2021-03-22  6:57 UTC (permalink / raw)
  To: dts

> -----Original Message-----
> From: Huang, ZhiminX <zhiminx.huang@intel.com>
> Sent: Monday, March 22, 2021 2:38 PM
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1 0/2] add decorator to support pkg check

Tested-by: Huang Zhimin <zhiminx.huang@intel.com> 

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

* Re: [dts] [PATCH V1 0/2] add decorator to support pkg check
  2021-03-22  6:37 [dts] [PATCH V1 0/2] add decorator to support pkg check Zhimin Huang
                   ` (2 preceding siblings ...)
  2021-03-22  6:57 ` [dts] [PATCH V1 0/2] add decorator to support " Huang, ZhiminX
@ 2021-03-22  7:01 ` Huang, ZhiminX
  2021-03-22  7:04   ` Zhao, HaiyangX
  3 siblings, 1 reply; 7+ messages in thread
From: Huang, ZhiminX @ 2021-03-22  7:01 UTC (permalink / raw)
  To: dts

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

> -----Original Message-----
> From: Huang, ZhiminX <zhiminx.huang@intel.com>
> Sent: Monday, March 22, 2021 2:38 PM
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1 0/2] add decorator to support pkg check
> 
Tested-by: Huang Zhimin <zhiminx.huang@intel.com> 

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

21/03/2021 15:44:20                            dts: 
TEST SUITE : TestFlexibleRxd
21/03/2021 15:44:20                            dts: NIC :        columbiaville_25g
21/03/2021 15:44:20             dut.10.240.183.145: 
21/03/2021 15:44:20                         tester: 
21/03/2021 15:44:21             dut.10.240.183.145: rm -rf x86_64-native-linuxapp-gcc
21/03/2021 15:44:21             dut.10.240.183.145: 
21/03/2021 15:44:21             dut.10.240.183.145: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
21/03/2021 15:44:28             dut.10.240.183.145: The Meson build system
Version: 0.56.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.05.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:238: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" :  
Fetching value of define "__AVX512BW__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
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"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
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: YES 2.12
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__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
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 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
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"
Run-time dependency libelf found: NO (tried pkgconfig)
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: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-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 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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 "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-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)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
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 "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-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 (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, sfc_efx, qat, 
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, ionic, 
	ixgbe, kni, liquidio, memif, netvsc, nfp, null, octeontx, 
	octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, softnic, 
	tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	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, "libAArch64crypto"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1021

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
21/03/2021 15:44:28             dut.10.240.183.145: ninja -C x86_64-native-linuxapp-gcc
21/03/2021 15:46:11             dut.10.240.183.145: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[2/2515] Generating rte_kvargs_def with a custom command
[3/2515] Generating rte_kvargs_mingw with a custom command
[4/2515] Generating rte_telemetry_mingw with a custom command
[5/2515] Generating rte_telemetry_def with a custom command
[6/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[7/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[8/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[9/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[10/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[11/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_version.c.o
[12/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[13/2515] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[14/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[15/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[16/2515] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[17/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[18/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[19/2515] Linking static target lib/librte_kvargs.a
[20/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[21/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[22/2515] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[23/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[24/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[25/2515] Compiling C object lib/librte_eal.a.p/librte_eal_unix_rte_thread.c.o
[26/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[27/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[28/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[29/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[30/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[31/2515] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[32/2515] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[33/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[34/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[35/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[36/2515] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[37/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[38/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[39/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[40/2515] Generating rte_eal_mingw with a custom command
[41/2515] Generating rte_rcu_mingw with a custom command
[42/2515] Generating rte_eal_def with a custom command
[43/2515] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[44/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[45/2515] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[46/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[47/2515] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[48/2515] Generating rte_rcu_def with a custom command
[49/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[50/2515] Generating rte_ring_def with a custom command
[51/2515] Generating rte_ring_mingw with a custom command
[52/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[53/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[54/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[55/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[56/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[57/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[58/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[59/2515] Generating rte_mempool_def with a custom command
[60/2515] Generating rte_mempool_mingw with a custom command
[61/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[62/2515] Generating rte_mbuf_def with a custom command
[63/2515] Generating rte_mbuf_mingw with a custom command
[64/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[65/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[66/2515] Generating rte_net_def with a custom command
[67/2515] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[68/2515] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[69/2515] Generating rte_net_mingw with a custom command
[70/2515] Linking static target lib/librte_telemetry.a
[71/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[72/2515] Generating rte_meter_mingw with a custom command
[73/2515] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_power_intrinsics.c.o
[74/2515] Generating rte_meter_def with a custom command
[75/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[76/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[77/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[78/2515] Generating rte_ethdev_def with a custom command
[79/2515] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[80/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[81/2515] Generating rte_ethdev_mingw with a custom command
[82/2515] Generating rte_pci_def with a custom command
[83/2515] Linking static target lib/librte_ring.a
[84/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[85/2515] Generating rte_pci_mingw with a custom command
[86/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[87/2515] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[88/2515] Linking static target lib/librte_meter.a
[89/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[90/2515] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[91/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[92/2515] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[93/2515] Linking static target lib/librte_pci.a
[94/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[95/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[96/2515] Linking target lib/librte_kvargs.so.21.2
[97/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[98/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[99/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[100/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[101/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[102/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[103/2515] Generating rte_cmdline_def with a custom command
[104/2515] Generating rte_cmdline_mingw with a custom command
[105/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[106/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[107/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[108/2515] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[109/2515] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[110/2515] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[111/2515] Generating rte_metrics_def with a custom command
[112/2515] Generating rte_metrics_mingw with a custom command
[113/2515] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[114/2515] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[115/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[116/2515] Generating rte_hash_def with a custom command
[117/2515] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[118/2515] Generating rte_timer_def with a custom command
[119/2515] Generating rte_hash_mingw with a custom command
[120/2515] Generating rte_timer_mingw with a custom command
[121/2515] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[122/2515] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[123/2515] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[124/2515] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[125/2515] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[126/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[127/2515] Generating rte_acl_mingw with a custom command
[128/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[129/2515] Generating rte_bbdev_def with a custom command
[130/2515] Generating rte_bbdev_mingw with a custom command
[131/2515] Generating rte_acl_def with a custom command
[132/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[133/2515] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[134/2515] Generating rte_bitratestats_def with a custom command
[135/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[136/2515] Generating rte_bitratestats_mingw with a custom command
[137/2515] Generating rte_cfgfile_def with a custom command
[138/2515] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[139/2515] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[140/2515] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[141/2515] Generating rte_cfgfile_mingw with a custom command
[142/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[143/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[144/2515] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[145/2515] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[146/2515] Generating rte_compressdev_def with a custom command
[147/2515] Generating rte_compressdev_mingw with a custom command
[148/2515] Generating rte_cryptodev_def with a custom command
[149/2515] Generating symbol file lib/librte_kvargs.so.21.2.p/librte_kvargs.so.21.2.symbols
[150/2515] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[151/2515] Generating rte_cryptodev_mingw with a custom command
[152/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[153/2515] Generating rte_distributor_def with a custom command
[154/2515] Generating rte_distributor_mingw with a custom command
[155/2515] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[156/2515] Generating rte_efd_def with a custom command
[157/2515] Generating rte_efd_mingw with a custom command
[158/2515] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[159/2515] Linking target lib/librte_telemetry.so.21.2
[160/2515] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[161/2515] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[162/2515] Linking static target lib/librte_rcu.a
[163/2515] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[164/2515] Linking static target lib/librte_cmdline.a
[165/2515] Linking static target lib/librte_net.a
[166/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[167/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[168/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[169/2515] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[170/2515] Linking static target lib/librte_mempool.a
[171/2515] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[172/2515] Generating rte_eventdev_def with a custom command
[173/2515] Linking static target lib/librte_cfgfile.a
[174/2515] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[175/2515] Generating rte_eventdev_mingw with a custom command
[176/2515] Linking static target lib/librte_eal.a
[177/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[178/2515] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[179/2515] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[180/2515] Linking static target lib/librte_timer.a
[181/2515] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[182/2515] Generating symbol file lib/librte_telemetry.so.21.2.p/librte_telemetry.so.21.2.symbols
[183/2515] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[184/2515] Generating rte_gro_def with a custom command
[185/2515] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[186/2515] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[187/2515] Generating rte_gro_mingw with a custom command
[188/2515] Linking static target lib/librte_bitratestats.a
[189/2515] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[190/2515] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[191/2515] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics_telemetry.c.o
[192/2515] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[193/2515] Linking static target lib/librte_metrics.a
[194/2515] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[195/2515] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[196/2515] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[197/2515] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[198/2515] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[199/2515] Generating rte_gso_mingw with a custom command
[200/2515] Generating rte_gso_def with a custom command
[201/2515] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[202/2515] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[203/2515] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[204/2515] Generating rte_ip_frag_def with a custom command
[205/2515] Linking static target lib/librte_compressdev.a
[206/2515] Generating rte_ip_frag_mingw with a custom command
[207/2515] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[208/2515] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[209/2515] Linking static target lib/librte_bbdev.a
[210/2515] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[211/2515] Generating rte_jobstats_def with a custom command
[212/2515] Generating rte_jobstats_mingw with a custom command
[213/2515] Generating rte_kni_def with a custom command
[214/2515] Generating rte_kni_mingw with a custom command
[215/2515] Generating rte_latencystats_def with a custom command
[216/2515] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[217/2515] Generating rte_latencystats_mingw with a custom command
[218/2515] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[219/2515] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[220/2515] Linking static target lib/librte_distributor.a
[221/2515] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[222/2515] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[223/2515] Generating rte_lpm_def with a custom command
[224/2515] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[225/2515] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[226/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[227/2515] Generating rte_lpm_mingw with a custom command
[228/2515] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_udp4.c.o
[229/2515] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[230/2515] Generating rte_member_def with a custom command
[231/2515] Generating rte_member_mingw with a custom command
[232/2515] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[233/2515] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[234/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[235/2515] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[236/2515] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[237/2515] Linking static target lib/librte_gro.a
[238/2515] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[239/2515] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[240/2515] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[241/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[242/2515] Generating rte_power_def with a custom command
[243/2515] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[244/2515] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[245/2515] Generating rte_power_mingw with a custom command
[246/2515] Generating rte_pdump_def with a custom command
[247/2515] Generating rte_pdump_mingw with a custom command
[248/2515] Generating rte_rawdev_mingw with a custom command
[249/2515] Generating rte_rawdev_def with a custom command
[250/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[251/2515] Generating rte_regexdev_def with a custom command
[252/2515] Generating rte_regexdev_mingw with a custom command
[253/2515] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[254/2515] Linking static target lib/librte_jobstats.a
[255/2515] Generating rte_rib_def with a custom command
[256/2515] Generating rte_rib_mingw with a custom command
[257/2515] Generating rte_reorder_def with a custom command
[258/2515] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[259/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[260/2515] Generating rte_reorder_mingw with a custom command
[261/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[262/2515] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[263/2515] Generating rte_sched_def with a custom command
[264/2515] Generating rte_sched_mingw with a custom command
[265/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[266/2515] Generating rte_security_def with a custom command
[267/2515] Generating rte_security_mingw with a custom command
[268/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[269/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[270/2515] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[271/2515] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[272/2515] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[273/2515] Generating rte_stack_def with a custom command
[274/2515] Linking static target lib/librte_ip_frag.a
[275/2515] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[276/2515] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[277/2515] Generating rte_stack_mingw with a custom command
[278/2515] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[279/2515] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[280/2515] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[281/2515] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[282/2515] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[283/2515] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[284/2515] Linking static target lib/librte_latencystats.a
[285/2515] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[286/2515] Generating rte_vhost_def with a custom command
[287/2515] Generating rte_vhost_mingw with a custom command
[288/2515] Linking static target lib/librte_stack.a
[289/2515] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[290/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[291/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[292/2515] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[293/2515] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[294/2515] Linking static target lib/librte_gso.a
[295/2515] Generating rte_ipsec_def with a custom command
[296/2515] Compiling C object lib/librte_power.a.p/librte_power_rte_power_pmd_mgmt.c.o
[297/2515] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[298/2515] Linking static target lib/librte_efd.a
[299/2515] Generating rte_ipsec_mingw with a custom command
[300/2515] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[301/2515] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[302/2515] Linking static target lib/librte_cryptodev.a
[303/2515] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[304/2515] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[305/2515] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[306/2515] Linking static target lib/librte_kni.a
[307/2515] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[308/2515] Linking static target lib/librte_regexdev.a
[309/2515] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[310/2515] Linking static target lib/librte_rawdev.a
[311/2515] Compiling C object lib/librte_acl/libavx2_tmp.a.p/acl_run_avx2.c.o
[312/2515] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[313/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[314/2515] Linking static target lib/librte_acl/libavx2_tmp.a
[315/2515] Generating rte_fib_def with a custom command
[316/2515] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[317/2515] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[318/2515] Generating rte_fib_mingw with a custom command
[319/2515] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[320/2515] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[321/2515] Linking static target lib/librte_mbuf.a
[322/2515] Linking static target lib/librte_lpm.a
[323/2515] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[324/2515] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[325/2515] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[326/2515] Linking static target lib/librte_reorder.a
[327/2515] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[328/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[329/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[330/2515] Linking static target lib/librte_security.a
[331/2515] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[332/2515] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[333/2515] Linking static target lib/librte_power.a
[334/2515] Linking static target lib/librte_pdump.a
[335/2515] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[336/2515] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[337/2515] Compiling C object lib/librte_fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[338/2515] Linking static target lib/librte_fib/libtrie_avx512_tmp.a
[339/2515] Compiling C object lib/librte_fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[340/2515] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[341/2515] Linking static target lib/librte_fib/libdir24_8_avx512_tmp.a
[342/2515] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[343/2515] Linking static target lib/librte_eventdev.a
[344/2515] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[345/2515] Linking static target lib/librte_hash.a
[346/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[347/2515] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[348/2515] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[349/2515] Linking static target lib/librte_member.a
[350/2515] Compiling C object lib/librte_acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[351/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[352/2515] Linking static target lib/librte_acl/libavx512_tmp.a
[353/2515] Linking static target lib/librte_acl.a
[354/2515] Generating rte_port_def with a custom command
[355/2515] Generating rte_port_mingw with a custom command
[356/2515] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[357/2515] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[358/2515] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[359/2515] Linking static target lib/librte_rib.a
[360/2515] Linking static target lib/librte_ethdev.a
[361/2515] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[362/2515] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[363/2515] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[364/2515] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[365/2515] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[366/2515] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[367/2515] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[368/2515] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[369/2515] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[370/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[371/2515] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[372/2515] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[373/2515] Generating rte_table_def with a custom command
[374/2515] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[375/2515] Generating rte_table_mingw with a custom command
[376/2515] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[377/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[378/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[379/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[380/2515] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[381/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[382/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[383/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[384/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[385/2515] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[386/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[387/2515] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[388/2515] Generating rte_pipeline_def with a custom command
[389/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[390/2515] Generating rte_flow_classify_def with a custom command
[391/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[392/2515] Generating rte_pipeline_mingw with a custom command
[393/2515] Linking target lib/librte_eal.so.21.2
[394/2515] Generating rte_flow_classify_mingw with a custom command
[395/2515] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[396/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[397/2515] Linking static target lib/librte_fib.a
[398/2515] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[399/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[400/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[401/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[402/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[403/2515] Linking static target lib/librte_sched.a
[404/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[405/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[406/2515] Generating rte_bpf_def with a custom command
[407/2515] Generating rte_bpf_mingw with a custom command
[408/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[409/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[410/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[411/2515] Generating rte_graph_def with a custom command
[412/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[413/2515] Generating rte_graph_mingw with a custom command
[414/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[415/2515] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[416/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[417/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[418/2515] Generating symbol file lib/librte_eal.so.21.2.p/librte_eal.so.21.2.symbols
[419/2515] Linking target lib/librte_ring.so.21.2
[420/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[421/2515] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[422/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[423/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[424/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[425/2515] Linking target lib/librte_cfgfile.so.21.2
[426/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[427/2515] Linking target lib/librte_meter.so.21.2
[428/2515] Linking target lib/librte_timer.so.21.2
[429/2515] Linking target lib/librte_pci.so.21.2
[430/2515] Linking target lib/librte_jobstats.so.21.2
[431/2515] Linking target lib/librte_rawdev.so.21.2
[432/2515] Linking target lib/librte_acl.so.21.2
[433/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[434/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[435/2515] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[436/2515] Linking target lib/librte_stack.so.21.2
[437/2515] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[438/2515] Generating rte_node_def with a custom command
[439/2515] Linking static target lib/librte_table.a
[440/2515] Generating rte_node_mingw with a custom command
[441/2515] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[442/2515] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[443/2515] Generating rte_common_cpt_mingw with a custom command
[444/2515] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[445/2515] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[446/2515] Generating rte_common_cpt_def with a custom command
[447/2515] Generating symbol file lib/librte_ring.so.21.2.p/librte_ring.so.21.2.symbols
[448/2515] Generating rte_common_dpaax_mingw with a custom command
[449/2515] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[450/2515] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[451/2515] Linking target lib/librte_rcu.so.21.2
[452/2515] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[453/2515] Linking target lib/librte_mempool.so.21.2
[454/2515] Generating rte_common_dpaax_def with a custom command
[455/2515] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[456/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[457/2515] Generating rte_common_iavf_def with a custom command
[458/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[459/2515] Generating rte_common_iavf_mingw with a custom command
[460/2515] Generating symbol file lib/librte_meter.so.21.2.p/librte_meter.so.21.2.symbols
[461/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[462/2515] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[463/2515] Generating symbol file lib/librte_timer.so.21.2.p/librte_timer.so.21.2.symbols
[464/2515] Generating symbol file lib/librte_pci.so.21.2.p/librte_pci.so.21.2.symbols
[465/2515] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[466/2515] Generating rte_common_octeontx_def with a custom command
[467/2515] Generating rte_common_octeontx_mingw with a custom command
[468/2515] Generating symbol file lib/librte_rawdev.so.21.2.p/librte_rawdev.so.21.2.symbols
[469/2515] Generating symbol file lib/librte_acl.so.21.2.p/librte_acl.so.21.2.symbols
[470/2515] Generating rte_common_octeontx2_mingw with a custom command
[471/2515] Generating rte_common_octeontx2_def with a custom command
[472/2515] Generating symbol file lib/librte_stack.so.21.2.p/librte_stack.so.21.2.symbols
[473/2515] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[474/2515] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[475/2515] Linking static target drivers/libtmp_rte_common_dpaax.a
[476/2515] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[477/2515] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[478/2515] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[479/2515] Linking static target drivers/libtmp_rte_common_octeontx.a
[480/2515] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[481/2515] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[482/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[483/2515] Linking static target lib/librte_flow_classify.a
[484/2515] Generating symbol file lib/librte_rcu.so.21.2.p/librte_rcu.so.21.2.symbols
[485/2515] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[486/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[487/2515] Linking static target lib/librte_port.a
[488/2515] Linking target lib/librte_hash.so.21.2
[489/2515] Generating symbol file lib/librte_mempool.so.21.2.p/librte_mempool.so.21.2.symbols
[490/2515] Generating rte_common_dpaax.pmd.c with a custom command
[491/2515] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[492/2515] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[493/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[494/2515] Linking static target drivers/librte_common_dpaax.a
[495/2515] Linking target lib/librte_rib.so.21.2
[496/2515] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[497/2515] Linking target lib/librte_mbuf.so.21.2
[498/2515] Linking static target lib/librte_graph.a
[499/2515] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[500/2515] Compiling C object drivers/librte_common_dpaax.so.21.2.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[501/2515] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[502/2515] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[503/2515] Generating rte_common_octeontx.pmd.c with a custom command
[504/2515] Linking static target drivers/libtmp_rte_common_cpt.a
[505/2515] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[506/2515] Linking static target drivers/librte_common_octeontx.a
[507/2515] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[508/2515] Compiling C object drivers/librte_common_octeontx.so.21.2.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[509/2515] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[510/2515] Linking static target lib/librte_bpf.a
[511/2515] Generating rte_common_cpt.pmd.c with a custom command
[512/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[513/2515] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[514/2515] Linking static target drivers/librte_common_cpt.a
[515/2515] Compiling C object drivers/librte_common_cpt.so.21.2.p/meson-generated_.._rte_common_cpt.pmd.c.o
[516/2515] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[517/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[518/2515] Generating symbol file lib/librte_hash.so.21.2.p/librte_hash.so.21.2.symbols
[519/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[520/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[521/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[522/2515] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[523/2515] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[524/2515] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[525/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[526/2515] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[527/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[528/2515] Generating symbol file lib/librte_mbuf.so.21.2.p/librte_mbuf.so.21.2.symbols
[529/2515] Linking target lib/librte_efd.so.21.2
[530/2515] Linking target lib/librte_member.so.21.2
[531/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[532/2515] Linking target lib/librte_lpm.so.21.2
[533/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[534/2515] Linking target lib/librte_net.so.21.2
[535/2515] Linking target lib/librte_cryptodev.so.21.2
[536/2515] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[537/2515] Linking target lib/librte_compressdev.so.21.2
[538/2515] Linking target lib/librte_distributor.so.21.2
[539/2515] Linking target lib/librte_bbdev.so.21.2
[540/2515] Generating symbol file lib/librte_rib.so.21.2.p/librte_rib.so.21.2.symbols
[541/2515] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[542/2515] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[543/2515] Linking target lib/librte_regexdev.so.21.2
[544/2515] Linking target lib/librte_reorder.so.21.2
[545/2515] Linking static target lib/librte_ipsec.a
[546/2515] Linking target lib/librte_sched.so.21.2
[547/2515] Linking target lib/librte_fib.so.21.2
[548/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[549/2515] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[550/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[551/2515] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[552/2515] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[553/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[554/2515] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[555/2515] Linking target drivers/librte_common_dpaax.so.21.2
[556/2515] Linking target drivers/librte_common_octeontx.so.21.2
[557/2515] Linking static target drivers/libtmp_rte_common_octeontx2.a
[558/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[559/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[560/2515] Generating symbol file lib/librte_net.so.21.2.p/librte_net.so.21.2.symbols
[561/2515] Generating symbol file lib/librte_lpm.so.21.2.p/librte_lpm.so.21.2.symbols
[562/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[563/2515] Generating symbol file lib/librte_cryptodev.so.21.2.p/librte_cryptodev.so.21.2.symbols
[564/2515] Generating symbol file lib/librte_reorder.so.21.2.p/librte_reorder.so.21.2.symbols
[565/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[566/2515] Generating symbol file lib/librte_bbdev.so.21.2.p/librte_bbdev.so.21.2.symbols
[567/2515] Linking target lib/librte_ethdev.so.21.2
[568/2515] Generating symbol file lib/librte_compressdev.so.21.2.p/librte_compressdev.so.21.2.symbols
[569/2515] Linking target lib/librte_cmdline.so.21.2
[570/2515] Generating symbol file lib/librte_regexdev.so.21.2.p/librte_regexdev.so.21.2.symbols
[571/2515] Generating rte_common_octeontx2.pmd.c with a custom command
[572/2515] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[573/2515] Linking target lib/librte_security.so.21.2
[574/2515] Generating symbol file lib/librte_sched.so.21.2.p/librte_sched.so.21.2.symbols
[575/2515] Compiling C object drivers/librte_common_octeontx2.so.21.2.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[576/2515] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[577/2515] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[578/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[579/2515] Linking target drivers/librte_common_cpt.so.21.2
[580/2515] Linking static target drivers/librte_common_octeontx2.a
[581/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[582/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[583/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[584/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[585/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[586/2515] Generating symbol file drivers/librte_common_dpaax.so.21.2.p/librte_common_dpaax.so.21.2.symbols
[587/2515] Generating symbol file drivers/librte_common_octeontx.so.21.2.p/librte_common_octeontx.so.21.2.symbols
[588/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[589/2515] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[590/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[591/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[592/2515] Linking target lib/librte_graph.so.21.2
[593/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[594/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[595/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[596/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[597/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[598/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[599/2515] Generating rte_common_sfc_efx_mingw with a custom command
[600/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[601/2515] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[602/2515] Generating rte_common_sfc_efx_def with a custom command
[603/2515] Generating symbol file lib/librte_ethdev.so.21.2.p/librte_ethdev.so.21.2.symbols
[604/2515] Generating symbol file lib/librte_security.so.21.2.p/librte_security.so.21.2.symbols
[605/2515] Generating symbol file drivers/librte_common_cpt.so.21.2.p/librte_common_cpt.so.21.2.symbols
[606/2515] Linking target lib/librte_eventdev.so.21.2
[607/2515] Linking target lib/librte_metrics.so.21.2
[608/2515] Linking target lib/librte_gro.so.21.2
[609/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[610/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[611/2515] Linking target lib/librte_gso.so.21.2
[612/2515] Linking target lib/librte_ip_frag.so.21.2
[613/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[614/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[615/2515] Linking target lib/librte_kni.so.21.2
[616/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[617/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[618/2515] Generating symbol file lib/librte_graph.so.21.2.p/librte_graph.so.21.2.symbols
[619/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[620/2515] Linking target lib/librte_pdump.so.21.2
[621/2515] Linking target lib/librte_power.so.21.2
[622/2515] Linking target lib/librte_ipsec.so.21.2
[623/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[624/2515] Linking target lib/librte_bpf.so.21.2
[625/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[626/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[627/2515] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[628/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[629/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[630/2515] Generating rte_bus_dpaa_mingw with a custom command
[631/2515] Linking static target drivers/libtmp_rte_common_iavf.a
[632/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[633/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[634/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[635/2515] Generating rte_bus_dpaa_def with a custom command
[636/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[637/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[638/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[639/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[640/2515] Generating symbol file lib/librte_eventdev.so.21.2.p/librte_eventdev.so.21.2.symbols
[641/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[642/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[643/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[644/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[645/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[646/2515] Generating symbol file lib/librte_metrics.so.21.2.p/librte_metrics.so.21.2.symbols
[647/2515] Generating rte_bus_fslmc_mingw with a custom command
[648/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[649/2515] Generating rte_bus_fslmc_def with a custom command
[650/2515] Generating rte_common_iavf.pmd.c with a custom command
[651/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[652/2515] Generating rte_bus_ifpga_def with a custom command
[653/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[654/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[655/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[656/2515] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[657/2515] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[658/2515] Compiling C object drivers/librte_common_iavf.so.21.2.p/meson-generated_.._rte_common_iavf.pmd.c.o
[659/2515] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[660/2515] Linking target lib/librte_bitratestats.so.21.2
[661/2515] Linking static target drivers/librte_common_iavf.a
[662/2515] Generating rte_bus_ifpga_mingw with a custom command
[663/2515] Generating symbol file lib/librte_gso.so.21.2.p/librte_gso.so.21.2.symbols
[664/2515] Linking target lib/librte_latencystats.so.21.2
[665/2515] Generating symbol file lib/librte_kni.so.21.2.p/librte_kni.so.21.2.symbols
[666/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[667/2515] Generating symbol file lib/librte_ip_frag.so.21.2.p/librte_ip_frag.so.21.2.symbols
[668/2515] Generating rte_bus_pci_def with a custom command
[669/2515] Generating rte_bus_pci_mingw with a custom command
[670/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[671/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[672/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[673/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[674/2515] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[675/2515] Linking target lib/librte_port.so.21.2
[676/2515] Generating rte_bus_vdev_def with a custom command
[677/2515] Generating rte_bus_vdev_mingw with a custom command
[678/2515] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[679/2515] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[680/2515] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[681/2515] Generating rte_bus_vmbus_def with a custom command
[682/2515] Generating rte_common_sfc_efx.pmd.c with a custom command
[683/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[684/2515] Generating rte_bus_vmbus_mingw with a custom command
[685/2515] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[686/2515] Linking static target drivers/librte_common_sfc_efx.a
[687/2515] Compiling C object drivers/librte_common_sfc_efx.so.21.2.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[688/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[689/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[690/2515] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[691/2515] Linking static target drivers/libtmp_rte_bus_ifpga.a
[692/2515] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[693/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[694/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[695/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[696/2515] Generating rte_common_qat_mingw with a custom command
[697/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[698/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[699/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[700/2515] Generating rte_mempool_bucket_mingw with a custom command
[701/2515] Generating rte_common_qat_def with a custom command
[702/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[703/2515] Generating rte_mempool_bucket_def with a custom command
[704/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[705/2515] Generating rte_mempool_dpaa_mingw with a custom command
[706/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[707/2515] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[708/2515] Generating rte_mempool_dpaa_def with a custom command
[709/2515] Generating rte_mempool_dpaa2_def with a custom command
[710/2515] Generating rte_mempool_dpaa2_mingw with a custom command
[711/2515] Linking static target drivers/libtmp_rte_bus_vdev.a
[712/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[713/2515] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[714/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[715/2515] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[716/2515] Linking static target drivers/libtmp_rte_bus_vmbus.a
[717/2515] Generating rte_mempool_octeontx_def with a custom command
[718/2515] Generating rte_bus_ifpga.pmd.c with a custom command
[719/2515] Generating rte_crypto_octeontx_mingw with a custom command
[720/2515] Generating rte_mempool_octeontx_mingw with a custom command
[721/2515] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[722/2515] Linking static target drivers/librte_bus_ifpga.a
[723/2515] Linking target drivers/librte_common_octeontx2.so.21.2
[724/2515] Compiling C object drivers/librte_bus_ifpga.so.21.2.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[725/2515] Generating rte_mempool_octeontx2_def with a custom command
[726/2515] Generating symbol file lib/librte_port.so.21.2.p/librte_port.so.21.2.symbols
[727/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[728/2515] Generating rte_mempool_octeontx2_mingw with a custom command
[729/2515] Generating rte_mempool_ring_def with a custom command
[730/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[731/2515] Generating rte_mempool_ring_mingw with a custom command
[732/2515] Generating rte_mempool_stack_def with a custom command
[733/2515] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[734/2515] Linking target lib/librte_table.so.21.2
[735/2515] Generating rte_mempool_stack_mingw with a custom command
[736/2515] Generating rte_bus_vdev.pmd.c with a custom command
[737/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[738/2515] Generating rte_net_af_packet_def with a custom command
[739/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[740/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[741/2515] Generating rte_bus_vmbus.pmd.c with a custom command
[742/2515] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[743/2515] Linking target drivers/librte_common_iavf.so.21.2
[744/2515] Compiling C object drivers/librte_bus_vdev.so.21.2.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[745/2515] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[746/2515] Generating rte_net_af_packet_mingw with a custom command
[747/2515] Linking static target drivers/librte_bus_vmbus.a
[748/2515] Linking static target drivers/librte_bus_vdev.a
[749/2515] Compiling C object drivers/librte_bus_vmbus.so.21.2.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[750/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[751/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[752/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[753/2515] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[754/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[755/2515] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[756/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[757/2515] Linking static target drivers/libtmp_rte_bus_pci.a
[758/2515] Generating symbol file drivers/librte_common_octeontx2.so.21.2.p/librte_common_octeontx2.so.21.2.symbols
[759/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[760/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[761/2515] Generating rte_net_ark_def with a custom command
[762/2515] Generating rte_net_ark_mingw with a custom command
[763/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[764/2515] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[765/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[766/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[767/2515] Generating symbol file lib/librte_table.so.21.2.p/librte_table.so.21.2.symbols
[768/2515] Generating rte_net_atlantic_mingw with a custom command
[769/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[770/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[771/2515] Generating symbol file drivers/librte_common_iavf.so.21.2.p/librte_common_iavf.so.21.2.symbols
[772/2515] Linking target drivers/librte_bus_ifpga.so.21.2
[773/2515] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[774/2515] Linking target lib/librte_flow_classify.so.21.2
[775/2515] Generating rte_net_atlantic_def with a custom command
[776/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[777/2515] Linking static target drivers/libtmp_rte_bus_fslmc.a
[778/2515] Generating rte_bus_pci.pmd.c with a custom command
[779/2515] Generating rte_net_avp_def with a custom command
[780/2515] Generating rte_net_avp_mingw with a custom command
[781/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[782/2515] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[783/2515] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[784/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[785/2515] Linking static target drivers/librte_bus_pci.a
[786/2515] Compiling C object drivers/librte_bus_pci.so.21.2.p/meson-generated_.._rte_bus_pci.pmd.c.o
[787/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[788/2515] Linking target drivers/librte_bus_vmbus.so.21.2
[789/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[790/2515] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[791/2515] Generating rte_net_axgbe_def with a custom command
[792/2515] Linking target drivers/librte_bus_vdev.so.21.2
[793/2515] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[794/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[795/2515] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[796/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[797/2515] Linking static target drivers/libtmp_rte_mempool_stack.a
[798/2515] Generating rte_net_axgbe_mingw with a custom command
[799/2515] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[800/2515] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[801/2515] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[802/2515] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[803/2515] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[804/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[805/2515] Generating rte_bus_fslmc.pmd.c with a custom command
[806/2515] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[807/2515] Compiling C object drivers/librte_bus_fslmc.so.21.2.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[808/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[809/2515] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[810/2515] Linking static target drivers/librte_bus_fslmc.a
[811/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[812/2515] Generating rte_mempool_octeontx.pmd.c with a custom command
[813/2515] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[814/2515] Generating rte_mempool_stack.pmd.c with a custom command
[815/2515] Linking static target drivers/librte_mempool_octeontx.a
[816/2515] Compiling C object drivers/librte_mempool_octeontx.so.21.2.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[817/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[818/2515] Generating rte_mempool_dpaa2.pmd.c with a custom command
[819/2515] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[820/2515] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[821/2515] Compiling C object drivers/librte_mempool_stack.so.21.2.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[822/2515] Linking static target drivers/librte_mempool_stack.a
[823/2515] Compiling C object drivers/librte_mempool_dpaa2.so.21.2.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[824/2515] Linking static target drivers/librte_mempool_dpaa2.a
[825/2515] Generating rte_mempool_dpaa.pmd.c with a custom command
[826/2515] Generating symbol file drivers/librte_bus_vmbus.so.21.2.p/librte_bus_vmbus.so.21.2.symbols
[827/2515] Generating rte_mempool_octeontx2.pmd.c with a custom command
[828/2515] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[829/2515] Compiling C object drivers/librte_mempool_dpaa.so.21.2.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[830/2515] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[831/2515] Linking static target drivers/librte_mempool_dpaa.a
[832/2515] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[833/2515] Compiling C object drivers/librte_mempool_octeontx2.so.21.2.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[834/2515] Linking static target drivers/librte_mempool_octeontx2.a
[835/2515] Generating symbol file drivers/librte_bus_vdev.so.21.2.p/librte_bus_vdev.so.21.2.symbols
[836/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[837/2515] Linking target drivers/librte_bus_pci.so.21.2
[838/2515] Generating rte_net_bond_mingw with a custom command
[839/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[840/2515] Generating rte_net_bond_def with a custom command
[841/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[842/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[843/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[844/2515] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[845/2515] Linking static target drivers/libtmp_rte_mempool_ring.a
[846/2515] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[847/2515] Linking static target drivers/libtmp_rte_net_ark.a
[848/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[849/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[850/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[851/2515] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[852/2515] Generating rte_net_bnx2x_def with a custom command
[853/2515] Generating rte_net_bnx2x_mingw with a custom command
[854/2515] Generating symbol file drivers/librte_bus_pci.so.21.2.p/librte_bus_pci.so.21.2.symbols
[855/2515] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[856/2515] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[857/2515] Linking static target drivers/libtmp_rte_net_af_packet.a
[858/2515] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[859/2515] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[860/2515] Generating rte_mempool_ring.pmd.c with a custom command
[861/2515] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[862/2515] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[863/2515] Linking target drivers/librte_mempool_octeontx.so.21.2
[864/2515] Linking target drivers/librte_mempool_stack.so.21.2
[865/2515] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[866/2515] Linking static target drivers/librte_mempool_ring.a
[867/2515] Linking static target drivers/libtmp_rte_bus_dpaa.a
[868/2515] Linking target drivers/librte_mempool_octeontx2.so.21.2
[869/2515] Compiling C object drivers/librte_mempool_ring.so.21.2.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[870/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[871/2515] Generating rte_net_ark.pmd.c with a custom command
[872/2515] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[873/2515] Linking static target drivers/librte_net_ark.a
[874/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[875/2515] Compiling C object drivers/librte_net_ark.so.21.2.p/meson-generated_.._rte_net_ark.pmd.c.o
[876/2515] Generating rte_net_af_packet.pmd.c with a custom command
[877/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[878/2515] Compiling C object drivers/librte_net_af_packet.so.21.2.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[879/2515] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[880/2515] Linking static target drivers/librte_net_af_packet.a
[881/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[882/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[883/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[884/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[885/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[886/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[887/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[888/2515] Generating rte_bus_dpaa.pmd.c with a custom command
[889/2515] Generating symbol file drivers/librte_mempool_octeontx.so.21.2.p/librte_mempool_octeontx.so.21.2.symbols
[890/2515] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[891/2515] Compiling C object drivers/librte_bus_dpaa.so.21.2.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[892/2515] Linking static target drivers/librte_bus_dpaa.a
[893/2515] Generating symbol file drivers/librte_mempool_octeontx2.so.21.2.p/librte_mempool_octeontx2.so.21.2.symbols
[894/2515] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[895/2515] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[896/2515] Linking static target drivers/libtmp_rte_net_atlantic.a
[897/2515] Linking target drivers/librte_mempool_ring.so.21.2
[898/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[899/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[900/2515] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[901/2515] Linking target drivers/librte_net_ark.so.21.2
[902/2515] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[903/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[904/2515] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[905/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[906/2515] Linking target drivers/librte_net_af_packet.so.21.2
[907/2515] Linking static target drivers/libtmp_rte_net_axgbe.a
[908/2515] Generating rte_net_atlantic.pmd.c with a custom command
[909/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[910/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[911/2515] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[912/2515] Linking static target drivers/librte_net_atlantic.a
[913/2515] Compiling C object drivers/librte_net_atlantic.so.21.2.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[914/2515] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[915/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[916/2515] Linking static target drivers/libtmp_rte_mempool_bucket.a
[917/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[918/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[919/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[920/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[921/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[922/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[923/2515] Generating rte_net_axgbe.pmd.c with a custom command
[924/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[925/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[926/2515] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[927/2515] Compiling C object drivers/librte_net_axgbe.so.21.2.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[928/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[929/2515] Generating rte_mempool_bucket.pmd.c with a custom command
[930/2515] Linking static target drivers/librte_net_axgbe.a
[931/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[932/2515] Compiling C object drivers/librte_mempool_bucket.so.21.2.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[933/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[934/2515] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[935/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[936/2515] Linking static target drivers/librte_mempool_bucket.a
[937/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[938/2515] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[939/2515] Linking static target drivers/libtmp_rte_common_qat.a
[940/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[941/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[942/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[943/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[944/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[945/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[946/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[947/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[948/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[949/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[950/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[951/2515] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[952/2515] Linking target drivers/librte_net_atlantic.so.21.2
[953/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[954/2515] Generating rte_common_qat.pmd.c with a custom command
[955/2515] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[956/2515] Linking static target drivers/librte_common_qat.a
[957/2515] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[958/2515] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[959/2515] Compiling C object drivers/librte_common_qat.so.21.2.p/meson-generated_.._rte_common_qat.pmd.c.o
[960/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[961/2515] Linking target drivers/librte_bus_fslmc.so.21.2
[962/2515] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[963/2515] Linking target drivers/librte_net_axgbe.so.21.2
[964/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[965/2515] Linking target drivers/librte_mempool_bucket.so.21.2
[966/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[967/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[968/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[969/2515] Generating rte_net_bnxt_mingw with a custom command
[970/2515] Generating rte_net_bnxt_def with a custom command
[971/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[972/2515] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[973/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[974/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[975/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[976/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[977/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[978/2515] Linking target drivers/librte_common_qat.so.21.2
[979/2515] Generating symbol file drivers/librte_bus_fslmc.so.21.2.p/librte_bus_fslmc.so.21.2.symbols
[980/2515] Linking target drivers/librte_mempool_dpaa2.so.21.2
[981/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[982/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[983/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[984/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[985/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[986/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[987/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[988/2515] Generating rte_net_cxgbe_mingw with a custom command
[989/2515] Generating rte_net_cxgbe_def with a custom command
[990/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[991/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[992/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[993/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[994/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[995/2515] Generating rte_net_dpaa_def with a custom command
[996/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[997/2515] Generating rte_net_dpaa_mingw with a custom command
[998/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[999/2515] Generating symbol file drivers/librte_mempool_dpaa2.so.21.2.p/librte_mempool_dpaa2.so.21.2.symbols
[1000/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[1001/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1002/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1003/2515] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1004/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1005/2515] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[1006/2515] Linking static target lib/librte_node.a
[1007/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[1008/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[1009/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1010/2515] Linking target drivers/librte_common_sfc_efx.so.21.2
[1011/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1012/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1013/2515] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1014/2515] Generating rte_net_dpaa2_def with a custom command
[1015/2515] Linking static target drivers/libtmp_rte_net_bond.a
[1016/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1017/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1018/2515] Generating rte_net_dpaa2_mingw with a custom command
[1019/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1020/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1021/2515] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[1022/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1023/2515] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1024/2515] Linking static target drivers/libtmp_rte_net_avp.a
[1025/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1026/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1027/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1028/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1029/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1030/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1031/2515] Linking target drivers/librte_bus_dpaa.so.21.2
[1032/2515] Generating symbol file drivers/librte_common_sfc_efx.so.21.2.p/librte_common_sfc_efx.so.21.2.symbols
[1033/2515] Generating rte_net_bond.pmd.c with a custom command
[1034/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1035/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1036/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1037/2515] Compiling C object drivers/librte_net_bond.so.21.2.p/meson-generated_.._rte_net_bond.pmd.c.o
[1038/2515] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1039/2515] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[1040/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1041/2515] Linking static target drivers/librte_net_bond.a
[1042/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1043/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1044/2515] Generating rte_net_avp.pmd.c with a custom command
[1045/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1046/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1047/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1048/2515] Linking target lib/librte_node.so.21.2
[1049/2515] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[1050/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1051/2515] Compiling C object drivers/librte_net_avp.so.21.2.p/meson-generated_.._rte_net_avp.pmd.c.o
[1052/2515] Linking static target drivers/librte_net_avp.a
[1053/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1054/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1055/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1056/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1057/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1058/2515] Generating rte_net_e1000_def with a custom command
[1059/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1060/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1061/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1062/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1063/2515] Generating rte_net_ena_def with a custom command
[1064/2515] Generating rte_net_ena_mingw with a custom command
[1065/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1066/2515] Generating rte_net_e1000_mingw with a custom command
[1067/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1068/2515] Generating rte_net_enetc_def with a custom command
[1069/2515] Generating rte_net_enetc_mingw with a custom command
[1070/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1071/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1072/2515] Generating symbol file drivers/librte_bus_dpaa.so.21.2.p/librte_bus_dpaa.so.21.2.symbols
[1073/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1074/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1075/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1076/2515] Linking target drivers/librte_mempool_dpaa.so.21.2
[1077/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1078/2515] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1079/2515] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1080/2515] Generating rte_net_enic_def with a custom command
[1081/2515] Linking target drivers/librte_net_bond.so.21.2
[1082/2515] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1083/2515] Generating rte_net_enic_mingw with a custom command
[1084/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1085/2515] Linking target drivers/librte_net_avp.so.21.2
[1086/2515] Generating symbol file drivers/librte_mempool_dpaa.so.21.2.p/librte_mempool_dpaa.so.21.2.symbols
[1087/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1088/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1089/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1090/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1091/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1092/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1093/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1094/2515] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1095/2515] Generating rte_net_failsafe_def with a custom command
[1096/2515] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1097/2515] Generating rte_net_failsafe_mingw with a custom command
[1098/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1099/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1100/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1101/2515] Compiling C object drivers/net/enic/libenic_avx2_lib.a.p/enic_rxtx_vec_avx2.c.o
[1102/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1103/2515] Linking static target drivers/net/enic/libenic_avx2_lib.a
[1104/2515] Generating rte_net_fm10k_def with a custom command
[1105/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1106/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1107/2515] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1108/2515] Generating rte_net_fm10k_mingw with a custom command
[1109/2515] Linking static target drivers/libtmp_rte_net_bnxt.a
[1110/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1111/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1112/2515] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1113/2515] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1114/2515] Linking static target drivers/net/e1000/base/libe1000_base.a
[1115/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1116/2515] Linking static target drivers/libtmp_rte_net_enetc.a
[1117/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1118/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1119/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1120/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1121/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1122/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1123/2515] Generating rte_net_enetc.pmd.c with a custom command
[1124/2515] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1125/2515] Linking static target drivers/librte_net_enetc.a
[1126/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1127/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1128/2515] Compiling C object drivers/librte_net_enetc.so.21.2.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1129/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1130/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1131/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1132/2515] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1133/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1134/2515] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1135/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1136/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1137/2515] Generating rte_net_i40e_def with a custom command
[1138/2515] Generating rte_net_i40e_mingw with a custom command
[1139/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1140/2515] Generating rte_net_bnxt.pmd.c with a custom command
[1141/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1142/2515] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1143/2515] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1144/2515] Compiling C object drivers/librte_net_bnxt.so.21.2.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1145/2515] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1146/2515] Linking static target drivers/librte_net_bnxt.a
[1147/2515] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1148/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1149/2515] Linking target drivers/librte_net_enetc.so.21.2
[1150/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1151/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1152/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1153/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1154/2515] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1155/2515] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1156/2515] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1157/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1158/2515] Linking static target drivers/libtmp_rte_net_dpaa.a
[1159/2515] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1160/2515] Linking static target drivers/libtmp_rte_net_e1000.a
[1161/2515] Generating rte_net_cxgbe.pmd.c with a custom command
[1162/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1163/2515] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1164/2515] Compiling C object drivers/librte_net_cxgbe.so.21.2.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1165/2515] Linking static target drivers/librte_net_cxgbe.a
[1166/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1167/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1168/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1169/2515] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1170/2515] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1171/2515] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1172/2515] Generating rte_net_dpaa.pmd.c with a custom command
[1173/2515] Linking static target drivers/libtmp_rte_net_ena.a
[1174/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1175/2515] Linking static target drivers/libtmp_rte_net_enic.a
[1176/2515] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1177/2515] Compiling C object drivers/librte_net_dpaa.so.21.2.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1178/2515] Linking static target drivers/librte_net_dpaa.a
[1179/2515] Generating rte_net_bnx2x.pmd.c with a custom command
[1180/2515] Generating rte_net_e1000.pmd.c with a custom command
[1181/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1182/2515] Linking target drivers/librte_net_bnxt.so.21.2
[1183/2515] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1184/2515] Generating rte_net_hinic_def with a custom command
[1185/2515] Compiling C object drivers/librte_net_bnx2x.so.21.2.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1186/2515] Compiling C object drivers/librte_net_e1000.so.21.2.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1187/2515] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1188/2515] Linking static target drivers/librte_net_bnx2x.a
[1189/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1190/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1191/2515] Generating rte_net_hinic_mingw with a custom command
[1192/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1193/2515] Linking static target drivers/librte_net_e1000.a
[1194/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1195/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1196/2515] Generating rte_net_ena.pmd.c with a custom command
[1197/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1198/2515] Compiling C object drivers/librte_net_ena.so.21.2.p/meson-generated_.._rte_net_ena.pmd.c.o
[1199/2515] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1200/2515] Linking static target drivers/librte_net_ena.a
[1201/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1202/2515] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1203/2515] Generating rte_net_enic.pmd.c with a custom command
[1204/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1205/2515] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1206/2515] Compiling C object drivers/net/i40e/libi40e_avx2_lib.a.p/i40e_rxtx_vec_avx2.c.o
[1207/2515] Compiling C object drivers/librte_net_enic.so.21.2.p/meson-generated_.._rte_net_enic.pmd.c.o
[1208/2515] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1209/2515] Linking target drivers/librte_net_cxgbe.so.21.2
[1210/2515] Linking static target drivers/librte_net_enic.a
[1211/2515] Linking static target drivers/net/i40e/libi40e_avx2_lib.a
[1212/2515] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1213/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1214/2515] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1215/2515] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1216/2515] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1217/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1218/2515] Generating rte_net_hns3_def with a custom command
[1219/2515] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1220/2515] Generating rte_net_hns3_mingw with a custom command
[1221/2515] Linking target drivers/librte_net_bnx2x.so.21.2
[1222/2515] Linking target drivers/librte_net_dpaa.so.21.2
[1223/2515] Linking target drivers/librte_net_e1000.so.21.2
[1224/2515] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1225/2515] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1226/2515] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1227/2515] Linking static target drivers/libtmp_rte_net_fm10k.a
[1228/2515] Linking static target drivers/net/hinic/base/libhinic_base.a
[1229/2515] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1230/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1231/2515] Linking target drivers/librte_net_ena.so.21.2
[1232/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1233/2515] Generating rte_net_fm10k.pmd.c with a custom command
[1234/2515] Generating rte_net_iavf_def with a custom command
[1235/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1236/2515] Compiling C object drivers/librte_net_fm10k.so.21.2.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1237/2515] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1238/2515] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1239/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1240/2515] Generating rte_net_iavf_mingw with a custom command
[1241/2515] Linking static target drivers/librte_net_fm10k.a
[1242/2515] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1243/2515] Linking target drivers/librte_net_enic.so.21.2
[1244/2515] Generating symbol file drivers/librte_net_dpaa.so.21.2.p/librte_net_dpaa.so.21.2.symbols
[1245/2515] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1246/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1247/2515] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1248/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1249/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1250/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1251/2515] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1252/2515] Linking static target drivers/net/i40e/base/libi40e_base.a
[1253/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1254/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1255/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1256/2515] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1257/2515] Generating rte_net_dpaa2.pmd.c with a custom command
[1258/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1259/2515] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1260/2515] Compiling C object drivers/librte_net_dpaa2.so.21.2.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1261/2515] Linking static target drivers/librte_net_dpaa2.a
[1262/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1263/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1264/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1265/2515] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1266/2515] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1267/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1268/2515] Linking target drivers/librte_net_fm10k.so.21.2
[1269/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1270/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1271/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1272/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1273/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1274/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1275/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1276/2515] Generating rte_net_ice_def with a custom command
[1277/2515] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1278/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1279/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1280/2515] Generating rte_net_ice_mingw with a custom command
[1281/2515] Linking target drivers/librte_net_dpaa2.so.21.2
[1282/2515] Compiling C object drivers/net/iavf/libiavf_avx2_lib.a.p/iavf_rxtx_vec_avx2.c.o
[1283/2515] Linking static target drivers/net/iavf/libiavf_avx2_lib.a
[1284/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1285/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1286/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1287/2515] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1288/2515] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1289/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1290/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1291/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1292/2515] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1293/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1294/2515] Generating rte_net_igc_def with a custom command
[1295/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1296/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1297/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1298/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1299/2515] Generating rte_net_igc_mingw with a custom command
[1300/2515] Generating symbol file drivers/librte_net_dpaa2.so.21.2.p/librte_net_dpaa2.so.21.2.symbols
[1301/2515] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1302/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1303/2515] Linking static target drivers/libtmp_rte_net_hinic.a
[1304/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1305/2515] Generating rte_net_ionic_def with a custom command
[1306/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1307/2515] Compiling C object drivers/net/ice/libice_avx2_lib.a.p/ice_rxtx_vec_avx2.c.o
[1308/2515] Generating rte_net_ionic_mingw with a custom command
[1309/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1310/2515] Linking static target drivers/net/ice/libice_avx2_lib.a
[1311/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1312/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1313/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1314/2515] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1315/2515] Linking static target drivers/net/ice/libice_avx512_lib.a
[1316/2515] Generating rte_net_hinic.pmd.c with a custom command
[1317/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1318/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1319/2515] Compiling C object drivers/librte_net_hinic.so.21.2.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1320/2515] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1321/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1322/2515] Linking static target drivers/librte_net_hinic.a
[1323/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1324/2515] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1325/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1326/2515] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1327/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1328/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1329/2515] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1330/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1331/2515] Linking static target drivers/net/igc/base/libigc_base.a
[1332/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1333/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1334/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1335/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1336/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1337/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1338/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1339/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1340/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1341/2515] Generating rte_net_ixgbe_def with a custom command
[1342/2515] Generating rte_net_ixgbe_mingw with a custom command
[1343/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1344/2515] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1345/2515] Generating rte_net_kni_mingw with a custom command
[1346/2515] Generating rte_net_kni_def with a custom command
[1347/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1348/2515] Linking target drivers/librte_net_hinic.so.21.2
[1349/2515] Generating rte_net_liquidio_mingw with a custom command
[1350/2515] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1351/2515] Generating rte_net_liquidio_def with a custom command
[1352/2515] Generating rte_net_memif_def with a custom command
[1353/2515] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1354/2515] Linking static target drivers/libtmp_rte_net_hns3.a
[1355/2515] Generating rte_net_memif_mingw with a custom command
[1356/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1357/2515] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1358/2515] Linking static target drivers/libtmp_rte_net_i40e.a
[1359/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1360/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1361/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1362/2515] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1363/2515] Linking static target drivers/libtmp_rte_net_iavf.a
[1364/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1365/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1366/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1367/2515] Generating rte_net_netvsc_def with a custom command
[1368/2515] Generating rte_net_netvsc_mingw with a custom command
[1369/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1370/2515] Generating rte_net_hns3.pmd.c with a custom command
[1371/2515] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1372/2515] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1373/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1374/2515] Compiling C object drivers/librte_net_hns3.so.21.2.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1375/2515] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1376/2515] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1377/2515] Linking static target drivers/libtmp_rte_net_kni.a
[1378/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1379/2515] Linking static target drivers/librte_net_hns3.a
[1380/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1381/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1382/2515] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1383/2515] Generating rte_net_iavf.pmd.c with a custom command
[1384/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1385/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1386/2515] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1387/2515] Compiling C object drivers/librte_net_iavf.so.21.2.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1388/2515] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1389/2515] Linking static target drivers/librte_net_iavf.a
[1390/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1391/2515] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1392/2515] Linking static target drivers/libtmp_rte_net_igc.a
[1393/2515] Generating rte_net_nfp_def with a custom command
[1394/2515] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1395/2515] Generating rte_net_i40e.pmd.c with a custom command
[1396/2515] Linking static target drivers/libtmp_rte_net_ionic.a
[1397/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1398/2515] Generating rte_net_nfp_mingw with a custom command
[1399/2515] Generating rte_net_kni.pmd.c with a custom command
[1400/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1401/2515] Compiling C object drivers/librte_net_i40e.so.21.2.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1402/2515] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1403/2515] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1404/2515] Compiling C object drivers/librte_net_kni.so.21.2.p/meson-generated_.._rte_net_kni.pmd.c.o
[1405/2515] Linking static target drivers/librte_net_kni.a
[1406/2515] Linking static target drivers/librte_net_i40e.a
[1407/2515] Generating rte_net_null_mingw with a custom command
[1408/2515] Generating rte_net_null_def with a custom command
[1409/2515] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1410/2515] Generating rte_net_igc.pmd.c with a custom command
[1411/2515] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1412/2515] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1413/2515] Compiling C object drivers/librte_net_igc.so.21.2.p/meson-generated_.._rte_net_igc.pmd.c.o
[1414/2515] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1415/2515] Linking static target drivers/librte_net_igc.a
[1416/2515] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1417/2515] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1418/2515] Generating rte_net_ionic.pmd.c with a custom command
[1419/2515] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1420/2515] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1421/2515] Linking static target drivers/librte_net_ionic.a
[1422/2515] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1423/2515] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1424/2515] Linking static target drivers/libtmp_rte_net_failsafe.a
[1425/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1426/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1427/2515] Linking target drivers/librte_net_hns3.so.21.2
[1428/2515] Compiling C object drivers/librte_net_ionic.so.21.2.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1429/2515] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1430/2515] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1431/2515] Generating rte_net_octeontx_def with a custom command
[1432/2515] Generating rte_net_octeontx_mingw with a custom command
[1433/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1434/2515] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1435/2515] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1436/2515] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1437/2515] Linking target drivers/librte_net_iavf.so.21.2
[1438/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1439/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1440/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1441/2515] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1442/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1443/2515] Generating rte_net_failsafe.pmd.c with a custom command
[1444/2515] Linking target drivers/librte_net_kni.so.21.2
[1445/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1446/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1447/2515] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1448/2515] Compiling C object drivers/librte_net_failsafe.so.21.2.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1449/2515] Linking static target drivers/librte_net_failsafe.a
[1450/2515] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1451/2515] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1452/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1453/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1454/2515] Linking static target drivers/libtmp_rte_net_liquidio.a
[1455/2515] Linking target drivers/librte_net_igc.so.21.2
[1456/2515] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1457/2515] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1458/2515] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1459/2515] Linking static target drivers/libtmp_rte_net_ice.a
[1460/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1461/2515] Linking target drivers/librte_net_ionic.so.21.2
[1462/2515] Linking target drivers/librte_net_i40e.so.21.2
[1463/2515] Generating rte_net_octeontx2_def with a custom command
[1464/2515] Generating rte_net_octeontx2_mingw with a custom command
[1465/2515] Generating rte_net_liquidio.pmd.c with a custom command
[1466/2515] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1467/2515] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1468/2515] Linking static target drivers/librte_net_liquidio.a
[1469/2515] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1470/2515] Linking static target drivers/libtmp_rte_net_memif.a
[1471/2515] Compiling C object drivers/librte_net_liquidio.so.21.2.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1472/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1473/2515] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1474/2515] Linking target drivers/librte_net_failsafe.so.21.2
[1475/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1476/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1477/2515] Generating rte_net_octeontx_ep_def with a custom command
[1478/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1479/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1480/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1481/2515] Generating rte_net_octeontx_ep_mingw with a custom command
[1482/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1483/2515] Generating rte_net_memif.pmd.c with a custom command
[1484/2515] Generating rte_net_ice.pmd.c with a custom command
[1485/2515] Generating rte_net_pcap_def with a custom command
[1486/2515] Generating rte_net_pcap_mingw with a custom command
[1487/2515] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1488/2515] Compiling C object drivers/librte_net_memif.so.21.2.p/meson-generated_.._rte_net_memif.pmd.c.o
[1489/2515] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1490/2515] Compiling C object drivers/librte_net_ice.so.21.2.p/meson-generated_.._rte_net_ice.pmd.c.o
[1491/2515] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1492/2515] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1493/2515] Linking static target drivers/librte_net_memif.a
[1494/2515] Generating rte_net_pfe_def with a custom command
[1495/2515] Generating rte_net_pfe_mingw with a custom command
[1496/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1497/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1498/2515] Linking target drivers/librte_net_liquidio.so.21.2
[1499/2515] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1500/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1501/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1502/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1503/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1504/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1505/2515] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1506/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1507/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1508/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1509/2515] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1510/2515] Linking static target drivers/libtmp_rte_net_octeontx.a
[1511/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1512/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1513/2515] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1514/2515] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1515/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1516/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1517/2515] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1518/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1519/2515] Linking target drivers/librte_net_memif.so.21.2
[1520/2515] Linking static target drivers/net/ice/base/libice_base.a
[1521/2515] Generating rte_net_octeontx.pmd.c with a custom command
[1522/2515] Generating rte_net_qede_def with a custom command
[1523/2515] Linking static target drivers/librte_net_ice.a
[1524/2515] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1525/2515] Generating rte_net_qede_mingw with a custom command
[1526/2515] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1527/2515] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1528/2515] Compiling C object drivers/librte_net_octeontx.so.21.2.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1529/2515] Linking static target drivers/libtmp_rte_net_null.a
[1530/2515] Linking static target drivers/librte_net_octeontx.a
[1531/2515] Generating rte_net_ring_mingw with a custom command
[1532/2515] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1533/2515] Generating rte_net_ring_def with a custom command
[1534/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1535/2515] Linking static target drivers/libtmp_rte_net_netvsc.a
[1536/2515] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1537/2515] Linking static target drivers/libtmp_rte_net_nfp.a
[1538/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1539/2515] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1540/2515] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1541/2515] Generating rte_net_null.pmd.c with a custom command
[1542/2515] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1543/2515] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1544/2515] Compiling C object drivers/librte_net_null.so.21.2.p/meson-generated_.._rte_net_null.pmd.c.o
[1545/2515] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1546/2515] Linking static target drivers/librte_net_null.a
[1547/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1548/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1549/2515] Generating rte_net_netvsc.pmd.c with a custom command
[1550/2515] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1551/2515] Linking static target drivers/librte_net_netvsc.a
[1552/2515] Generating rte_net_nfp.pmd.c with a custom command
[1553/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1554/2515] Compiling C object drivers/librte_net_netvsc.so.21.2.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1555/2515] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1556/2515] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1557/2515] Linking static target drivers/librte_net_nfp.a
[1558/2515] Compiling C object drivers/librte_net_nfp.so.21.2.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1559/2515] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1560/2515] Linking static target drivers/libtmp_rte_net_pfe.a
[1561/2515] Compiling C object drivers/librte_net_octeontx_ep.so.21.2.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1562/2515] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1563/2515] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1564/2515] Linking static target drivers/librte_net_octeontx_ep.a
[1565/2515] Linking target drivers/librte_net_octeontx.so.21.2
[1566/2515] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1567/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1568/2515] Generating rte_net_pfe.pmd.c with a custom command
[1569/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1570/2515] Linking target drivers/librte_net_ice.so.21.2
[1571/2515] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1572/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1573/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1574/2515] Linking static target drivers/librte_net_pfe.a
[1575/2515] Compiling C object drivers/librte_net_pfe.so.21.2.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1576/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1577/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1578/2515] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1579/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1580/2515] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1581/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1582/2515] Linking target drivers/librte_net_null.so.21.2
[1583/2515] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1584/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1585/2515] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1586/2515] Linking target drivers/librte_net_netvsc.so.21.2
[1587/2515] Linking target drivers/librte_net_nfp.so.21.2
[1588/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1589/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1590/2515] Linking target drivers/librte_net_octeontx_ep.so.21.2
[1591/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1592/2515] Generating symbol file drivers/librte_net_octeontx.so.21.2.p/librte_net_octeontx.so.21.2.symbols
[1593/2515] Generating rte_net_sfc_def with a custom command
[1594/2515] Generating rte_net_sfc_mingw with a custom command
[1595/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1596/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1597/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1598/2515] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1599/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1600/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1601/2515] Linking target drivers/librte_net_pfe.so.21.2
[1602/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1603/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1604/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1605/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1606/2515] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1607/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1608/2515] Generating rte_net_softnic_mingw with a custom command
[1609/2515] Linking static target drivers/libtmp_rte_net_ring.a
[1610/2515] Generating rte_net_softnic_def with a custom command
[1611/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1612/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1613/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1614/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1615/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1616/2515] Generating rte_net_tap_def with a custom command
[1617/2515] Generating rte_net_tap_mingw with a custom command
[1618/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1619/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1620/2515] Generating rte_net_ring.pmd.c with a custom command
[1621/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1622/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1623/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1624/2515] Compiling C object drivers/librte_net_ring.so.21.2.p/meson-generated_.._rte_net_ring.pmd.c.o
[1625/2515] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1626/2515] Linking static target drivers/librte_net_ring.a
[1627/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1628/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1629/2515] Generating rte_net_thunderx_def with a custom command
[1630/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1631/2515] Generating rte_net_thunderx_mingw with a custom command
[1632/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1633/2515] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1634/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1635/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1636/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1637/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1638/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1639/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1640/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1641/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1642/2515] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1643/2515] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1644/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1645/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1646/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1647/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1648/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1649/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1650/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[1651/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1652/2515] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1653/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1654/2515] Generating rte_net_txgbe_def with a custom command
[1655/2515] Generating rte_net_txgbe_mingw with a custom command
[1656/2515] Generating rte_net_vdev_netvsc_def with a custom command
[1657/2515] Generating rte_net_vdev_netvsc_mingw with a custom command
[1658/2515] Linking target drivers/librte_net_ring.so.21.2
[1659/2515] Generating rte_net_vhost_mingw with a custom command
[1660/2515] Generating rte_net_vhost_def with a custom command
[1661/2515] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1662/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1663/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1664/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1665/2515] Generating rte_net_ixgbe.pmd.c with a custom command
[1666/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1667/2515] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1668/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1669/2515] Compiling C object drivers/librte_net_ixgbe.so.21.2.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1670/2515] Linking static target drivers/librte_net_ixgbe.a
[1671/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1672/2515] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1673/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1674/2515] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1675/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1676/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1677/2515] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1678/2515] Generating rte_net_virtio_mingw with a custom command
[1679/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1680/2515] Generating rte_net_virtio_def with a custom command
[1681/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1682/2515] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1683/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1684/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1685/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1686/2515] Generating rte_net_vmxnet3_mingw with a custom command
[1687/2515] Linking static target drivers/net/qede/base/libqede_base.a
[1688/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1689/2515] Generating rte_net_vmxnet3_def with a custom command
[1690/2515] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1691/2515] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1692/2515] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1693/2515] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1694/2515] Generating rte_raw_dpaa2_qdma_def with a custom command
[1695/2515] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1696/2515] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1697/2515] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1698/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1699/2515] Generating rte_raw_ioat_def with a custom command
[1700/2515] Generating rte_raw_ioat_mingw with a custom command
[1701/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1702/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1703/2515] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1704/2515] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1705/2515] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1706/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1707/2515] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1708/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1709/2515] Linking static target drivers/libtmp_rte_net_qede.a
[1710/2515] Generating rte_raw_ntb_def with a custom command
[1711/2515] Generating rte_raw_ntb_mingw with a custom command
[1712/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1713/2515] Linking target drivers/librte_net_ixgbe.so.21.2
[1714/2515] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1715/2515] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1716/2515] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1717/2515] Generating rte_raw_octeontx2_dma_def with a custom command
[1718/2515] Linking static target drivers/libtmp_rte_net_pcap.a
[1719/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1720/2515] Compiling C object drivers/librte_net_vdev_netvsc.so.21.2.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1721/2515] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1722/2515] Linking static target drivers/librte_net_vdev_netvsc.a
[1723/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1724/2515] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1725/2515] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1726/2515] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1727/2515] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1728/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1729/2515] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1730/2515] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.2.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1731/2515] Generating rte_raw_octeontx2_ep_def with a custom command
[1732/2515] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1733/2515] Generating rte_net_pcap.pmd.c with a custom command
[1734/2515] Generating rte_raw_skeleton_mingw with a custom command
[1735/2515] Generating rte_net_qede.pmd.c with a custom command
[1736/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1737/2515] Compiling C object drivers/librte_net_pcap.so.21.2.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1738/2515] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1739/2515] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1740/2515] Compiling C object drivers/librte_net_qede.so.21.2.p/meson-generated_.._rte_net_qede.pmd.c.o
[1741/2515] Linking static target drivers/librte_net_pcap.a
[1742/2515] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1743/2515] Generating rte_raw_skeleton_def with a custom command
[1744/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1745/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[1746/2515] Linking static target drivers/libtmp_rte_net_sfc.a
[1747/2515] Linking static target drivers/librte_net_qede.a
[1748/2515] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1749/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1750/2515] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1751/2515] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1752/2515] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1753/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1754/2515] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1755/2515] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1756/2515] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1757/2515] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1758/2515] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1759/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1760/2515] Linking static target drivers/libtmp_rte_net_softnic.a
[1761/2515] Linking target drivers/librte_net_vdev_netvsc.so.21.2
[1762/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1763/2515] Linking static target drivers/libtmp_rte_net_vhost.a
[1764/2515] Generating rte_crypto_bcmfs_mingw with a custom command
[1765/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1766/2515] Generating rte_crypto_bcmfs_def with a custom command
[1767/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1768/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1769/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1770/2515] Generating rte_crypto_caam_jr_mingw with a custom command
[1771/2515] Generating rte_crypto_caam_jr_def with a custom command
[1772/2515] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1773/2515] Generating rte_crypto_dpaa_sec_def with a custom command
[1774/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1775/2515] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1776/2515] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1777/2515] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.2
[1778/2515] Generating rte_net_sfc.pmd.c with a custom command
[1779/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1780/2515] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1781/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1782/2515] Linking static target drivers/libtmp_rte_net_thunderx.a
[1783/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1784/2515] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1785/2515] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1786/2515] Generating rte_net_vhost.pmd.c with a custom command
[1787/2515] Compiling C object drivers/librte_net_sfc.so.21.2.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1788/2515] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[1789/2515] Linking target drivers/librte_net_pcap.so.21.2
[1790/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1791/2515] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1792/2515] Generating rte_crypto_dpaa2_sec_def with a custom command
[1793/2515] Linking static target drivers/librte_net_sfc.a
[1794/2515] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1795/2515] Compiling C object drivers/librte_net_vhost.so.21.2.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1796/2515] Generating rte_crypto_nitrox_def with a custom command
[1797/2515] Generating rte_net_softnic.pmd.c with a custom command
[1798/2515] Linking static target drivers/librte_net_vhost.a
[1799/2515] Generating rte_crypto_nitrox_mingw with a custom command
[1800/2515] Compiling C object drivers/librte_net_softnic.so.21.2.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1801/2515] Generating rte_crypto_null_mingw with a custom command
[1802/2515] Linking target drivers/librte_net_qede.so.21.2
[1803/2515] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1804/2515] Generating rte_crypto_null_def with a custom command
[1805/2515] Linking static target drivers/librte_net_softnic.a
[1806/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1807/2515] Generating rte_crypto_octeontx_def with a custom command
[1808/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1809/2515] Generating rte_net_thunderx.pmd.c with a custom command
[1810/2515] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1811/2515] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1812/2515] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1813/2515] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1814/2515] Compiling C object drivers/librte_net_thunderx.so.21.2.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1815/2515] Linking static target drivers/librte_net_thunderx.a
[1816/2515] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1817/2515] Generating rte_crypto_octeontx2_mingw with a custom command
[1818/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1819/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1820/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1821/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1822/2515] Generating rte_crypto_octeontx2_def with a custom command
[1823/2515] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1824/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1825/2515] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1826/2515] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1827/2515] Generating rte_raw_skeleton.pmd.c with a custom command
[1828/2515] Compiling C object drivers/librte_raw_skeleton.so.21.2.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1829/2515] Linking static target drivers/libtmp_rte_raw_ioat.a
[1830/2515] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1831/2515] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1832/2515] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1833/2515] Linking static target drivers/librte_raw_skeleton.a
[1834/2515] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1835/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1836/2515] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[1837/2515] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1838/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1839/2515] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1840/2515] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1841/2515] Generating rte_crypto_scheduler_mingw with a custom command
[1842/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1843/2515] Generating rte_crypto_scheduler_def with a custom command
[1844/2515] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1845/2515] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1846/2515] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1847/2515] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1848/2515] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1849/2515] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.2.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1850/2515] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1851/2515] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[1852/2515] Linking target drivers/librte_net_sfc.so.21.2
[1853/2515] Linking static target drivers/librte_raw_octeontx2_ep.a
[1854/2515] Generating rte_raw_ioat.pmd.c with a custom command
[1855/2515] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1856/2515] Generating rte_crypto_virtio_mingw with a custom command
[1857/2515] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1858/2515] Linking static target drivers/librte_raw_ioat.a
[1859/2515] Linking target drivers/librte_net_thunderx.so.21.2
[1860/2515] Compiling C object drivers/librte_raw_ioat.so.21.2.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1861/2515] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.2.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1862/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1863/2515] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1864/2515] Generating rte_crypto_virtio_def with a custom command
[1865/2515] Generating rte_compress_octeontx_mingw with a custom command
[1866/2515] Linking static target drivers/librte_raw_octeontx2_dma.a
[1867/2515] Generating rte_crypto_nitrox.pmd.c with a custom command
[1868/2515] Generating rte_compress_octeontx_def with a custom command
[1869/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1870/2515] Compiling C object drivers/librte_crypto_nitrox.so.21.2.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1871/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1872/2515] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1873/2515] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1874/2515] Linking static target drivers/librte_crypto_nitrox.a
[1875/2515] Generating rte_compress_zlib_mingw with a custom command
[1876/2515] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1877/2515] Generating rte_compress_zlib_def with a custom command
[1878/2515] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1879/2515] Linking static target drivers/librte_crypto_bcmfs.a
[1880/2515] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[1881/2515] Compiling C object drivers/librte_crypto_bcmfs.so.21.2.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1882/2515] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1883/2515] Linking static target drivers/libtmp_rte_net_tap.a
[1884/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1885/2515] Linking target drivers/librte_raw_skeleton.so.21.2
[1886/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1887/2515] Generating rte_regex_octeontx2_def with a custom command
[1888/2515] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1889/2515] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1890/2515] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1891/2515] Generating rte_regex_octeontx2_mingw with a custom command
[1892/2515] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[1893/2515] Linking target drivers/librte_raw_octeontx2_ep.so.21.2
[1894/2515] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[1895/2515] Generating rte_net_tap.pmd.c with a custom command
[1896/2515] Linking target drivers/librte_raw_ioat.so.21.2
[1897/2515] Compiling C object drivers/librte_net_tap.so.21.2.p/meson-generated_.._rte_net_tap.pmd.c.o
[1898/2515] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1899/2515] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[1900/2515] Linking static target drivers/librte_net_tap.a
[1901/2515] Linking target drivers/librte_raw_octeontx2_dma.so.21.2
[1902/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1903/2515] Generating rte_vdpa_ifc_def with a custom command
[1904/2515] Linking target drivers/librte_crypto_nitrox.so.21.2
[1905/2515] Generating rte_vdpa_ifc_mingw with a custom command
[1906/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1907/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1908/2515] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[1909/2515] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1910/2515] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[1911/2515] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1912/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1913/2515] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1914/2515] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.2.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1915/2515] Linking static target drivers/librte_raw_dpaa2_qdma.a
[1916/2515] Linking static target drivers/libtmp_rte_net_virtio.a
[1917/2515] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1918/2515] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1919/2515] Linking target drivers/librte_crypto_bcmfs.so.21.2
[1920/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1921/2515] Generating rte_event_dlb_mingw with a custom command
[1922/2515] Generating rte_event_dlb_def with a custom command
[1923/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1924/2515] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[1925/2515] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1926/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1927/2515] Linking static target drivers/libtmp_rte_crypto_null.a
[1928/2515] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1929/2515] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1930/2515] Generating rte_event_dlb2_def with a custom command
[1931/2515] Generating rte_event_dlb2_mingw with a custom command
[1932/2515] Generating rte_crypto_null.pmd.c with a custom command
[1933/2515] Generating rte_net_virtio.pmd.c with a custom command
[1934/2515] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1935/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1936/2515] Compiling C object drivers/librte_net_virtio.so.21.2.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1937/2515] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[1938/2515] Linking static target drivers/librte_crypto_null.a
[1939/2515] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1940/2515] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[1941/2515] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1942/2515] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1943/2515] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[1944/2515] Compiling C object drivers/librte_crypto_null.so.21.2.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1945/2515] Generating rte_event_dpaa_def with a custom command
[1946/2515] Linking static target drivers/librte_net_virtio.a
[1947/2515] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1948/2515] Linking target drivers/librte_net_tap.so.21.2
[1949/2515] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[1950/2515] Generating rte_event_dpaa_mingw with a custom command
[1951/2515] Generating rte_event_dpaa2_mingw with a custom command
[1952/2515] Generating rte_event_dpaa2_def with a custom command
[1953/2515] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1954/2515] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[1955/2515] Linking target drivers/librte_raw_dpaa2_qdma.so.21.2
[1956/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1957/2515] Linking static target drivers/libtmp_rte_crypto_virtio.a
[1958/2515] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1959/2515] Generating rte_net_vmxnet3.pmd.c with a custom command
[1960/2515] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1961/2515] Linking static target drivers/librte_net_vmxnet3.a
[1962/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1963/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1964/2515] Compiling C object drivers/librte_net_vmxnet3.so.21.2.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1965/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1966/2515] Generating rte_regex_octeontx2.pmd.c with a custom command
[1967/2515] Generating rte_crypto_virtio.pmd.c with a custom command
[1968/2515] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1969/2515] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1970/2515] Compiling C object drivers/librte_crypto_virtio.so.21.2.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1971/2515] Linking static target drivers/librte_crypto_virtio.a
[1972/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1973/2515] Linking static target drivers/librte_regex_octeontx2.a
[1974/2515] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[1975/2515] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[1976/2515] Compiling C object drivers/librte_regex_octeontx2.so.21.2.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1977/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1978/2515] Linking static target drivers/libtmp_rte_compress_zlib.a
[1979/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1980/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1981/2515] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1982/2515] Linking target drivers/librte_crypto_null.so.21.2
[1983/2515] Generating rte_event_octeontx2_mingw with a custom command
[1984/2515] Generating rte_event_octeontx2_def with a custom command
[1985/2515] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1986/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1987/2515] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1988/2515] Linking target drivers/librte_net_virtio.so.21.2
[1989/2515] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1990/2515] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1991/2515] Generating rte_compress_zlib.pmd.c with a custom command
[1992/2515] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1993/2515] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[1994/2515] Linking static target drivers/librte_compress_zlib.a
[1995/2515] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1996/2515] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1997/2515] Generating rte_vdpa_ifc.pmd.c with a custom command
[1998/2515] Linking target drivers/librte_net_vmxnet3.so.21.2
[1999/2515] Compiling C object drivers/librte_compress_zlib.so.21.2.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2000/2515] Generating rte_compress_octeontx.pmd.c with a custom command
[2001/2515] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2002/2515] Compiling C object drivers/librte_vdpa_ifc.so.21.2.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2003/2515] Compiling C object drivers/librte_compress_octeontx.so.21.2.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2004/2515] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2005/2515] Linking static target drivers/librte_vdpa_ifc.a
[2006/2515] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2007/2515] Generating rte_event_opdl_def with a custom command
[2008/2515] Generating rte_event_opdl_mingw with a custom command
[2009/2515] Linking target drivers/librte_regex_octeontx2.so.21.2
[2010/2515] Linking target drivers/librte_crypto_virtio.so.21.2
[2011/2515] Linking static target drivers/librte_compress_octeontx.a
[2012/2515] Generating rte_event_skeleton_def with a custom command
[2013/2515] Generating rte_event_skeleton_mingw with a custom command
[2014/2515] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2015/2515] Linking static target drivers/libtmp_rte_event_dpaa.a
[2016/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[2017/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2018/2515] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2019/2515] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2020/2515] Linking target drivers/librte_compress_zlib.so.21.2
[2021/2515] Generating rte_event_sw_def with a custom command
[2022/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2023/2515] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2024/2515] Generating rte_event_sw_mingw with a custom command
[2025/2515] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2026/2515] Generating rte_event_dpaa.pmd.c with a custom command
[2027/2515] Generating rte_event_dsw_mingw with a custom command
[2028/2515] Generating rte_event_dsw_def with a custom command
[2029/2515] Compiling C object drivers/librte_event_dpaa.so.21.2.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2030/2515] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2031/2515] Linking static target drivers/librte_event_dpaa.a
[2032/2515] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2033/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2034/2515] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2035/2515] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2036/2515] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2037/2515] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2038/2515] Linking target drivers/librte_compress_octeontx.so.21.2
[2039/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2040/2515] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2041/2515] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2042/2515] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2043/2515] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2044/2515] Generating rte_event_octeontx_mingw with a custom command
[2045/2515] Linking static target drivers/libtmp_rte_event_skeleton.a
[2046/2515] Generating rte_event_octeontx_def with a custom command
[2047/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2048/2515] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2049/2515] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2050/2515] Generating rte_baseband_null_def with a custom command
[2051/2515] Generating rte_event_skeleton.pmd.c with a custom command
[2052/2515] Linking static target drivers/libtmp_rte_net_txgbe.a
[2053/2515] Generating rte_event_dpaa2.pmd.c with a custom command
[2054/2515] Generating rte_baseband_null_mingw with a custom command
[2055/2515] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2056/2515] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2057/2515] Generating rte_crypto_scheduler.pmd.c with a custom command
[2058/2515] Compiling C object drivers/librte_event_dpaa2.so.21.2.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2059/2515] Linking static target drivers/librte_event_skeleton.a
[2060/2515] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2061/2515] Compiling C object drivers/librte_crypto_scheduler.so.21.2.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2062/2515] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2063/2515] Linking static target drivers/librte_event_dpaa2.a
[2064/2515] Compiling C object drivers/librte_event_skeleton.so.21.2.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2065/2515] Generating rte_baseband_turbo_sw_def with a custom command
[2066/2515] Linking static target drivers/librte_crypto_scheduler.a
[2067/2515] Generating rte_baseband_turbo_sw_mingw with a custom command
[2068/2515] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2069/2515] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2070/2515] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2071/2515] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2072/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[2073/2515] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2074/2515] Generating rte_net_txgbe.pmd.c with a custom command
[2075/2515] Generating rte_baseband_acc100_def with a custom command
[2076/2515] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2077/2515] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[2078/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2079/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2080/2515] Compiling C object drivers/librte_net_txgbe.so.21.2.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2081/2515] Linking static target drivers/libtmp_rte_raw_ntb.a
[2082/2515] Linking static target drivers/librte_net_txgbe.a
[2083/2515] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2084/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2085/2515] Generating rte_baseband_acc100_mingw with a custom command
[2086/2515] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2087/2515] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2088/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2089/2515] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2090/2515] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2091/2515] Linking target drivers/librte_event_skeleton.so.21.2
[2092/2515] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2093/2515] Generating rte_raw_ntb.pmd.c with a custom command
[2094/2515] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2095/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2096/2515] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2097/2515] Linking static target drivers/librte_raw_ntb.a
[2098/2515] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2099/2515] Compiling C object drivers/librte_raw_ntb.so.21.2.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2100/2515] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2101/2515] Linking target drivers/librte_crypto_scheduler.so.21.2
[2102/2515] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2103/2515] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[2104/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2105/2515] Linking static target drivers/libtmp_rte_event_dlb.a
[2106/2515] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2107/2515] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2108/2515] Compiling C object drivers/librte_crypto_caam_jr.so.21.2.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2109/2515] Linking target drivers/librte_net_txgbe.so.21.2
[2110/2515] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2111/2515] Linking static target drivers/librte_crypto_caam_jr.a
[2112/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2113/2515] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2114/2515] Generating rte_event_dlb.pmd.c with a custom command
[2115/2515] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2116/2515] Linking target drivers/librte_raw_ntb.so.21.2
[2117/2515] Linking static target drivers/librte_event_dlb.a
[2118/2515] Compiling C object drivers/librte_event_dlb.so.21.2.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2119/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2120/2515] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2121/2515] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2122/2515] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2123/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2124/2515] Linking static target drivers/libtmp_rte_event_dlb2.a
[2125/2515] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2126/2515] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2127/2515] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2128/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2129/2515] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2130/2515] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2131/2515] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2132/2515] Linking static target drivers/libtmp_rte_baseband_null.a
[2133/2515] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2134/2515] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2135/2515] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2136/2515] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2137/2515] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2138/2515] Generating rte_event_dlb2.pmd.c with a custom command
[2139/2515] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2140/2515] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2141/2515] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2142/2515] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2143/2515] Compiling C object drivers/librte_event_dlb2.so.21.2.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2144/2515] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2145/2515] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2146/2515] Linking target drivers/librte_event_dlb.so.21.2
[2147/2515] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2148/2515] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2149/2515] Linking target drivers/librte_crypto_caam_jr.so.21.2
[2150/2515] Linking static target drivers/librte_event_dlb2.a
[2151/2515] Generating rte_baseband_null.pmd.c with a custom command
[2152/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2153/2515] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2154/2515] Compiling C object drivers/librte_baseband_null.so.21.2.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2155/2515] Linking static target drivers/librte_baseband_null.a
[2156/2515] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2157/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2158/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2159/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2160/2515] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2161/2515] Linking static target drivers/libtmp_rte_event_octeontx.a
[2162/2515] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2163/2515] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2164/2515] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2165/2515] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2166/2515] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.2
[2167/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2168/2515] Linking static target drivers/libtmp_rte_event_sw.a
[2169/2515] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2170/2515] Linking target drivers/librte_event_dlb2.so.21.2
[2171/2515] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.2
[2172/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2173/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2174/2515] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2175/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2176/2515] Linking target drivers/librte_baseband_null.so.21.2
[2177/2515] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2178/2515] Generating rte_event_octeontx.pmd.c with a custom command
[2179/2515] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2180/2515] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2181/2515] Compiling C object drivers/librte_event_octeontx.so.21.2.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2182/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2183/2515] Linking static target drivers/librte_event_octeontx.a
[2184/2515] Generating rte_event_sw.pmd.c with a custom command
[2185/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2186/2515] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2187/2515] Compiling C object drivers/librte_event_sw.so.21.2.p/meson-generated_.._rte_event_sw.pmd.c.o
[2188/2515] Linking static target drivers/librte_event_sw.a
[2189/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2190/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2191/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2192/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2193/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2194/2515] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2195/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2196/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2197/2515] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2198/2515] Compiling C object drivers/librte_baseband_turbo_sw.so.21.2.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2199/2515] Linking static target drivers/librte_baseband_turbo_sw.a
[2200/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2201/2515] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2202/2515] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2203/2515] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2204/2515] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2205/2515] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2206/2515] Linking target drivers/librte_event_sw.so.21.2
[2207/2515] Linking static target drivers/libtmp_rte_event_dsw.a
[2208/2515] Linking target drivers/librte_event_octeontx.so.21.2
[2209/2515] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2210/2515] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2211/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2212/2515] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2213/2515] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2214/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2215/2515] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2216/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2217/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2218/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2219/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2220/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2221/2515] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2222/2515] Linking target drivers/librte_baseband_turbo_sw.so.21.2
[2223/2515] Generating rte_event_dsw.pmd.c with a custom command
[2224/2515] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2225/2515] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2226/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2227/2515] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2228/2515] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2229/2515] Linking static target drivers/librte_crypto_dpaa_sec.a
[2230/2515] Compiling C object drivers/librte_event_dsw.so.21.2.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2231/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2232/2515] Linking static target drivers/librte_event_dsw.a
[2233/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2234/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2235/2515] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2236/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2237/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2238/2515] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2239/2515] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2240/2515] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2241/2515] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2242/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2243/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2244/2515] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2245/2515] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2246/2515] Linking target drivers/librte_event_dsw.so.21.2
[2247/2515] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2248/2515] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2249/2515] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2250/2515] Linking target drivers/librte_crypto_dpaa_sec.so.21.2
[2251/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2252/2515] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2253/2515] Compiling C object app/test/dpdk-test.p/test.c.o
[2254/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2255/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2256/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2257/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2258/2515] Linking target drivers/librte_crypto_dpaa2_sec.so.21.2
[2259/2515] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2260/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2261/2515] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2262/2515] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2263/2515] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2264/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2265/2515] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2266/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2267/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2268/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2269/2515] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2270/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2271/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2272/2515] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2273/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2274/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2275/2515] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2276/2515] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.2.p/librte_crypto_dpaa_sec.so.21.2.symbols
[2277/2515] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2278/2515] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2279/2515] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2280/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2281/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2282/2515] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2283/2515] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2284/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2285/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2286/2515] Linking target drivers/librte_event_dpaa.so.21.2
[2287/2515] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2288/2515] Compiling C object drivers/librte_crypto_octeontx2.so.21.2.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2289/2515] Linking static target drivers/librte_crypto_octeontx2.a
[2290/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2291/2515] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.2.p/librte_crypto_dpaa2_sec.so.21.2.symbols
[2292/2515] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2293/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2294/2515] Generating rte_baseband_acc100.pmd.c with a custom command
[2295/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2296/2515] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2297/2515] Linking target drivers/librte_event_dpaa2.so.21.2
[2298/2515] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2299/2515] Compiling C object drivers/librte_baseband_acc100.so.21.2.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2300/2515] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2301/2515] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2302/2515] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2303/2515] Linking static target drivers/librte_baseband_acc100.a
[2304/2515] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2305/2515] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2306/2515] Compiling C object app/test/dpdk-test.p/commands.c.o
[2307/2515] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2308/2515] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2309/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2310/2515] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2311/2515] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2312/2515] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2313/2515] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2314/2515] Generating rte_crypto_octeontx.pmd.c with a custom command
[2315/2515] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2316/2515] Linking static target drivers/librte_crypto_octeontx.a
[2317/2515] Generating rte_net_octeontx2.pmd.c with a custom command
[2318/2515] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2319/2515] Compiling C object drivers/librte_net_octeontx2.so.21.2.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2320/2515] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2321/2515] Compiling C object drivers/librte_crypto_octeontx.so.21.2.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2322/2515] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2323/2515] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2324/2515] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2325/2515] Linking static target drivers/librte_net_octeontx2.a
[2326/2515] Linking target drivers/librte_crypto_octeontx2.so.21.2
[2327/2515] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2328/2515] Linking target drivers/librte_baseband_acc100.so.21.2
[2329/2515] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2330/2515] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2331/2515] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2332/2515] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2333/2515] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2334/2515] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2335/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2336/2515] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2337/2515] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2338/2515] Generating symbol file drivers/librte_crypto_octeontx2.so.21.2.p/librte_crypto_octeontx2.so.21.2.symbols
[2339/2515] Linking target drivers/librte_crypto_octeontx.so.21.2
[2340/2515] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2341/2515] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2342/2515] Linking target drivers/librte_net_octeontx2.so.21.2
[2343/2515] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2344/2515] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2345/2515] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2346/2515] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2347/2515] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2348/2515] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2349/2515] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2350/2515] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2351/2515] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2352/2515] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2353/2515] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2354/2515] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2355/2515] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2356/2515] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2357/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2358/2515] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2359/2515] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2360/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2361/2515] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2362/2515] Generating symbol file drivers/librte_net_octeontx2.so.21.2.p/librte_net_octeontx2.so.21.2.symbols
[2363/2515] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2364/2515] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2365/2515] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2366/2515] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2367/2515] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2368/2515] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2369/2515] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2370/2515] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2371/2515] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2372/2515] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2373/2515] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2374/2515] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2375/2515] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2376/2515] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2377/2515] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2378/2515] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2379/2515] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2380/2515] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2381/2515] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2382/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2383/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2384/2515] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2385/2515] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2386/2515] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2387/2515] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2388/2515] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2389/2515] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2390/2515] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2391/2515] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2392/2515] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2393/2515] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2394/2515] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2395/2515] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2396/2515] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2397/2515] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2398/2515] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2399/2515] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2400/2515] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2401/2515] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2402/2515] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2403/2515] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2404/2515] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2405/2515] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2406/2515] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2407/2515] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2408/2515] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2409/2515] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2410/2515] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2411/2515] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2412/2515] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2413/2515] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2414/2515] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2415/2515] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2416/2515] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2417/2515] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2418/2515] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2419/2515] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2420/2515] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2421/2515] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2422/2515] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2423/2515] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2424/2515] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2425/2515] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2426/2515] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2427/2515] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2428/2515] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2429/2515] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2430/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2431/2515] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2432/2515] Generating igb_uio_makefile with a custom command
[2433/2515] Generating rte_kni_makefile with a custom command
[2434/2515] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2435/2515] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2436/2515] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2437/2515] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2438/2515] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2439/2515] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2440/2515] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2441/2515] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2442/2515] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2443/2515] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2444/2515] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2445/2515] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2446/2515] Linking static target drivers/libtmp_rte_event_opdl.a
[2447/2515] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2448/2515] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2449/2515] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2450/2515] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2451/2515] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2452/2515] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2453/2515] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2454/2515] Generating rte_event_opdl.pmd.c with a custom command
[2455/2515] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2456/2515] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2457/2515] Compiling C object drivers/librte_event_opdl.so.21.2.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2458/2515] Linking static target drivers/librte_event_opdl.a
[2459/2515] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2460/2515] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2461/2515] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2462/2515] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2463/2515] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2464/2515] Linking target drivers/librte_event_opdl.so.21.2
[2465/2515] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2466/2515] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2467/2515] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2468/2515] Generating igb_uio with a custom command
make: Entering directory '/usr/src/linux-headers-5.8.0-45-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  MODPOST /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/Module.symvers
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
make: Leaving directory '/usr/src/linux-headers-5.8.0-45-generic'
[2469/2515] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2470/2515] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2471/2515] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2472/2515] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.8.0-45-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  MODPOST /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/Module.symvers
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/linux-headers-5.8.0-45-generic'
[2473/2515] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2474/2515] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2475/2515] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2476/2515] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2477/2515] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2478/2515] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2479/2515] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2480/2515] Linking static target lib/librte_pipeline.a
[2481/2515] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2482/2515] Linking target lib/librte_pipeline.so.21.2
[2483/2515] Generating symbol file lib/librte_pipeline.so.21.2.p/librte_pipeline.so.21.2.symbols
[2484/2515] Linking target drivers/librte_net_softnic.so.21.2
[2485/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2486/2515] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2487/2515] Linking static target lib/librte_vhost.a
[2488/2515] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2489/2515] Linking target lib/librte_vhost.so.21.2
[2490/2515] Generating symbol file lib/librte_vhost.so.21.2.p/librte_vhost.so.21.2.symbols
[2491/2515] Linking target drivers/librte_net_vhost.so.21.2
[2492/2515] Linking target drivers/librte_vdpa_ifc.so.21.2
[2493/2515] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2494/2515] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2495/2515] Generating rte_event_octeontx2.pmd.c with a custom command
[2496/2515] Compiling C object drivers/librte_event_octeontx2.so.21.2.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2497/2515] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2498/2515] Linking static target drivers/librte_event_octeontx2.a
[2499/2515] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2500/2515] Linking target drivers/librte_event_octeontx2.so.21.2
[2501/2515] Linking target app/dpdk-test-pipeline
[2502/2515] Linking target app/dpdk-test-sad
[2503/2515] Linking target app/dpdk-test-bbdev
[2504/2515] Linking target app/dpdk-test-crypto-perf
[2505/2515] Linking target app/dpdk-test-flow-perf
[2506/2515] Linking target app/dpdk-test-compress-perf
[2507/2515] Linking target app/dpdk-test-fib
[2508/2515] Linking target app/dpdk-test-acl
[2509/2515] Linking target app/dpdk-test-cmdline
[2510/2515] Linking target app/dpdk-test-eventdev
[2511/2515] Linking target app/dpdk-proc-info
[2512/2515] Linking target app/dpdk-pdump
[2513/2515] Linking target app/dpdk-testpmd
[2514/2515] Linking target app/dpdk-test-regex
[2515/2515] Linking target app/test/dpdk-test
21/03/2021 15:46:11             dut.10.240.183.145: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
21/03/2021 15:46:12             dut.10.240.183.145: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
21/03/2021 15:46:12             dut.10.240.183.145: mkdir -p x86_64-native-linuxapp-gcc/kmod
21/03/2021 15:46:12             dut.10.240.183.145: 
21/03/2021 15:46:12             dut.10.240.183.145: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
21/03/2021 15:46:12             dut.10.240.183.145: 
21/03/2021 15:46:12             dut.10.240.183.145: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
21/03/2021 15:46:12             dut.10.240.183.145: 
21/03/2021 15:46:12                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Begin
21/03/2021 15:46:12             dut.10.240.183.145: 
21/03/2021 15:46:12                         tester: 
21/03/2021 15:46:12             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr='[(2):ipv4,(3):ipv6,(4):tcp]' --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=16 --txq=16 --portmask=0x1 --nb-cores=2
21/03/2021 15:46:13             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_14083715632454029154 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_9650020059043628631 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_5834898419192060287 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_3329241103606731501 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_2241739598088019191 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_15925873456162205203 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_2471667402254581549 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_15755471677436813151 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_6192525341103640801 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_10513374520938126034 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_200952600403903388 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_4054914437746449831 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_17200452214961378417 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_18096710293072002690 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_11109112488760910246 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_846422195134380889 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_13236614097887198808 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_14742149221671078965 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_14663345104530566661 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_4634174601927030405 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_10183126429310401192 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_315395061717391068 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_8443588254910823591 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_9352320245658269572 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_6838566466404050829 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_852893976735146887 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_14190451958668345848 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_17807375743632421872 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_16949076028741616868 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_2155760869457311060 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_11403266817323519391 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_8487042224168726202 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_16581642915711043403 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_5734287983239870659 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_16186806592173069834 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_11494377614109010517 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_1575930388913165992 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_16291389196001759420 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_3342085980525431464 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_3528582735713065391 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_15505849304825469684 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_12425492948088001767 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_11390932890977304443 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_15159865051206311384 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_10881902548004917276 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_6583087730842265952 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_780079100871217910 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_10301134635716828434 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_18352596159304353295 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_11054318520813109526 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_14237824954167409760 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_3538655211829694739 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_3151037072076802550 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_14348677454707877143 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_4824316078511409986 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_252640294280018145 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_4866835262348266815 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_14362109864362937857 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_7791440929153613473 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_9847280058408300074 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_4676642885335584104 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_11266721813373932061 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_10805783495501715668 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_15898628943200527770 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_11761200471823958522 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_3713022933403032148 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_18180304927931319798 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_9934397577027776506 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_4352265501766838977 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_15944100984031503487 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_10554568302413579635 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_8999122190806770852 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_7142436069455729541 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_6052572446383281936 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_3400196822200478824 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_9128719575896216873 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_12024499847185266377 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_1159586459276618717 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_12942336134807869619 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_15980937666539571136 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_15923221449655599326 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_10528532021276471017 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_1124216906546977984 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_7615773994858811439 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_12219715569226519904 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_14861996427602411397 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_399364340307889667 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_17840449777517515940 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_4932828077754880982 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_9177158911974918348 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_4994456308632506479 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_12274567221494778499 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_11809707112523474337 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_7963641043374651157 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_4867975015992417167 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_16913547383170433858 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_9564241890197543880 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_6328075363151109234 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_17606439626142639352 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_10480838134062763627 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_13159153349071241277 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_2149408029495179075 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_9059060920622944320 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_1278240027876709861 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_8924770002325541628 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_10948891651738926911 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_11475754952555618401 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_9268786028597506918 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_8496176751991022217 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_2058179595883058806 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_8519943157188959469 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_16925165792916508367 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_12261590239898379659 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_11900695024505150805 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_10929886706777056342 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_6122885212879264329 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_786681157027858411 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_10118399710568753076 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_9106971596343143296 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_6631585678415405416 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_17454761798040930514 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_1412091510155744422 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_9213943135129896539 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_4660608604999356333 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11899105877796524535 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_11060215981575669474 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_2895767038668142809 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_1484229176327129615 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_16270263658720051043 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_9354166054669417460 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_17323792466399080283 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_7219280433479468408 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 2 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 18
ice_program_hw_rx_queue(): currently package doesn't support RXDID (18)
ice_rx_queue_start(): fail to program RX queue 2
ice_dev_start(): fail to start Rx queue 2
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:46:23                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Result FAILED: 'rxdid value error, expected rxdid is RXDID : 19'
21/03/2021 15:46:23             dut.10.240.183.145: quit
21/03/2021 15:46:24             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_9650020059043628631 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_5834898419192060287 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_3329241103606731501 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_2241739598088019191 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_15925873456162205203 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_2471667402254581549 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_15755471677436813151 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_6192525341103640801 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_10513374520938126034 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_200952600403903388 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_4054914437746449831 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_17200452214961378417 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_18096710293072002690 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_11109112488760910246 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_846422195134380889 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_13236614097887198808 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_14742149221671078965 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_14663345104530566661 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_4634174601927030405 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_10183126429310401192 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_315395061717391068 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_8443588254910823591 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_9352320245658269572 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_6838566466404050829 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_852893976735146887 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_14190451958668345848 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_17807375743632421872 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_16949076028741616868 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_2155760869457311060 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_11403266817323519391 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_8487042224168726202 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_16581642915711043403 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_14083715632454029154 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_16186806592173069834 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_11494377614109010517 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_1575930388913165992 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_16291389196001759420 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_3342085980525431464 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_3528582735713065391 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_15505849304825469684 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_12425492948088001767 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_11390932890977304443 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_15159865051206311384 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_10881902548004917276 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_6583087730842265952 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_780079100871217910 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_10301134635716828434 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_18352596159304353295 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_11054318520813109526 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_14237824954167409760 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_3538655211829694739 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_3151037072076802550 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_14348677454707877143 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_4824316078511409986 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_252640294280018145 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_4866835262348266815 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_14362109864362937857 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_7791440929153613473 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_9847280058408300074 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_4676642885335584104 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_11266721813373932061 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_10805783495501715668 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_15898628943200527770 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_11761200471823958522 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_3713022933403032148 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_5734287983239870659 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_9934397577027776506 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_4352265501766838977 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_15944100984031503487 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_10554568302413579635 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_8999122190806770852 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_7142436069455729541 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_6052572446383281936 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_3400196822200478824 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_9128719575896216873 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_12024499847185266377 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_1159586459276618717 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_12942336134807869619 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_15980937666539571136 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_15923221449655599326 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_10528532021276471017 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_1124216906546977984 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_7615773994858811439 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_12219715569226519904 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_14861996427602411397 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_399364340307889667 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_17840449777517515940 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_4932828077754880982 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_9177158911974918348 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_4994456308632506479 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_12274567221494778499 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_11809707112523474337 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_7963641043374651157 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_4867975015992417167 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_16913547383170433858 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_9564241890197543880 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_6328075363151109234 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_17606439626142639352 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_18180304927931319798 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_13159153349071241277 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_2149408029495179075 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_9059060920622944320 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_1278240027876709861 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_8924770002325541628 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_10948891651738926911 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_11475754952555618401 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_9268786028597506918 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_8496176751991022217 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_2058179595883058806 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_8519943157188959469 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_16925165792916508367 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_12261590239898379659 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_11900695024505150805 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_10929886706777056342 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_6122885212879264329 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_786681157027858411 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_10118399710568753076 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_9106971596343143296 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_6631585678415405416 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_17454761798040930514 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_1412091510155744422 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_9213943135129896539 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_4660608604999356333 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11899105877796524535 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_11060215981575669474 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_2895767038668142809 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_1484229176327129615 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_16270263658720051043 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_9354166054669417460 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_17323792466399080283 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_7219280433479468408 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_10480838134062763627 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:46:26             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:46:26                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
21/03/2021 15:46:26             dut.10.240.183.145: 
21/03/2021 15:46:27                         tester: 
21/03/2021 15:46:27             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ipv4 --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:46:28             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_12717464946287264282 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_15830662119435117352 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_3254928689576971072 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_1507829596714900036 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_2183982926881686968 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_5754322975646399140 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_12081405140168952437 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_3717164278317915958 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_14891742914833135348 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_15807554140798850904 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_8041216364977091145 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_15095019528923543595 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_6248700894634248172 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_12374258049030652677 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_11942505002060427243 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_6021099001507326415 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_5368775337332167314 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_5030284340684328544 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_13716099922099782265 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_15304353471336732794 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_5093960412482178142 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_16836259098880391402 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_9394831612197255377 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_12158792093170668213 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_2383467337690460870 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_8097214664575322400 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_13838310405902576364 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_5862034761169376380 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_13447372871241195906 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_8321298698295844631 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_17409176991373521486 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_875501689975398728 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_18113919918853097577 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_15543635786411253429 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_8675654188005686703 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_906352162509354527 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_7661888924678772886 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_17594348849479045925 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_249987794368677756 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_16900746686815300042 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_3654014861827350569 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_14847158619457930826 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_13550850581051832997 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_5615579172433206157 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_18127870793949779104 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_4974783300520688649 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_7276822974717719709 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_5545115249681554625 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_4343634903797623517 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_14411081750103973058 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_3533087554880803902 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_3058408718091462693 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_13998864121011396128 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_12980281222960721310 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_17431077653693804380 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_18189480326963583011 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_8281894267367376080 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_15549129834811577469 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_7936252445716010176 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_11897492874637349792 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_195237410697833769 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_11834687578708496318 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_7045721924734744156 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_11055823725365335113 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_694400484775905681 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_14897964899399718284 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_6809254614462825180 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_7210584530944087958 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_3880257567569611192 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_10486500462468417985 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_5759482018294340185 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_14421767207167677599 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_11621345077347670791 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_7474695192525934982 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_13352308608650397489 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_7299192726132803241 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_17915211819979516376 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_11337236877768068255 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_7773529882534526472 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_6634443412527866862 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_15811124670217363076 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_14769905846061238477 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_6202022185218097119 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_15977278235203095438 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_5863721107471590395 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_6331044441972497652 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_13096690900908625481 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_6078721356412080383 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_4621048337062821239 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_6910412258491237413 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_16237281876683761703 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_7948448005014139388 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_11176025613983291108 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_7649971979686959311 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_9638267483298183722 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_799751205754348689 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_7942242695945881278 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_10598393098841252906 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14854282345130064547 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_14425394277756033739 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_15470290423131259720 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_5987392768496563012 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_6875936715901502065 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_2292515526116456124 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_16480771126158010140 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_2986359626927254133 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_14653105804987890315 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_5692860490079769949 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_15407898235969145833 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_4486834781122383584 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_16183118805916523738 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_14453934161272452617 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_16259442758643269450 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12371064655010760560 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_13567839701641672259 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_13169890645576246057 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_2538693513341800791 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_11419556920916888446 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_6197920553247096028 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_446070103632847163 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_18276859810083226013 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_8233261871040354717 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_2025770651833871267 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_3808860784540867925 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_13365772196511989288 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_1814426808953431168 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_14490640238611170304 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_4848654035448206991 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_13156576625538127377 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_5454036824668697817 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_3181954329015896558 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_12942231264747736691 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 2 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 18
ice_program_hw_rx_queue(): currently package doesn't support RXDID (18)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:46:38             dut.10.240.183.145: set verbose 1
21/03/2021 15:46:38             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:46:38             dut.10.240.183.145: set fwd io
21/03/2021 15:46:38             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:46:38             dut.10.240.183.145: set promisc all off
21/03/2021 15:46:38             dut.10.240.183.145: 
21/03/2021 15:46:38             dut.10.240.183.145: clear port stats all
21/03/2021 15:46:38             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:46:38             dut.10.240.183.145: start
21/03/2021 15:46:38             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:46:42             dut.10.240.183.145: 
21/03/2021 15:46:42                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Result FAILED: 'There are no related fields in the received IPV4 packet'
21/03/2021 15:46:42             dut.10.240.183.145: quit
21/03/2021 15:46:43             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_15830662119435117352 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_3254928689576971072 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_1507829596714900036 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_2183982926881686968 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_5754322975646399140 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_12081405140168952437 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_3717164278317915958 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_14891742914833135348 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_15807554140798850904 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_8041216364977091145 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_15095019528923543595 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_6248700894634248172 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_12374258049030652677 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_11942505002060427243 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_6021099001507326415 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_5368775337332167314 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_5030284340684328544 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_13716099922099782265 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_15304353471336732794 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_5093960412482178142 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_16836259098880391402 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_9394831612197255377 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_12158792093170668213 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_2383467337690460870 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_8097214664575322400 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_13838310405902576364 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_5862034761169376380 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_13447372871241195906 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_8321298698295844631 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_17409176991373521486 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_875501689975398728 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_18113919918853097577 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_12717464946287264282 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_8675654188005686703 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_906352162509354527 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_7661888924678772886 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_17594348849479045925 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_249987794368677756 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_16900746686815300042 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_3654014861827350569 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_14847158619457930826 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_13550850581051832997 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_5615579172433206157 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_18127870793949779104 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_4974783300520688649 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_7276822974717719709 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_5545115249681554625 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_4343634903797623517 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_14411081750103973058 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_3533087554880803902 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_3058408718091462693 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_13998864121011396128 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_12980281222960721310 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_17431077653693804380 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_18189480326963583011 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_8281894267367376080 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_15549129834811577469 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_7936252445716010176 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_11897492874637349792 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_195237410697833769 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_11834687578708496318 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_7045721924734744156 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_11055823725365335113 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_694400484775905681 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_14897964899399718284 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_15543635786411253429 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_7210584530944087958 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_3880257567569611192 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_10486500462468417985 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_5759482018294340185 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_14421767207167677599 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_11621345077347670791 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_7474695192525934982 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_13352308608650397489 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_7299192726132803241 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_17915211819979516376 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_11337236877768068255 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_7773529882534526472 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_6634443412527866862 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_15811124670217363076 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_14769905846061238477 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_6202022185218097119 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_15977278235203095438 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_5863721107471590395 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_6331044441972497652 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_13096690900908625481 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_6078721356412080383 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_4621048337062821239 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_6910412258491237413 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_16237281876683761703 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_7948448005014139388 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_11176025613983291108 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_7649971979686959311 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_9638267483298183722 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_799751205754348689 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_7942242695945881278 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_10598393098841252906 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14854282345130064547 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_6809254614462825180 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_15470290423131259720 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_5987392768496563012 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_6875936715901502065 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_2292515526116456124 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_16480771126158010140 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_2986359626927254133 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_14653105804987890315 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_5692860490079769949 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_15407898235969145833 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_4486834781122383584 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_16183118805916523738 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_14453934161272452617 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_16259442758643269450 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12371064655010760560 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_13567839701641672259 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_13169890645576246057 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_2538693513341800791 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_11419556920916888446 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_6197920553247096028 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_446070103632847163 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_18276859810083226013 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_8233261871040354717 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_2025770651833871267 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_3808860784540867925 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_13365772196511989288 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_1814426808953431168 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_14490640238611170304 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_4848654035448206991 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_13156576625538127377 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_5454036824668697817 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_3181954329015896558 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_12942231264747736691 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_14425394277756033739 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:46:45             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:46:45                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
21/03/2021 15:46:45             dut.10.240.183.145: 
21/03/2021 15:46:45                         tester: 
21/03/2021 15:46:45             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ipv6 --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:46:46             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_347568567950754294 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_6250075767490649162 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_17354726847994555966 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_11671173230025158149 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_2715087115457816515 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_17487320859995340767 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_16269349511370768695 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_14552154187315022282 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_2924080758600716365 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_14257931229974197428 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_11870305658540680066 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_10301000604490469284 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_15393772690229337272 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_10015908697322968836 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_1500263371626080677 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_2148524025904222166 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_2045280942328671619 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_17358568153349480362 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_18101617704123561373 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_1666218225374424509 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_2434514303924672484 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_9278124500279931205 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_16279376709973677639 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_3412994669828559983 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_820602941432784091 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_241191564025991280 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_8731743579067126115 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_6900324161647728298 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_8832604959720950218 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_6025125475939625422 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_4153824276180607787 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_12420814222369738030 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_17691443334495867529 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_5109705562429544199 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_8635877870200429396 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_17649240531297522433 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_16539034662352617410 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_5795015400986812713 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_596266578938178662 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_13769804191558793112 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_7065877171675362151 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_14651423145113969927 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_13747802621458254550 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_6671436588853674342 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_4467493497600768947 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_4325197625396883460 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_15211361402732756563 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_7389688643848998896 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_4883418604789359642 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_1816860004201105906 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_5192473299678153611 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_11696953006205318052 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_10985833273203161342 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_201464593173825910 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_10884416773915628577 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_5645768509770249617 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_276177518788093038 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_6231098683772064746 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_10372538592448526015 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_12679054371587143433 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_766060226338415509 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_5487712603856455340 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_13447099622692140666 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_17388164412710522645 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_13685077212407811747 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_795187792180620937 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_9762649759505821241 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_11199321002064383884 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_17263743844302303162 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_12330514087576429888 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_9830788349484477088 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_9354922860868869681 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_6870337401798807320 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_651438877415725277 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_3530556367451404657 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_13807971998827323514 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_4470664657761650087 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_7942470041370376875 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_1727518849166377121 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_12078807733616945839 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_13797685409541045470 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_1215044507972429544 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_9854260940487231754 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_12731532911359900502 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_6110804353392734750 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_10077233234058821712 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_6353004852417596092 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_13348278944916041582 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_7459418851284849319 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10833698865623970884 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_9962422930146515827 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_15638463467070940377 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_12117314186273271086 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_13226011732312221498 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_10636688994338700946 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_7424545477765974565 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_16094986182474297854 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_8485169306806685064 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14668661188036807721 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_1525451188022042731 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_13097491645117443965 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_14058151218433595016 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_18150411893063414222 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_12647396091912673354 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_12588560498354508213 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_18189074317034795554 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_3489005632660630549 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_5944585471792988104 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_16839978567512668083 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_4687435214625814659 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_5818918128563216065 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_1999704577118238369 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_3527959000072571848 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_3059293971079464022 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_15941640112778656276 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_14557662742748837023 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_10272367303519908674 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_3126982710051815472 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_5848199953203231857 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_13747497561956065846 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_13094884508378720413 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_15934833677237040691 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_13409833502720699130 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_13351532480878452402 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_2777687013427283993 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_16171649684062730332 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_6385725840795958266 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_11862354922289882439 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_974612234875846213 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_16767058074227235905 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_5068607575561837357 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_6477928278326042330 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 3 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 19
ice_program_hw_rx_queue(): currently package doesn't support RXDID (19)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:46:56             dut.10.240.183.145: set verbose 1
21/03/2021 15:46:56             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:46:56             dut.10.240.183.145: set fwd io
21/03/2021 15:46:57             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:46:57             dut.10.240.183.145: set promisc all off
21/03/2021 15:46:57             dut.10.240.183.145: 
21/03/2021 15:46:57             dut.10.240.183.145: clear port stats all
21/03/2021 15:46:57             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:46:57             dut.10.240.183.145: start
21/03/2021 15:46:57             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:47:00             dut.10.240.183.145: 
21/03/2021 15:47:00                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Result FAILED: 'There are no related fields in the received IPV6 packet'
21/03/2021 15:47:00             dut.10.240.183.145: quit
21/03/2021 15:47:01             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_6250075767490649162 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_17354726847994555966 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_11671173230025158149 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_2715087115457816515 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_17487320859995340767 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_16269349511370768695 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_14552154187315022282 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_2924080758600716365 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_14257931229974197428 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_11870305658540680066 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_10301000604490469284 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_15393772690229337272 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_10015908697322968836 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_1500263371626080677 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_2148524025904222166 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_2045280942328671619 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_17358568153349480362 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_18101617704123561373 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_1666218225374424509 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_2434514303924672484 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_9278124500279931205 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_16279376709973677639 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_3412994669828559983 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_820602941432784091 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_241191564025991280 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_8731743579067126115 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_6900324161647728298 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_8832604959720950218 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_6025125475939625422 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_4153824276180607787 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_12420814222369738030 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_17691443334495867529 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_347568567950754294 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_8635877870200429396 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_17649240531297522433 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_16539034662352617410 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_5795015400986812713 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_596266578938178662 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_13769804191558793112 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_7065877171675362151 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_14651423145113969927 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_13747802621458254550 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_6671436588853674342 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_4467493497600768947 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_4325197625396883460 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_15211361402732756563 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_7389688643848998896 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_4883418604789359642 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_1816860004201105906 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_5192473299678153611 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_11696953006205318052 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_10985833273203161342 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_201464593173825910 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_10884416773915628577 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_5645768509770249617 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_276177518788093038 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_6231098683772064746 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_10372538592448526015 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_12679054371587143433 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_766060226338415509 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_5487712603856455340 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_13447099622692140666 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_17388164412710522645 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_13685077212407811747 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_795187792180620937 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_5109705562429544199 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_11199321002064383884 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_17263743844302303162 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_12330514087576429888 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_9830788349484477088 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_9354922860868869681 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_6870337401798807320 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_651438877415725277 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_3530556367451404657 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_13807971998827323514 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_4470664657761650087 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_7942470041370376875 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_1727518849166377121 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_12078807733616945839 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_13797685409541045470 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_1215044507972429544 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_9854260940487231754 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_12731532911359900502 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_6110804353392734750 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_10077233234058821712 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_6353004852417596092 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_13348278944916041582 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_7459418851284849319 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10833698865623970884 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_9962422930146515827 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_15638463467070940377 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_12117314186273271086 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_13226011732312221498 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_10636688994338700946 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_7424545477765974565 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_16094986182474297854 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_8485169306806685064 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14668661188036807721 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_9762649759505821241 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_13097491645117443965 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_14058151218433595016 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_18150411893063414222 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_12647396091912673354 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_12588560498354508213 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_18189074317034795554 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_3489005632660630549 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_5944585471792988104 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_16839978567512668083 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_4687435214625814659 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_5818918128563216065 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_1999704577118238369 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_3527959000072571848 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_3059293971079464022 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_15941640112778656276 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_14557662742748837023 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_10272367303519908674 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_3126982710051815472 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_5848199953203231857 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_13747497561956065846 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_13094884508378720413 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_15934833677237040691 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_13409833502720699130 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_13351532480878452402 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_2777687013427283993 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_16171649684062730332 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_6385725840795958266 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_11862354922289882439 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_974612234875846213 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_16767058074227235905 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_5068607575561837357 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_6477928278326042330 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_1525451188022042731 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:47:03             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:47:04                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
21/03/2021 15:47:04             dut.10.240.183.145: 
21/03/2021 15:47:04                         tester: 
21/03/2021 15:47:04             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ipv6_flow --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:47:05             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_5572372315852670428 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_8604660685617729635 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_14443523206907029291 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_15940241392256187030 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_6063784030868654004 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_15991673782285067772 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_13212001837786481468 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_6900524068353022595 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_17629855481660870305 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_16633038206771603221 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_17391581371014249839 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_12234540906947220304 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_2788658970049172288 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_12442819502805055062 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_15492798395427287607 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_12011107626842996899 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_17847458219264271490 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_14866805934914573842 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_12363256341216078617 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_8510471663794841641 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_14282536121863151893 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_11387094764211807415 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_4042730425076311176 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_11612105631399311479 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_2290958047040710709 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_15638664529495616490 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_5892960158362548963 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_14013282447941085083 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_14009242443140447187 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_6836370117913641327 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_633936463391175806 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_17910474767455616123 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_11380710480521616527 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_3452724454458389709 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_900378024467555606 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_10102475888355038952 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_3354595243084251535 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_3030921232312294108 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_11157053896271047347 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_3639343268071155999 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_5739863848194346211 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_1929657664346921933 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_10029108671834446640 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_11330208822684384611 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_10946731435182193619 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_3953704816018533505 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_7463561899876706751 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_9830475341788790967 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_6837494757780318988 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_2602503885893656488 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_5475774789131630946 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_14363533707660457345 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_5019659232540972179 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_13046107290758646028 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_4397028994011932593 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_4370733417010464054 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_10725186664639449414 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_6283085588459359592 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_11382795215740192087 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_6014322202806893186 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_3843866502495718065 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_1846816618995522008 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_14704046403348736831 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_10639450310149126658 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_17596653210879925518 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_15013258868596366568 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_18231222976826260885 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_12363412333340840043 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_13261823479911268248 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_3273483811046724920 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_16955772479095989007 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_1425809001915411767 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_4487725270616601222 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_12865166213524790368 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_9146379181125701909 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_16358515317342093522 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_8667377398106020641 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_8342494928037068543 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_2248563034899297868 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_16389186567677342249 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_142802196223891142 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_5361993319948754590 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_5033994806168142536 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_712228314443125799 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_12995156991427994143 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_13439672644599004155 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_11476329668402808862 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_13309981636537280631 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_17495178775436543389 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_12041111460258476473 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_14355088920152042612 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_11542149844099055865 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_10631221556106526271 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_9262417171541548940 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_15153509833146041716 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_1496000285971964960 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_8035200558280747479 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_8997341044536368853 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_15112326401674783295 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_8314812528805998878 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_370554363432761856 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_13086820841738853945 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_15082529921714475820 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_10040216907440829730 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_7652815243566078931 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_18019351315978767582 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_16309522085456092604 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_8864803448958187322 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_15063344796899496361 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_3363442716208790181 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_4964040804780737905 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_15866095325199846161 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_8110570218215373492 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_4743448828249280577 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_5793574731867221207 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_16720208776313560503 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_7683193065085355299 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_7044126988495580716 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_9803313917449745258 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_17682399547768914947 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_14796663781098755888 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_8904227944122917555 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_9251432427907381213 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_14981686823143362988 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_18182341882285078706 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_17636396290348232129 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_6443142386218819141 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_6711198894411230093 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_8035726121315482379 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_16114659035293701872 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_13395519033281257927 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_6837097540294405661 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 4 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 20
ice_program_hw_rx_queue(): currently package doesn't support RXDID (20)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:47:15             dut.10.240.183.145: set verbose 1
21/03/2021 15:47:15             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:47:15             dut.10.240.183.145: set fwd io
21/03/2021 15:47:15             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:47:15             dut.10.240.183.145: set promisc all off
21/03/2021 15:47:15             dut.10.240.183.145: 
21/03/2021 15:47:15             dut.10.240.183.145: clear port stats all
21/03/2021 15:47:15             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:47:15             dut.10.240.183.145: start
21/03/2021 15:47:15             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:47:19             dut.10.240.183.145: 
21/03/2021 15:47:19                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Result FAILED: 'There are no related fields in the received IPV6_flow packet'
21/03/2021 15:47:19             dut.10.240.183.145: quit
21/03/2021 15:47:20             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_8604660685617729635 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_14443523206907029291 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_15940241392256187030 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_6063784030868654004 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_15991673782285067772 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_13212001837786481468 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_6900524068353022595 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_17629855481660870305 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_16633038206771603221 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_17391581371014249839 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_12234540906947220304 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_2788658970049172288 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_12442819502805055062 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_15492798395427287607 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_12011107626842996899 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_17847458219264271490 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_14866805934914573842 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_12363256341216078617 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_8510471663794841641 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_14282536121863151893 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_11387094764211807415 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_4042730425076311176 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_11612105631399311479 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_2290958047040710709 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_15638664529495616490 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_5892960158362548963 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_14013282447941085083 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_14009242443140447187 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_6836370117913641327 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_633936463391175806 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_17910474767455616123 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_11380710480521616527 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_5572372315852670428 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_900378024467555606 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_10102475888355038952 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_3354595243084251535 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_3030921232312294108 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_11157053896271047347 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_3639343268071155999 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_5739863848194346211 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_1929657664346921933 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_10029108671834446640 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_11330208822684384611 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_10946731435182193619 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_3953704816018533505 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_7463561899876706751 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_9830475341788790967 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_6837494757780318988 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_2602503885893656488 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_5475774789131630946 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_14363533707660457345 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_5019659232540972179 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_13046107290758646028 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_4397028994011932593 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_4370733417010464054 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_10725186664639449414 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_6283085588459359592 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_11382795215740192087 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_6014322202806893186 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_3843866502495718065 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_1846816618995522008 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_14704046403348736831 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_10639450310149126658 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_17596653210879925518 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_15013258868596366568 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_3452724454458389709 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_12363412333340840043 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_13261823479911268248 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_3273483811046724920 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_16955772479095989007 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_1425809001915411767 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_4487725270616601222 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_12865166213524790368 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_9146379181125701909 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_16358515317342093522 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_8667377398106020641 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_8342494928037068543 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_2248563034899297868 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_16389186567677342249 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_142802196223891142 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_5361993319948754590 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_5033994806168142536 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_712228314443125799 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_12995156991427994143 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_13439672644599004155 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_11476329668402808862 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_13309981636537280631 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_17495178775436543389 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_12041111460258476473 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_14355088920152042612 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_11542149844099055865 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_10631221556106526271 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_9262417171541548940 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_15153509833146041716 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_1496000285971964960 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_8035200558280747479 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_8997341044536368853 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_15112326401674783295 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_18231222976826260885 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_370554363432761856 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_13086820841738853945 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_15082529921714475820 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_10040216907440829730 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_7652815243566078931 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_18019351315978767582 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_16309522085456092604 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_8864803448958187322 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_15063344796899496361 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_3363442716208790181 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_4964040804780737905 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_15866095325199846161 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_8110570218215373492 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_4743448828249280577 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_5793574731867221207 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_16720208776313560503 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_7683193065085355299 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_7044126988495580716 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_9803313917449745258 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_17682399547768914947 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_14796663781098755888 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_8904227944122917555 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_9251432427907381213 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_14981686823143362988 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_18182341882285078706 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_17636396290348232129 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_6443142386218819141 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_6711198894411230093 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_8035726121315482379 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_16114659035293701872 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_13395519033281257927 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_6837097540294405661 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_8314812528805998878 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:47:22             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:47:22                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
21/03/2021 15:47:23             dut.10.240.183.145: 
21/03/2021 15:47:23                         tester: 
21/03/2021 15:47:23             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=tcp --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:47:24             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_3956882663813013842 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_9513745155914041576 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_15123394659305406484 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_3340119752665199891 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_11460705305013425411 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_10556559389034232317 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_2703158666528224915 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_17443212069888622363 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_8359981523444185189 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_15886152220959840783 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_9787817944458774801 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_387402340739952878 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_2462891226924419850 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_10184434236811486764 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_11555504537598240821 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_3697348361866083044 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_14236423315956634497 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_7170312928055209177 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_2320633690116627033 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_15519268395712501920 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_17836737319227181268 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_7863518196199358772 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_8492059681670761091 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_315038056710818408 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_8110495897666187461 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_16116339799107869994 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_11376714767354879363 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_11302764052321215724 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_9325123125138465155 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_18338566046326143437 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_13512922838456747402 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_7374265590306206470 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_168310676706270525 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_18433537516105692647 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_13165560870724219751 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_15016051725188373433 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_18023952083235623458 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_9803410076780082096 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_8478904927141182720 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_8087540780334800013 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_353506654560423695 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_4159011668026722760 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_3569200242427431550 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_7307292717288489645 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_9781345776971129754 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_13496502205407043052 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_7353276050222521507 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_11778639822372993276 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_14728650885644452791 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_1246493703497145 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_4943879180676258379 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_14469937543436898081 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_8531351376892910104 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_16011952414107805847 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_17448089113993056717 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_5113727189427606263 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_5604597567659604219 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_6766132347573432187 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_13809474643032905856 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_12527217388248857358 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_11256326959703217317 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_2397606965407229092 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_18192403905537051984 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_10306419521820784064 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_6957134019771095914 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_12892427435327394719 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_10728117540757845302 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_1767602516788322221 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_10048330359627845395 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_16780211234377292748 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_15857083057536625169 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_3466658421032768436 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_9512268911353619961 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_11883203112950963762 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_10612125060190544182 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_7724582094573832329 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_10879300623834646421 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_14541990495325478743 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_2263237848378111405 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_11493582551125958833 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_1730678521082997840 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_13416819026031028383 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_15391831911488227998 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_1296077161538937329 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_6934209828849092390 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_15556472325108608634 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_1466650522826335242 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_8447621605456237313 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_11933475971276635720 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_7329299288829917071 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_9010859219680749958 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_4664810725587629844 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_4311573311456512695 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_8452667745234100215 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_18234281586997884503 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_12905435849664820288 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_12264496717824271932 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_14115080011440459470 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_17480577103534273096 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_1985185905493625861 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_1494232289470232127 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_8696942298211353744 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_10780506344598657977 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_18140965568266148081 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_10382804733902264929 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_5081882718174356682 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_7449576311423507963 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_14237963202611400541 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_10131078224682070724 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_5679739451749000296 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_11950630711932935001 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_2856925379266797443 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_10984282271885919945 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_15229724944321026541 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_6722390223093801429 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_6960033736206089069 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_4365676806250770270 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_15273828687461402669 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_14652141465670018292 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_1505959138523712968 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_11233097614523406973 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_12265672191372538278 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_8697207743658606606 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_6165834707457872431 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_17405049686582514854 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_1202319030027752155 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_1138464130395441119 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_3573129489536258386 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_9320137363366578073 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_16224264639670050329 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_11125267183177997578 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_4606327900364304787 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 5 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 21
ice_program_hw_rx_queue(): currently package doesn't support RXDID (21)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:47:34             dut.10.240.183.145: set verbose 1
21/03/2021 15:47:34             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:47:34             dut.10.240.183.145: set fwd io
21/03/2021 15:47:34             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:47:34             dut.10.240.183.145: set promisc all off
21/03/2021 15:47:34             dut.10.240.183.145: 
21/03/2021 15:47:34             dut.10.240.183.145: clear port stats all
21/03/2021 15:47:34             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:47:34             dut.10.240.183.145: start
21/03/2021 15:47:34             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:47:38             dut.10.240.183.145: 
21/03/2021 15:47:38                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Result FAILED: 'There are no related fields in the received TCP packet'
21/03/2021 15:47:38             dut.10.240.183.145: quit
21/03/2021 15:47:39             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_9513745155914041576 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_15123394659305406484 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_3340119752665199891 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_11460705305013425411 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_10556559389034232317 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_2703158666528224915 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_17443212069888622363 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_8359981523444185189 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_15886152220959840783 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_9787817944458774801 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_387402340739952878 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_2462891226924419850 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_10184434236811486764 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_11555504537598240821 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_3697348361866083044 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_14236423315956634497 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_7170312928055209177 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_2320633690116627033 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_15519268395712501920 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_17836737319227181268 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_7863518196199358772 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_8492059681670761091 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_315038056710818408 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_8110495897666187461 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_16116339799107869994 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_11376714767354879363 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_11302764052321215724 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_9325123125138465155 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_18338566046326143437 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_13512922838456747402 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_7374265590306206470 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_168310676706270525 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_3956882663813013842 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_13165560870724219751 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_15016051725188373433 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_18023952083235623458 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_9803410076780082096 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_8478904927141182720 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_8087540780334800013 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_353506654560423695 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_4159011668026722760 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_3569200242427431550 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_7307292717288489645 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_9781345776971129754 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_13496502205407043052 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_7353276050222521507 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_11778639822372993276 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_14728650885644452791 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_1246493703497145 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_4943879180676258379 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_14469937543436898081 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_8531351376892910104 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_16011952414107805847 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_17448089113993056717 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_5113727189427606263 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_5604597567659604219 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_6766132347573432187 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_13809474643032905856 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_12527217388248857358 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_11256326959703217317 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_2397606965407229092 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_18192403905537051984 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_10306419521820784064 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_6957134019771095914 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_12892427435327394719 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_18433537516105692647 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_1767602516788322221 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_10048330359627845395 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_16780211234377292748 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_15857083057536625169 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_3466658421032768436 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_9512268911353619961 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_11883203112950963762 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_10612125060190544182 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_7724582094573832329 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_10879300623834646421 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_14541990495325478743 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_2263237848378111405 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_11493582551125958833 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_1730678521082997840 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_13416819026031028383 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_15391831911488227998 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_1296077161538937329 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_6934209828849092390 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_15556472325108608634 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_1466650522826335242 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_8447621605456237313 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_11933475971276635720 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_7329299288829917071 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_9010859219680749958 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_4664810725587629844 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_4311573311456512695 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_8452667745234100215 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_18234281586997884503 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_12905435849664820288 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_12264496717824271932 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_14115080011440459470 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_17480577103534273096 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_10728117540757845302 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_1494232289470232127 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_8696942298211353744 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_10780506344598657977 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_18140965568266148081 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_10382804733902264929 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_5081882718174356682 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_7449576311423507963 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_14237963202611400541 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_10131078224682070724 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_5679739451749000296 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_11950630711932935001 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_2856925379266797443 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_10984282271885919945 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_15229724944321026541 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_6722390223093801429 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_6960033736206089069 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_4365676806250770270 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_15273828687461402669 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_14652141465670018292 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_1505959138523712968 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_11233097614523406973 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_12265672191372538278 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_8697207743658606606 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_6165834707457872431 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_17405049686582514854 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_1202319030027752155 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_1138464130395441119 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_3573129489536258386 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_9320137363366578073 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_16224264639670050329 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_11125267183177997578 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_4606327900364304787 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_1985185905493625861 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:47:41             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:47:41                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
21/03/2021 15:47:41             dut.10.240.183.145: 
21/03/2021 15:47:41                         tester: 
21/03/2021 15:47:41             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=tcp --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:47:43             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_7744536424645879219 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_7221094140315190889 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_1318364704707250000 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_1593959809289510533 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_6744388470497654092 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_13567953851208422453 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_1826931619194329267 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_13752368851218743374 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_2072817919606255920 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_14285891885287748272 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_974764390863490269 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_9773588604367970094 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_2907297867983880944 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_7381913124249349863 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_11908234560865750496 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_17632507533316975753 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_9711175951640003646 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_13986228185371280645 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_13166948556668760039 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_15585593895494312402 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_4288102294586855966 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_12711548220182589461 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_9821154231377008876 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_16934874033426426712 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_13130597252088010298 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_9759727919239903103 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_9673537359001697932 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_9666672975425140082 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_5700385459163360732 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_9955665536942088819 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_5207684522502267640 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_9443242097633823365 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_5832750950606542489 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_7896599056411350218 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_8817286611171391809 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_18292699251681921102 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_1311459029964634051 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_4968055500992877516 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_14780606137871685779 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_7116399382337170798 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_7084552812598279420 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_6504198029681931463 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_10823549627420898121 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_11866886967633678143 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_16814639526309178675 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_12402698063111553173 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_16809953953178029532 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_16129065834874607348 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_1370196802919231 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_2283268025271783027 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_8579852554470094070 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_5971665894397167351 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_10062025191752162037 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_3340006894587391120 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_6805729339348358904 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_15121705271959734332 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_4130592603378953268 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_13347590605381949070 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_12662257182682768192 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_12235911234249150092 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_39440066207199227 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_10058782084962284977 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_17941222955888377656 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_1492246077368552719 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_10190981253221373894 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_3075890316777005045 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_3207039830946008399 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_13010394049115158472 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_11637534685212948679 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_2534762121255862766 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_2567745436293246021 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_17458973171423586084 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_6777615863073955937 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_15688949184835157132 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_427219586070944169 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_11261509039738237989 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_15799577951108437650 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_1704479940701213634 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_12542060486858848774 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_11838150690415349746 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_1968273214099825250 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_911992541377144850 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_12545465406503089099 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_14138183371236672082 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_15375610702518135640 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_6010937276690959056 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_8596272601132227306 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_15756237977103041797 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_12963384396057585610 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10763353416863794547 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_16421086474628620211 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_16962279837583437044 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_12888823257311809278 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_9844598736819789375 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_16559219339327303171 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_8150279762350662945 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_17202520754867514702 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_6432268005398558762 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_15436937353312955293 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_7170658497856879251 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_8288860656281967520 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_14034424403088658651 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_3929770189612158069 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_2163835416811316831 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_2858562472622882341 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_18405701941808853162 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_12491676026280715519 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_5154095560741008622 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_15106243317364962570 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_4781564270045455199 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_319192135644659998 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_5512131978351072498 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_8464989533241449844 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_8797300577450223652 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_17306808827927471472 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_12470437713787092707 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_3324539396029859459 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_14648155031508387963 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_17792104724310380514 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_15779262108993249436 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_1172364277060270374 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_3455184751372658329 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_16076452204035167654 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_11813500187652515870 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_3227619977135786335 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_11618960995007986124 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_14631792617947474794 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_10364917790001992010 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_12268425540656796732 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_14664395982251068546 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_4543807261391418831 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_17701087856424606745 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 5 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 21
ice_program_hw_rx_queue(): currently package doesn't support RXDID (21)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:47:53             dut.10.240.183.145: set verbose 1
21/03/2021 15:47:53             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:47:53             dut.10.240.183.145: set fwd io
21/03/2021 15:47:53             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:47:53             dut.10.240.183.145: set promisc all off
21/03/2021 15:47:53             dut.10.240.183.145: 
21/03/2021 15:47:53             dut.10.240.183.145: clear port stats all
21/03/2021 15:47:53             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:47:53             dut.10.240.183.145: start
21/03/2021 15:47:53             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:47:56             dut.10.240.183.145: 
21/03/2021 15:47:56                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Result FAILED: 'There are no related fields in the received TCP packet'
21/03/2021 15:47:56             dut.10.240.183.145: quit
21/03/2021 15:47:58             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_7221094140315190889 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_1318364704707250000 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_1593959809289510533 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_6744388470497654092 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_13567953851208422453 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_1826931619194329267 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_13752368851218743374 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_2072817919606255920 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_14285891885287748272 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_974764390863490269 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_9773588604367970094 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_2907297867983880944 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_7381913124249349863 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_11908234560865750496 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_17632507533316975753 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_9711175951640003646 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_13986228185371280645 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_13166948556668760039 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_15585593895494312402 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_4288102294586855966 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_12711548220182589461 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_9821154231377008876 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_16934874033426426712 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_13130597252088010298 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_9759727919239903103 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_9673537359001697932 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_9666672975425140082 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_5700385459163360732 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_9955665536942088819 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_5207684522502267640 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_9443242097633823365 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_5832750950606542489 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_7744536424645879219 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_8817286611171391809 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_18292699251681921102 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_1311459029964634051 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_4968055500992877516 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_14780606137871685779 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_7116399382337170798 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_7084552812598279420 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_6504198029681931463 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_10823549627420898121 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_11866886967633678143 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_16814639526309178675 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_12402698063111553173 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_16809953953178029532 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_16129065834874607348 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_1370196802919231 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_2283268025271783027 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_8579852554470094070 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_5971665894397167351 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_10062025191752162037 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_3340006894587391120 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_6805729339348358904 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_15121705271959734332 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_4130592603378953268 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_13347590605381949070 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_12662257182682768192 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_12235911234249150092 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_39440066207199227 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_10058782084962284977 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_17941222955888377656 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_1492246077368552719 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_10190981253221373894 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_3075890316777005045 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_7896599056411350218 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_13010394049115158472 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_11637534685212948679 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_2534762121255862766 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_2567745436293246021 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_17458973171423586084 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_6777615863073955937 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_15688949184835157132 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_427219586070944169 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_11261509039738237989 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_15799577951108437650 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_1704479940701213634 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_12542060486858848774 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_11838150690415349746 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_1968273214099825250 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_911992541377144850 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_12545465406503089099 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_14138183371236672082 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_15375610702518135640 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_6010937276690959056 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_8596272601132227306 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_15756237977103041797 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_12963384396057585610 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10763353416863794547 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_16421086474628620211 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_16962279837583437044 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_12888823257311809278 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_9844598736819789375 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_16559219339327303171 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_8150279762350662945 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_17202520754867514702 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_6432268005398558762 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_15436937353312955293 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_3207039830946008399 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_8288860656281967520 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_14034424403088658651 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_3929770189612158069 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_2163835416811316831 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_2858562472622882341 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_18405701941808853162 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_12491676026280715519 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_5154095560741008622 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_15106243317364962570 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_4781564270045455199 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_319192135644659998 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_5512131978351072498 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_8464989533241449844 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_8797300577450223652 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_17306808827927471472 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_12470437713787092707 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_3324539396029859459 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_14648155031508387963 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_17792104724310380514 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_15779262108993249436 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_1172364277060270374 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_3455184751372658329 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_16076452204035167654 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_11813500187652515870 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_3227619977135786335 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_11618960995007986124 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_14631792617947474794 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_10364917790001992010 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_12268425540656796732 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_14664395982251068546 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_4543807261391418831 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_17701087856424606745 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_7170658497856879251 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:48:00             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:48:00                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
21/03/2021 15:48:00             dut.10.240.183.145: 
21/03/2021 15:48:00                         tester: 
21/03/2021 15:48:00             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=vlan --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:48:01             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_5267713401902612187 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_3244305893069368662 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_9650196789756597039 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_2969855481075113597 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_4486756614262732995 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_12589148082461201256 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_9670675072364351754 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_249515628020212610 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_4507011751490715370 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_12965952465068159063 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_18416475086012349866 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_7301777869425288703 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_8097019496795499254 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_5016247867025122514 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_1358106894185977152 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_18230241316850114788 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_4740236951312096093 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_5019877730343319079 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_270565482587172131 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_646605041028774410 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_16519173140133085365 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_13304008762491653649 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_613013202084040902 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_8170799804580986496 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_4440350888080487914 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_9596541358671902885 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_12068363832418327808 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_3827232950050062574 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_8215817938360051622 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_16672130286496562642 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_2182330711550431954 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_7410980477264796145 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_8654935771746624792 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_11270044952461368464 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_11179410664276459777 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_14366339759927284995 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_16670311999009960850 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_3595143302131412275 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_10028137822124460873 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_1955373087504672167 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_8854221081638221948 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_8894629977986792996 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_16684148368446019622 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_8753927025139180444 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_10155499615077186370 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_7732439343090535729 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_7112435014725488272 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_9538915201973778382 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_6220404648235847340 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_804308839052764889 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_8012479159845972765 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_7300151754290005005 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_5372785932462776897 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_15205193320950901344 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_4883231447549476221 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_6350222089638558741 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_7589985133367729517 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_17981186113235888644 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_2663483430746802210 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_11226290494734418380 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_13925855157197518224 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_9468676059552529875 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_16728679835650134800 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_8122101452211623473 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_6144975394304312469 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_9113860091573867526 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_8988407030342379346 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_2971391769635020150 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_14080294455783930671 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_15809864356983576928 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_6319827642762718675 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_6363193561476606499 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_12566676325342806559 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_5328272244150321922 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_5958629661157593179 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_5021885352036917558 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_1057332324970886521 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_11901239482040791016 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_17059445146856032713 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_12228667196055249553 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_7962488057882877641 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_6014532888472234424 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_14320195839786739304 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_1040249046560886828 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_14864064491899209417 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_14731816543322284771 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_5053142799481517043 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_11573658783686834979 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_11482942864646735879 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_17943745090862036211 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_765735045471540094 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_3020635939159293808 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_13810079260488564840 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_5134973962559047502 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_17683943910995407198 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_4009604733150804651 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_15318367092665327067 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_7980984161030534272 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_3707774331896219644 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_11718198852986073457 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_8501478164248079177 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_9790605890931081742 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_13770027459209368778 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_5601685534675103600 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_1407260266855124954 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_5259865867981353572 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_4607602533066648476 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_3295661118535331616 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_9135978185125799997 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_5045525552052788987 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_10626055478108583634 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_13187808721075098385 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_9738779304833078488 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_15062342164512865412 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_10897490307754029703 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_3202805614342748954 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_1279443324770498928 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_12409486099497235724 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_3618859516663533211 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_16129837154077338742 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_11980948345562119833 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_2945895025292914312 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_16381593879138731971 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_17415765682741999900 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_10337410565381572691 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_3355747971654473033 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_573845280477604923 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_2686006661801727197 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_8075293547513956199 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_15850857114251788034 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_10703856038119711496 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_1812849299728040881 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 1 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_program_hw_rx_queue(): currently package doesn't support RXDID (17)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:48:11             dut.10.240.183.145: set verbose 1
21/03/2021 15:48:11             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:48:11             dut.10.240.183.145: set fwd io
21/03/2021 15:48:11             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:48:11             dut.10.240.183.145: set promisc all off
21/03/2021 15:48:11             dut.10.240.183.145: 
21/03/2021 15:48:11             dut.10.240.183.145: clear port stats all
21/03/2021 15:48:11             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:48:11             dut.10.240.183.145: start
21/03/2021 15:48:12             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:48:15             dut.10.240.183.145: 
21/03/2021 15:48:15                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Result FAILED: 'stag result is not expected (stag=1:0:23)'
21/03/2021 15:48:15             dut.10.240.183.145: quit
21/03/2021 15:48:16             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_3244305893069368662 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_9650196789756597039 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_2969855481075113597 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_4486756614262732995 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_12589148082461201256 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_9670675072364351754 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_249515628020212610 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_4507011751490715370 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_12965952465068159063 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_18416475086012349866 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_7301777869425288703 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_8097019496795499254 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_5016247867025122514 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_1358106894185977152 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_18230241316850114788 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_4740236951312096093 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_5019877730343319079 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_270565482587172131 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_646605041028774410 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_16519173140133085365 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_13304008762491653649 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_613013202084040902 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_8170799804580986496 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_4440350888080487914 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_9596541358671902885 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_12068363832418327808 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_3827232950050062574 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_8215817938360051622 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_16672130286496562642 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_2182330711550431954 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_7410980477264796145 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_8654935771746624792 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_5267713401902612187 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_11179410664276459777 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_14366339759927284995 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_16670311999009960850 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_3595143302131412275 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_10028137822124460873 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_1955373087504672167 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_8854221081638221948 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_8894629977986792996 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_16684148368446019622 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_8753927025139180444 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_10155499615077186370 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_7732439343090535729 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_7112435014725488272 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_9538915201973778382 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_6220404648235847340 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_804308839052764889 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_8012479159845972765 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_7300151754290005005 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_5372785932462776897 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_15205193320950901344 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_4883231447549476221 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_6350222089638558741 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_7589985133367729517 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_17981186113235888644 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_2663483430746802210 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_11226290494734418380 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_13925855157197518224 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_9468676059552529875 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_16728679835650134800 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_8122101452211623473 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_6144975394304312469 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_9113860091573867526 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_11270044952461368464 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_2971391769635020150 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_14080294455783930671 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_15809864356983576928 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_6319827642762718675 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_6363193561476606499 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_12566676325342806559 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_5328272244150321922 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_5958629661157593179 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_5021885352036917558 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_1057332324970886521 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_11901239482040791016 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_17059445146856032713 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_12228667196055249553 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_7962488057882877641 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_6014532888472234424 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_14320195839786739304 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_1040249046560886828 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_14864064491899209417 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_14731816543322284771 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_5053142799481517043 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_11573658783686834979 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_11482942864646735879 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_17943745090862036211 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_765735045471540094 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_3020635939159293808 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_13810079260488564840 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_5134973962559047502 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_17683943910995407198 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_4009604733150804651 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_15318367092665327067 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_7980984161030534272 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_3707774331896219644 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_8988407030342379346 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_8501478164248079177 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_9790605890931081742 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_13770027459209368778 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_5601685534675103600 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_1407260266855124954 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_5259865867981353572 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_4607602533066648476 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_3295661118535331616 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_9135978185125799997 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_5045525552052788987 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_10626055478108583634 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_13187808721075098385 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_9738779304833078488 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_15062342164512865412 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_10897490307754029703 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_3202805614342748954 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_1279443324770498928 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_12409486099497235724 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_3618859516663533211 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_16129837154077338742 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_11980948345562119833 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_2945895025292914312 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_16381593879138731971 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_17415765682741999900 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_10337410565381572691 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_3355747971654473033 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_573845280477604923 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_2686006661801727197 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_8075293547513956199 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_15850857114251788034 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_10703856038119711496 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_1812849299728040881 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_11718198852986073457 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:48:18             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:48:19                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Begin
21/03/2021 15:48:19             dut.10.240.183.145: 
21/03/2021 15:48:19                         tester: 
21/03/2021 15:48:19             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=vlan --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:48:20             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_4730211102264548333 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_12815444930413935522 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_1609123856810095042 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_1446643017952289889 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_6376654626752074523 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_15375791192824786571 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_4228881197176549078 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_14357012912979118068 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_11665467170816622243 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_12145783684902435408 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_3805973016286602389 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_3979672460329154499 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_16643012624750892445 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_4877014060629619745 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_17864825079478533866 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_808991525748026679 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_11865295200926934419 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_1611393966474273261 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_12442242989157018464 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_14321813743395583250 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_1337990837562206677 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_9308929507979306862 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_5232672085265001468 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_8337801633965222299 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_8421577550131929424 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_11074236764241965006 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_9282190149649680834 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_10925779090753553704 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_12273832882306775528 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_16258450674403163049 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_6733059788577999774 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_9303156335420847946 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_9600417212133407903 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_14037390577595752472 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_16098805165528696083 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_2966757164943897672 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_13239519993565031172 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_6937660929014599394 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_18338883067507938686 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_4588141054248484 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_11551400148262517045 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_5273940353865128540 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_16994877539814559130 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_7248011199452238407 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_8521320666521755934 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_4135573819323352850 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_1572100754887497194 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_5242872165261692561 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_1972175425233168282 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_657988857306957795 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_13745233519520949640 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_11479085775121584783 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_10924151282945993565 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_16626894381105447008 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_13810935794032002350 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_17626393327142948213 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_9130704410948326990 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_6763208090627158037 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_12310563494668102340 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_7777004331696058845 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_5411373182896446171 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_16263110463816604884 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_2652733939005139329 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_12853417933942252306 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_16125716588146150828 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_184107137093591678 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_5110835823729449355 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_17324914402230400983 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_17130418600588345947 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_4433712270798076267 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_1795183243040598514 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_215608257213336125 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_1793921978878182938 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_1823529317670935570 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_18116235911067242214 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_16775813178614884969 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_17304198321815601280 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_2190906528706668343 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_9744195792595365151 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_1391675900797970974 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_7137721044011231098 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_7605518614341888101 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_13002293741892782372 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_11999577811014147545 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_17056199430458570856 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_835660969655731557 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_463981139401581197 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_16023301316476950108 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_4453912390061953625 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_11168799593865608417 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_4272049175745251105 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_12322057121476346750 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_7640344063494769203 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_9102776236750762397 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_4772460619955656663 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_10419084943293671744 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_2869990451073548193 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_3758669089790404836 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_3620110114721604313 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_14189117238817000014 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_15994267256632050800 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_2406040804141137935 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_7002145801843374296 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_1938222095903263197 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_18276854501171768879 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_9546545227286273808 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_11240005096097714504 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_10631911036119209613 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_14580077205997849315 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_11009395249632578350 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_4821414896925971599 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_6575540647207240072 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_12807501548309488521 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_11178091712690116870 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_8194755985648935676 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_7524399615551870096 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_13771015129426425594 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_14732091243346732775 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_17261605203360222451 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_8002730939205055874 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_2543091429286894196 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_5376350926997021409 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_5512300312389330763 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_5182332827142028384 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_17468375893041242693 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_16644189163524578962 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_3928632359515445580 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_1909629577527324359 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_9798692770144694468 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_2754256970498575771 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_3594356258753067414 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_3737071122130412647 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 1 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_program_hw_rx_queue(): currently package doesn't support RXDID (17)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:48:30             dut.10.240.183.145: set verbose 1
21/03/2021 15:48:30             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:48:30             dut.10.240.183.145: set fwd io
21/03/2021 15:48:30             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:48:30             dut.10.240.183.145: set promisc all off
21/03/2021 15:48:30             dut.10.240.183.145: 
21/03/2021 15:48:30             dut.10.240.183.145: clear port stats all
21/03/2021 15:48:30             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:48:30             dut.10.240.183.145: start
21/03/2021 15:48:30             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:48:34             dut.10.240.183.145: 
21/03/2021 15:48:34                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Result FAILED: 'There are no related fields in the received VLAN packet'
21/03/2021 15:48:34             dut.10.240.183.145: quit
21/03/2021 15:48:35             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_12815444930413935522 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_1609123856810095042 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_1446643017952289889 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_6376654626752074523 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_15375791192824786571 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_4228881197176549078 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_14357012912979118068 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_11665467170816622243 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_12145783684902435408 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_3805973016286602389 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_3979672460329154499 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_16643012624750892445 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_4877014060629619745 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_17864825079478533866 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_808991525748026679 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_11865295200926934419 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_1611393966474273261 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_12442242989157018464 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_14321813743395583250 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_1337990837562206677 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_9308929507979306862 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_5232672085265001468 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_8337801633965222299 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_8421577550131929424 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_11074236764241965006 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_9282190149649680834 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_10925779090753553704 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_12273832882306775528 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_16258450674403163049 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_6733059788577999774 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_9303156335420847946 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_9600417212133407903 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_4730211102264548333 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_16098805165528696083 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_2966757164943897672 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_13239519993565031172 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_6937660929014599394 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_18338883067507938686 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_4588141054248484 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_11551400148262517045 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_5273940353865128540 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_16994877539814559130 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_7248011199452238407 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_8521320666521755934 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_4135573819323352850 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_1572100754887497194 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_5242872165261692561 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_1972175425233168282 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_657988857306957795 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_13745233519520949640 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_11479085775121584783 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_10924151282945993565 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_16626894381105447008 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_13810935794032002350 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_17626393327142948213 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_9130704410948326990 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_6763208090627158037 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_12310563494668102340 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_7777004331696058845 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_5411373182896446171 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_16263110463816604884 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_2652733939005139329 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_12853417933942252306 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_16125716588146150828 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_184107137093591678 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_14037390577595752472 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_17324914402230400983 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_17130418600588345947 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_4433712270798076267 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_1795183243040598514 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_215608257213336125 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_1793921978878182938 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_1823529317670935570 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_18116235911067242214 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_16775813178614884969 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_17304198321815601280 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_2190906528706668343 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_9744195792595365151 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_1391675900797970974 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_7137721044011231098 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_7605518614341888101 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_13002293741892782372 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_11999577811014147545 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_17056199430458570856 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_835660969655731557 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_463981139401581197 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_16023301316476950108 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_4453912390061953625 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_11168799593865608417 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_4272049175745251105 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_12322057121476346750 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_7640344063494769203 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_9102776236750762397 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_4772460619955656663 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_10419084943293671744 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_2869990451073548193 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_3758669089790404836 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_3620110114721604313 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_5110835823729449355 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_15994267256632050800 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_2406040804141137935 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_7002145801843374296 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_1938222095903263197 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_18276854501171768879 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_9546545227286273808 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_11240005096097714504 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_10631911036119209613 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_14580077205997849315 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_11009395249632578350 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_4821414896925971599 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_6575540647207240072 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_12807501548309488521 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_11178091712690116870 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_8194755985648935676 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_7524399615551870096 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_13771015129426425594 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_14732091243346732775 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_17261605203360222451 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_8002730939205055874 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_2543091429286894196 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_5376350926997021409 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_5512300312389330763 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_5182332827142028384 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_17468375893041242693 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_16644189163524578962 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_3928632359515445580 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_1909629577527324359 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_9798692770144694468 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_2754256970498575771 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_3594356258753067414 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_3737071122130412647 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_14189117238817000014 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:48:37             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:48:37                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Begin
21/03/2021 15:48:37             dut.10.240.183.145: 
21/03/2021 15:48:37                         tester: 
21/03/2021 15:48:37             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=vlan --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:48:39             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_12642223248348986117 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_8345073874674706012 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_14928175841358845321 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_4989902786278906829 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_16430035570012924145 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_1545588091489485958 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_1633015782407994482 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_8899130435855408501 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_17005061060936735486 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_3664007294972086673 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_15983266179495098111 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_8166362966211842925 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_12423259982174639948 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_15653267378318900730 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_10045779111991771472 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_14255223131114694955 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_11957128618186004271 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_11577300336448675007 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_2644509267663789448 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_18284205025344521809 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_3495168557945617234 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_11459020043630698463 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_17262587925965564436 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_9008238074515312867 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_8225980313476472041 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_12941812969215673081 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_4465674635621625366 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_3883533971739406076 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_17668488615935431440 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_5008677477705314159 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_7875132554145446234 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_12998182066834878983 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_8382887058661179766 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_17156634570357543360 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_11286074895678555863 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_11341535412520220271 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_12546539194529204155 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_12626731335047858960 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_6526773185594402959 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_7550991935054416364 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_4599287986646113033 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_10364371613276692602 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_10620505875971587113 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_6727601303124111746 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_5139322408528107110 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_10164323154519831048 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_14587568258459469929 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_17943390514942186384 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_2648578532949860650 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_2260591529963936336 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_12996572504282331880 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_16919959239279093809 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_168824087937616614 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_1406881963636790088 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_11444117536224572210 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_6492841481801889921 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_1037298405707667360 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_15126094444913582405 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_14908247955802175943 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_11891104362612780344 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_1348085878959918916 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_14560647101450189732 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_16394170508960368392 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_12520310424149046641 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_4112826883891460332 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_14761593286048704006 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_8412125605301135496 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_6972678923056929626 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_17665964906850512510 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_6261924432822768260 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_18230133008477689052 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_15091683292166139177 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_15859322101193405761 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_992997517192820554 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_13756426664787158015 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_925516992045708484 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_11415012642170240039 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_4308729057561794324 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_16843384349299364574 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_8868419848998039099 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_2960393607954309916 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_6472043531451034876 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_5280104183000465902 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_6661295779164758670 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_14511388052061096324 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_11282223842058673132 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_1097386033268037377 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_14631704160218010060 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_17105503780863598957 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10629256417771855205 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_11673145933624383536 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_6855990369914024717 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_2169077654257598985 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_4562587360917147451 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_8126335168141276853 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_8898377802216589850 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_18350878323291998698 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_3656661497607152983 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_8333581991527206044 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_817853152131776017 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_4490525525570024513 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_15495768021298309661 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_5236202289196913669 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_6894691555589406795 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_6432035704175458331 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_15540217515849710507 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_17556338629828219373 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_1783163381363553537 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_14783467017726846838 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_18364701066930487328 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_5109890591338470062 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_12278905852712556096 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_5022982879927185 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12392604615089123359 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_14297033772182652250 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_8756601780168068571 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_17222013224671839753 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_12295190945778212665 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_6445174763932409696 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_16528262873692066726 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_345897051452338625 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_8285350217590979453 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_10369374191156416783 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_9410671827607616242 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_4432693711407875539 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_5137107404786271869 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_9512478441229840745 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_15469494526784566339 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_2415592968489090226 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_15466009714799551901 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_17644593777567772153 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_4357119212436609112 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 1 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_program_hw_rx_queue(): currently package doesn't support RXDID (17)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:48:49             dut.10.240.183.145: set verbose 1
21/03/2021 15:48:49             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:48:49             dut.10.240.183.145: set fwd io
21/03/2021 15:48:49             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:48:49             dut.10.240.183.145: set promisc all off
21/03/2021 15:48:49             dut.10.240.183.145: 
21/03/2021 15:48:49             dut.10.240.183.145: clear port stats all
21/03/2021 15:48:49             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:48:49             dut.10.240.183.145: start
21/03/2021 15:48:49             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:48:52             dut.10.240.183.145: 
21/03/2021 15:48:52                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Result FAILED: 'There are no related fields in the received VLAN packet'
21/03/2021 15:48:52             dut.10.240.183.145: quit
21/03/2021 15:48:54             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_8345073874674706012 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_14928175841358845321 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_4989902786278906829 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_16430035570012924145 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_1545588091489485958 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_1633015782407994482 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_8899130435855408501 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_17005061060936735486 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_3664007294972086673 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_15983266179495098111 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_8166362966211842925 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_12423259982174639948 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_15653267378318900730 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_10045779111991771472 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_14255223131114694955 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_11957128618186004271 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_11577300336448675007 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_2644509267663789448 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_18284205025344521809 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_3495168557945617234 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_11459020043630698463 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_17262587925965564436 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_9008238074515312867 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_8225980313476472041 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_12941812969215673081 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_4465674635621625366 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_3883533971739406076 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_17668488615935431440 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_5008677477705314159 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_7875132554145446234 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_12998182066834878983 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_8382887058661179766 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_12642223248348986117 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_11286074895678555863 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_11341535412520220271 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_12546539194529204155 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_12626731335047858960 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_6526773185594402959 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_7550991935054416364 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_4599287986646113033 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_10364371613276692602 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_10620505875971587113 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_6727601303124111746 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_5139322408528107110 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_10164323154519831048 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_14587568258459469929 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_17943390514942186384 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_2648578532949860650 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_2260591529963936336 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_12996572504282331880 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_16919959239279093809 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_168824087937616614 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_1406881963636790088 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_11444117536224572210 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_6492841481801889921 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_1037298405707667360 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_15126094444913582405 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_14908247955802175943 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_11891104362612780344 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_1348085878959918916 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_14560647101450189732 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_16394170508960368392 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_12520310424149046641 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_4112826883891460332 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_14761593286048704006 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_17156634570357543360 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_6972678923056929626 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_17665964906850512510 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_6261924432822768260 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_18230133008477689052 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_15091683292166139177 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_15859322101193405761 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_992997517192820554 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_13756426664787158015 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_925516992045708484 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_11415012642170240039 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_4308729057561794324 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_16843384349299364574 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_8868419848998039099 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_2960393607954309916 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_6472043531451034876 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_5280104183000465902 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_6661295779164758670 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_14511388052061096324 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_11282223842058673132 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_1097386033268037377 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_14631704160218010060 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_17105503780863598957 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10629256417771855205 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_11673145933624383536 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_6855990369914024717 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_2169077654257598985 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_4562587360917147451 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_8126335168141276853 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_8898377802216589850 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_18350878323291998698 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_3656661497607152983 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_8333581991527206044 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_8412125605301135496 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_4490525525570024513 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_15495768021298309661 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_5236202289196913669 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_6894691555589406795 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_6432035704175458331 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_15540217515849710507 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_17556338629828219373 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_1783163381363553537 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_14783467017726846838 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_18364701066930487328 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_5109890591338470062 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_12278905852712556096 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_5022982879927185 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12392604615089123359 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_14297033772182652250 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_8756601780168068571 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_17222013224671839753 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_12295190945778212665 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_6445174763932409696 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_16528262873692066726 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_345897051452338625 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_8285350217590979453 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_10369374191156416783 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_9410671827607616242 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_4432693711407875539 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_5137107404786271869 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_9512478441229840745 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_15469494526784566339 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_2415592968489090226 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_15466009714799551901 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_17644593777567772153 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_4357119212436609112 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_817853152131776017 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:48:56             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:48:56                TestFlexibleRxd: Test Case test_check_effect_replace_pkg_RXID_22_to_RXID_16 Begin
21/03/2021 15:48:56             dut.10.240.183.145: 
21/03/2021 15:48:56                         tester: 
21/03/2021 15:48:56                TestFlexibleRxd: replace ice-1.3.7.0.pkg with RXID 16
21/03/2021 15:48:56             dut.10.240.183.145: cp /lib/firmware/updates/intel/ice/ddp/ice-1.3.7.0.pkg /lib/firmware/updates/intel/ice/ddp/ice.pkg
21/03/2021 15:48:56             dut.10.240.183.145: 
21/03/2021 15:48:56             dut.10.240.183.145: echo 0000:07:00.0 > /sys/bus/pci/devices/0000:07:00.0/driver/unbind
21/03/2021 15:48:56             dut.10.240.183.145: 
21/03/2021 15:48:56             dut.10.240.183.145: echo 0000:07:00.0 > /sys/bus/pci/drivers/ice/bind
21/03/2021 15:48:57             dut.10.240.183.145: 
21/03/2021 15:48:57             dut.10.240.183.145: ./usertools/dpdk-devbind.py --force --bind=vfio-pci 0000:07:00.0
21/03/2021 15:48:58             dut.10.240.183.145: 
21/03/2021 15:48:58             dut.10.240.183.145: dmesg | grep Package | tail -1
21/03/2021 15:48:58             dut.10.240.183.145: [194444.744773] ice 0000:07:00.0: The driver could not load the DDP package file because a compatible DDP package is already present on the device.  The device has package 'ICE OS Default Package' version 1.3.24.0.  The package file found by the driver: 'ICE COMMS Package' version 1.3.7.0.
21/03/2021 15:48:58                TestFlexibleRxd: package version:1.3.24.0.  The package file found by the driver: 'ICE COMMS Package' version 1.3.7.0.
21/03/2021 15:48:58                TestFlexibleRxd: Test Case test_check_effect_replace_pkg_RXID_22_to_RXID_16 Result FAILED: 'replace package failed'
21/03/2021 15:49:00             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
21/03/2021 15:49:01                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
21/03/2021 15:49:01             dut.10.240.183.145:  
21/03/2021 15:49:01                         tester: 
21/03/2021 15:49:01             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:49:02             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_8921971967899140573 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_3478081641626843344 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_17471298843318180728 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_14258742539848302691 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_16014438226922368189 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_15897957249517158780 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_14869146347977129758 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_8158126893530356357 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_17128710444951151053 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_5416728092949076253 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_3500946695213809530 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_4581279425188448397 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_16727055221360707185 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_5216285147548213965 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_15677134930306197261 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_16939180178396683669 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_6939988055216325654 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_16073478293471715607 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_11070542440781322659 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_16925559618031786367 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_8901837106006284055 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_12018697658066918055 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_14963514823781822504 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_8512448993237514435 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_7119976104620933540 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_9311972744330355903 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_3055219750539614117 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_16951744576468921103 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_4052965880331844271 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_17623937489674243066 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_11790067416888093979 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_11051066100972963521 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_11884843018378766259 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_16939696235954239575 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_5565970116604352099 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_16233330348392809105 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_17174748296097487109 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_17141527940892111140 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_9618313687429559641 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_12728839390015836398 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_18140869250670952776 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_8559826997263131384 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_10849340898723720302 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_6137674623808103273 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_14898125978697423227 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_4216856492790214682 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_11385112544419592309 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_3022001370019169215 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_16866179480592679872 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_4466333721147738484 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_4479472949651090454 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_11842142372589450793 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_177385540428327117 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_3200725615553012301 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_857748803761643622 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_14315861332721279325 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_2049445181744662649 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_10057204510164714710 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_7117217216681723737 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_7691235750713360138 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_8145032313761769065 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_13077322130063171129 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_8845338147417064212 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_13953312049900916073 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_11341692278735532969 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_451978913779626733 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_6814351131908106385 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_1093716826597762272 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_2355807256700829193 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_2060542135500718973 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_16211356465230976057 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_18012262934199549459 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_15935863428010431177 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_4741927964692541880 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_4571619190029900398 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_1758905606853653405 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_7491218469680900570 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_13416775242072595458 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_1051225642537929646 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_6411596702156773076 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_9494703967235926012 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_14601662052510554000 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_4491788220013333915 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_11655579218285482912 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_16807595346091529038 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_4233891517252330769 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_8438663756400899265 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_3524184080467586457 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_710686310555220070 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_15117573472418445294 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_1283551339714434803 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_17061039743671282941 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_4664829982732394435 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_686698118516589865 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_17924036350686264117 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_452442370362125928 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_946227173505076828 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_13454528946718395609 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_7178451481232729077 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_9798272257224472892 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_10767164853571141944 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_16678013647108066916 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_438573463519311217 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_17459021674576975408 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_4216689966143862219 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_4234654770815674242 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_15743770701000455887 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_11571848858778002372 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_11503197954559420685 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_4633140491728224802 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_6572730299207144187 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_4030002014696651248 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_979218496042235897 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_4385339512781626722 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_12392000755855299896 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_15024068023778999246 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_9943713250516042750 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_1709158387126219239 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_14173852863229332799 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_13410507943827830373 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_11094291495475884091 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_16795272978485952959 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_12680673664692103631 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_12254249798349083126 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_5215840453589202045 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_15157712321223903588 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_18346757458056984298 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_12973672899669244185 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_3440633066441614379 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_6635609592634704230 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_13891904850295474980 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_12006069772225239020 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:49:12             dut.10.240.183.145: set verbose 1
21/03/2021 15:49:13             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:49:13             dut.10.240.183.145: start
21/03/2021 15:49:13             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:49:16             dut.10.240.183.145: 
21/03/2021 15:49:16                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:49:16             dut.10.240.183.145: quit
21/03/2021 15:49:17             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_3478081641626843344 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_17471298843318180728 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_14258742539848302691 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_16014438226922368189 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_15897957249517158780 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_14869146347977129758 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_8158126893530356357 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_17128710444951151053 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_5416728092949076253 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_3500946695213809530 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_4581279425188448397 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_16727055221360707185 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_5216285147548213965 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_15677134930306197261 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_16939180178396683669 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_6939988055216325654 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_16073478293471715607 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_11070542440781322659 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_16925559618031786367 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_8901837106006284055 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_12018697658066918055 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_14963514823781822504 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_8512448993237514435 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_7119976104620933540 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_9311972744330355903 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_3055219750539614117 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_16951744576468921103 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_4052965880331844271 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_17623937489674243066 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_11790067416888093979 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_11051066100972963521 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_11884843018378766259 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_8921971967899140573 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_5565970116604352099 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_16233330348392809105 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_17174748296097487109 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_17141527940892111140 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_9618313687429559641 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_12728839390015836398 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_18140869250670952776 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_8559826997263131384 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_10849340898723720302 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_6137674623808103273 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_14898125978697423227 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_4216856492790214682 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_11385112544419592309 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_3022001370019169215 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_16866179480592679872 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_4466333721147738484 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_4479472949651090454 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_11842142372589450793 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_177385540428327117 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_3200725615553012301 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_857748803761643622 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_14315861332721279325 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_2049445181744662649 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_10057204510164714710 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_7117217216681723737 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_7691235750713360138 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_8145032313761769065 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_13077322130063171129 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_8845338147417064212 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_13953312049900916073 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_11341692278735532969 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_451978913779626733 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_16939696235954239575 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_1093716826597762272 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_2355807256700829193 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_2060542135500718973 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_16211356465230976057 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_18012262934199549459 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_15935863428010431177 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_4741927964692541880 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_4571619190029900398 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_1758905606853653405 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_7491218469680900570 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_13416775242072595458 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_1051225642537929646 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_6411596702156773076 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_9494703967235926012 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_14601662052510554000 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_4491788220013333915 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_11655579218285482912 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_16807595346091529038 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_4233891517252330769 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_8438663756400899265 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_3524184080467586457 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_710686310555220070 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_15117573472418445294 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_1283551339714434803 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_17061039743671282941 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_4664829982732394435 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_686698118516589865 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_17924036350686264117 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_452442370362125928 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_946227173505076828 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_13454528946718395609 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_7178451481232729077 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_6814351131908106385 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_10767164853571141944 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_16678013647108066916 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_438573463519311217 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_17459021674576975408 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_4216689966143862219 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_4234654770815674242 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_15743770701000455887 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_11571848858778002372 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_11503197954559420685 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_4633140491728224802 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_6572730299207144187 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_4030002014696651248 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_979218496042235897 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_4385339512781626722 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_12392000755855299896 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_15024068023778999246 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_9943713250516042750 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_1709158387126219239 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_14173852863229332799 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_13410507943827830373 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_11094291495475884091 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_16795272978485952959 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_12680673664692103631 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_12254249798349083126 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_5215840453589202045 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_15157712321223903588 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_18346757458056984298 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_12973672899669244185 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_3440633066441614379 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_6635609592634704230 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_13891904850295474980 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_12006069772225239020 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_9798272257224472892 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:49:19             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:49:20                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Begin
21/03/2021 15:49:20             dut.10.240.183.145: 
21/03/2021 15:49:20                         tester: 
21/03/2021 15:49:20             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:49:21             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_13067115397513405577 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_4499362304261307075 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_10911657766011540035 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_1877425277323335595 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_16946244531819856131 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_2964483131377287594 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_18017392316178136789 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_12563739999949013306 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_15693947982463063193 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_17287174802119745772 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_10738982219109484570 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_5147880631302913757 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_11761104654503124176 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_11274716366996104394 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_3602601897689853215 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_6321594658958812288 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_11197422418595345067 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_370421746507474210 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_12388914659398226137 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_11914218899799737332 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_3825641742438871469 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_7507753126228623479 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_14509462113524781501 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_2887790781096263859 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_12802544690096518091 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_16842034721880815994 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_16451896112741243663 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_4254035075971497974 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_12581859712217591495 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_6620101619732251003 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_6760955048398665931 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_6109097431280908906 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_4298743642154639054 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_10868958173232422240 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_2805025186229230002 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_18114053175038159509 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_248058188247064316 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_12517262926718742579 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_9620907078656718522 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_9090882202755661501 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_2984407460493986475 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_3257324112380729030 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_5735552309663468405 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_13368869822616560190 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_11516275303607372600 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_12253095292130004875 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_6263638566369150910 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_6025349371083524761 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_15431698636113799125 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_15958096063754099715 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_15101689580478374378 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_17977748078858819525 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_15602473908751447460 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_11142927573423401157 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_15216767685459119189 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_7257069519019258750 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_8903514243475208953 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_859490098267349272 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_12194391967564945298 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_6449860572417153526 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_14536055280991817994 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_7568443797060160695 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_10959997524465440199 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_11810732002516319006 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_9770210253109444894 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_12681233110406557631 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_6662227599399073571 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_8730211507326508756 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_7755849485736629772 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_5975700453517196229 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_5426483521729115477 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_13308155346717556762 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_13626144468829567594 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_12501621258238364093 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_5782001823051873396 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_15192348261019493634 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_7718014948131965771 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_763726285212696157 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_14564307636801397319 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_7273670334530377172 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_557365620357392315 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_10350387274632200939 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_10442462925772070030 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_8130828727505592264 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_15641433785349943640 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_10459015498651880680 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_16181505066921532786 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_8892530897808523313 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_10457536059016881759 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_9223885030888171830 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_3788598537060241737 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_13640939361643804354 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_17768651038864932748 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_14461125223160999304 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_3745663241545541339 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_14494889891553927312 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_16730248839872715098 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_6713043173551213888 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14407666545979133260 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_8058495663203378700 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_6513742631039417591 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_9004391940857884561 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_13354048477942736234 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_17077520768024905686 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_18059094738787077173 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_8325289929425903295 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_12014982976177546943 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_16504093431906172797 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_1508558287741863424 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_3927124393660985548 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_16233259689802529625 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_2618354875445255999 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_12481263229345768110 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12708925886249128823 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_11999538248000158634 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_15361157501066151814 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_14645114704456570993 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_9555132044248338750 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_10447979132288360310 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_13428507802342464941 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_5558202838960460877 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_10007296916578478746 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_4193262148467883451 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_4248428867450896795 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11498501322935625686 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_17775832726692231026 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_1566097721700360236 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_16001081000716524498 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_8902583394297309022 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_17768306405423084160 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_3946388508554332534 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_16120828520610999704 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:49:31             dut.10.240.183.145: set verbose 1
21/03/2021 15:49:31             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:49:31             dut.10.240.183.145: start
21/03/2021 15:49:31             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:49:35             dut.10.240.183.145: 
21/03/2021 15:49:35                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:49:35             dut.10.240.183.145: quit
21/03/2021 15:49:36             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_4499362304261307075 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_10911657766011540035 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_1877425277323335595 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_16946244531819856131 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_2964483131377287594 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_18017392316178136789 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_12563739999949013306 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_15693947982463063193 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_17287174802119745772 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_10738982219109484570 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_5147880631302913757 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_11761104654503124176 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_11274716366996104394 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_3602601897689853215 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_6321594658958812288 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_11197422418595345067 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_370421746507474210 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_12388914659398226137 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_11914218899799737332 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_3825641742438871469 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_7507753126228623479 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_14509462113524781501 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_2887790781096263859 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_12802544690096518091 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_16842034721880815994 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_16451896112741243663 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_4254035075971497974 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_12581859712217591495 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_6620101619732251003 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_6760955048398665931 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_6109097431280908906 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_4298743642154639054 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_13067115397513405577 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_2805025186229230002 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_18114053175038159509 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_248058188247064316 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_12517262926718742579 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_9620907078656718522 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_9090882202755661501 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_2984407460493986475 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_3257324112380729030 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_5735552309663468405 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_13368869822616560190 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_11516275303607372600 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_12253095292130004875 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_6263638566369150910 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_6025349371083524761 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_15431698636113799125 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_15958096063754099715 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_15101689580478374378 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_17977748078858819525 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_15602473908751447460 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_11142927573423401157 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_15216767685459119189 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_7257069519019258750 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_8903514243475208953 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_859490098267349272 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_12194391967564945298 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_6449860572417153526 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_14536055280991817994 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_7568443797060160695 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_10959997524465440199 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_11810732002516319006 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_9770210253109444894 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_12681233110406557631 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_10868958173232422240 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_8730211507326508756 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_7755849485736629772 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_5975700453517196229 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_5426483521729115477 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_13308155346717556762 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_13626144468829567594 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_12501621258238364093 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_5782001823051873396 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_15192348261019493634 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_7718014948131965771 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_763726285212696157 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_14564307636801397319 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_7273670334530377172 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_557365620357392315 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_10350387274632200939 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_10442462925772070030 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_8130828727505592264 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_15641433785349943640 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_10459015498651880680 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_16181505066921532786 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_8892530897808523313 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_10457536059016881759 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_9223885030888171830 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_3788598537060241737 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_13640939361643804354 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_17768651038864932748 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_14461125223160999304 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_3745663241545541339 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_14494889891553927312 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_16730248839872715098 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_6713043173551213888 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14407666545979133260 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_6662227599399073571 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_6513742631039417591 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_9004391940857884561 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_13354048477942736234 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_17077520768024905686 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_18059094738787077173 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_8325289929425903295 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_12014982976177546943 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_16504093431906172797 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_1508558287741863424 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_3927124393660985548 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_16233259689802529625 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_2618354875445255999 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_12481263229345768110 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12708925886249128823 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_11999538248000158634 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_15361157501066151814 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_14645114704456570993 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_9555132044248338750 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_10447979132288360310 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_13428507802342464941 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_5558202838960460877 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_10007296916578478746 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_4193262148467883451 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_4248428867450896795 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11498501322935625686 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_17775832726692231026 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_1566097721700360236 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_16001081000716524498 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_8902583394297309022 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_17768306405423084160 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_3946388508554332534 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_16120828520610999704 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_8058495663203378700 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:49:38             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:49:38                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Begin
21/03/2021 15:49:38             dut.10.240.183.145: 
21/03/2021 15:49:38                         tester: 
21/03/2021 15:49:38             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:49:40             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_11348597723508773018 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_7798420818464080390 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_11447833390426385738 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_5300331495181091997 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_6125735930648735899 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_16197200497848479687 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_6124615055452605822 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_16867481360821421038 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_5241952089200289507 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_14644686674464394603 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_12903129208605271213 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_5786032600780828856 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_2646155642548208431 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_8471621604391499180 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_8541606363159166672 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_3110567474866199604 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_3734524267489089964 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_5410153959458171752 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_8841522420239786255 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_13480959162139852097 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_7492614835926518873 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_6178681846945169424 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_6775585558717940219 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_14686466008833722194 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_15799862363439514235 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_6680274457603091393 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_13596144307299203113 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_6780785881287996521 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_17824239062406771227 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_17277230616228482137 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_8000722676542434686 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_15497243590259387764 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_16167911182636894273 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_9530030882126980261 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_17710312167907164390 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_10175847347605910012 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_18206390152298621338 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_15507260663997692960 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_2835664887180087941 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_17027369969927724573 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_6629817905882143274 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_12426998071771724048 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_17592371151335139878 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_11654794867359286365 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_15501414201814486171 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_12123089219968959317 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_11200373279964110137 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_14039431541282793697 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_1263472063606404661 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_5675806206725391110 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_9148944112261883240 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_17059252076331742023 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_5909993114900131582 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_76850238859452664 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_11806233953646686660 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_4513518523240599288 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_17302959971721707905 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_343561098857708859 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_10933603360937770162 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_5939585637043612377 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_926850140766554717 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_14130956085086216309 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_5489015809402732143 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_14965992491863948678 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_5410292034528737978 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_13346168384460070023 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_656504553341245004 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_13942169516596578756 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_10359040817230631650 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_6615598077256742699 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_10929932706970600539 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_16777311656950249953 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_5755931224843922125 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_4424995828139713288 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_8379788673457415651 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_15751980557992133071 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_6294240248661113534 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_5415635165986361316 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_13476315319404720102 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_11178019536525605013 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_9732592809260545408 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_5649399487895989283 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_7607764080623554972 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_16627262399842611926 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_3062985099193532988 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_7295649166717454974 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_6387029915380404911 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_8796176936702746444 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_895979967389369737 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_15857530588114739792 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_14306786679466224459 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_15643093472950834127 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_9153071520979308844 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_11235367557640164451 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_13206637506193037070 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_10890088338525861942 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_1770900608662867293 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_2863847232572810242 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_5455770008480316890 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_4050352751663860944 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_3950132672432465235 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_17941493028180355837 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_11732486927081379069 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_1461602344540623518 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_4038275062951735989 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_7960033745463539536 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_849889376588759621 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_17605990713845524592 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_11280380262157891326 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_2229946091299774796 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_13952115018196293106 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_10472343127823267669 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_10736233701358077393 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_14352427215905819772 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_3237006670707881287 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_262665811119515505 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_8033347973149795175 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_15984434260518181928 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_647835847719270084 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_783274458784423094 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_14252583872575086508 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_18374587251523371028 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_18257451741349463416 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_16895389999097673737 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_17880241636291676450 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_6231894552559960363 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_11417598919002908249 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_17143911562977911634 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_3474472378408824094 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_14917367599361627154 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_6405318065416906139 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_12044746086517217275 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:49:50             dut.10.240.183.145: set verbose 1
21/03/2021 15:49:50             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:49:50             dut.10.240.183.145: start
21/03/2021 15:49:50             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:49:53             dut.10.240.183.145: 
21/03/2021 15:49:53                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:49:53             dut.10.240.183.145: quit
21/03/2021 15:49:54             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_7798420818464080390 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_11447833390426385738 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_5300331495181091997 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_6125735930648735899 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_16197200497848479687 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_6124615055452605822 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_16867481360821421038 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_5241952089200289507 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_14644686674464394603 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_12903129208605271213 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_5786032600780828856 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_2646155642548208431 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_8471621604391499180 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_8541606363159166672 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_3110567474866199604 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_3734524267489089964 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_5410153959458171752 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_8841522420239786255 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_13480959162139852097 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_7492614835926518873 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_6178681846945169424 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_6775585558717940219 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_14686466008833722194 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_15799862363439514235 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_6680274457603091393 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_13596144307299203113 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_6780785881287996521 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_17824239062406771227 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_17277230616228482137 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_8000722676542434686 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_15497243590259387764 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_16167911182636894273 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_11348597723508773018 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_17710312167907164390 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_10175847347605910012 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_18206390152298621338 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_15507260663997692960 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_2835664887180087941 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_17027369969927724573 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_6629817905882143274 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_12426998071771724048 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_17592371151335139878 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_11654794867359286365 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_15501414201814486171 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_12123089219968959317 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_11200373279964110137 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_14039431541282793697 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_1263472063606404661 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_5675806206725391110 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_9148944112261883240 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_17059252076331742023 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_5909993114900131582 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_76850238859452664 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_11806233953646686660 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_4513518523240599288 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_17302959971721707905 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_343561098857708859 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_10933603360937770162 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_5939585637043612377 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_926850140766554717 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_14130956085086216309 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_5489015809402732143 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_14965992491863948678 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_5410292034528737978 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_13346168384460070023 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_9530030882126980261 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_13942169516596578756 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_10359040817230631650 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_6615598077256742699 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_10929932706970600539 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_16777311656950249953 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_5755931224843922125 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_4424995828139713288 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_8379788673457415651 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_15751980557992133071 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_6294240248661113534 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_5415635165986361316 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_13476315319404720102 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_11178019536525605013 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_9732592809260545408 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_5649399487895989283 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_7607764080623554972 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_16627262399842611926 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_3062985099193532988 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_7295649166717454974 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_6387029915380404911 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_8796176936702746444 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_895979967389369737 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_15857530588114739792 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_14306786679466224459 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_15643093472950834127 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_9153071520979308844 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_11235367557640164451 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_13206637506193037070 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_10890088338525861942 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_1770900608662867293 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_2863847232572810242 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_5455770008480316890 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_656504553341245004 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_3950132672432465235 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_17941493028180355837 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_11732486927081379069 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_1461602344540623518 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_4038275062951735989 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_7960033745463539536 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_849889376588759621 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_17605990713845524592 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_11280380262157891326 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_2229946091299774796 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_13952115018196293106 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_10472343127823267669 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_10736233701358077393 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_14352427215905819772 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_3237006670707881287 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_262665811119515505 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_8033347973149795175 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_15984434260518181928 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_647835847719270084 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_783274458784423094 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_14252583872575086508 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_18374587251523371028 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_18257451741349463416 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_16895389999097673737 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_17880241636291676450 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_6231894552559960363 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_11417598919002908249 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_17143911562977911634 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_3474472378408824094 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_14917367599361627154 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_6405318065416906139 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_12044746086517217275 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_4050352751663860944 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:49:56             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:49:57                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
21/03/2021 15:49:57             dut.10.240.183.145: 
21/03/2021 15:49:57                         tester: 
21/03/2021 15:49:57             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:49:58             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_17069197229600169071 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_11696920758452669787 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_10144337899648961840 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_17693798115336840398 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_14978876696744388931 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_6535877064440834573 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_1184609936508400594 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_16882801749754130107 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_14238784185334899053 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_11797971740623047966 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_14077846551352107031 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_16670363319651924897 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_5969058768577986494 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_7731571158409927240 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_14634557027660957622 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_12862707993877780944 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_5545501976747435192 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_940661543022320952 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_11569630428570373750 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_1180364031420235664 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_12228012142755377055 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_7583528303724073979 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_2623908341101778812 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_13494020714831509150 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_5745966097271868749 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_6484970925041391210 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_17097221470367562600 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_5892904738323672253 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_14266448550658004193 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_2244407787993331633 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_4870842795592765391 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_13961419314568344764 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_17423960652841378366 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_4241809354764570356 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_12694958089104437112 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_876494128929066700 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_12860173274983099742 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_15073098933992590065 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_1008666951234616310 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_15482136259935524357 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_1856256188620843336 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_11524694250884515873 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_6885589128990274592 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_14466754146034780672 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_10793132201906930209 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_9026808273759937478 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_5642508436251446952 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_631459721809828847 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_15391785507167411576 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_14485886993769172065 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_1240541778639023442 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_11036025774001072577 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_1301933487915515811 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_17632310521842189440 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_2171856987599009222 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_6941208177730150040 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_5993575511206002779 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_5793327143634604909 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_12446390268992371672 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_13484732223791776969 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_6779234730486491171 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_16709290897337318064 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_8407973169303583438 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_12855864213100490106 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_9611136605653635595 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_9676327088915788082 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_16432673934113978190 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_3943930152849940054 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_14797128850353511109 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_6812904346963784196 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_4843506125808223316 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_10896587768012227014 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_7573447505402531356 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_1439599376646212054 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_8712634653977295898 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_17102029870086765322 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_5494890011732131366 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_10246786720301141845 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_4361267165629884096 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_447552349026565839 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_7985130997815281591 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_11878066465052037404 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_1469639269256738664 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_14142120152352413872 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_3100603582847994909 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_13164039773888595241 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_17841136613791743526 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_1832640587571085393 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_12654609986954062269 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_17200826544556119517 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_14011703888499307391 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_12006143426191668705 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_4202988872582208567 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_5237700963427689398 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_7201562009345487711 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_27484848149807666 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_1422855418381911100 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_1930795963085894644 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_15711469346995973268 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_11098204601682569831 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_15368344431588808930 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_12384066530506833030 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_7166647926674559533 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_17728221129000613908 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_9247816196348848439 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_2409138930193567151 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_8624472572134938591 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_3201775311495341886 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_13936487777969430246 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_9120827532424648424 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_6502403910598150302 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_2135037164990492663 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_16293886216041578503 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_6893879911840346752 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_2672616906570867580 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_5859175845629265906 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_5796580629130716640 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_15429475211381424656 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_7384616837231265750 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_17812933340133113909 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_15331038094049915594 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_9845785690219415087 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_6109143018863537146 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_12114139063163176293 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_16974043946069778519 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_9034216570074871591 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_18242009795776222345 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_5013402164015224586 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_8140781096886722801 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_16487109294046509650 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_1294246734245582880 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_7752219209295118623 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:50:08             dut.10.240.183.145: set verbose 1
21/03/2021 15:50:08             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:50:08             dut.10.240.183.145: start
21/03/2021 15:50:08             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:50:12             dut.10.240.183.145: 
21/03/2021 15:50:12                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:50:12             dut.10.240.183.145: quit
21/03/2021 15:50:13             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_11696920758452669787 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_10144337899648961840 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_17693798115336840398 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_14978876696744388931 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_6535877064440834573 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_1184609936508400594 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_16882801749754130107 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_14238784185334899053 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_11797971740623047966 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_14077846551352107031 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_16670363319651924897 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_5969058768577986494 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_7731571158409927240 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_14634557027660957622 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_12862707993877780944 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_5545501976747435192 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_940661543022320952 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_11569630428570373750 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_1180364031420235664 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_12228012142755377055 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_7583528303724073979 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_2623908341101778812 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_13494020714831509150 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_5745966097271868749 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_6484970925041391210 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_17097221470367562600 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_5892904738323672253 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_14266448550658004193 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_2244407787993331633 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_4870842795592765391 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_13961419314568344764 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_17423960652841378366 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_17069197229600169071 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_12694958089104437112 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_876494128929066700 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_12860173274983099742 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_15073098933992590065 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_1008666951234616310 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_15482136259935524357 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_1856256188620843336 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_11524694250884515873 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_6885589128990274592 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_14466754146034780672 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_10793132201906930209 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_9026808273759937478 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_5642508436251446952 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_631459721809828847 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_15391785507167411576 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_14485886993769172065 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_1240541778639023442 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_11036025774001072577 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_1301933487915515811 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_17632310521842189440 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_2171856987599009222 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_6941208177730150040 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_5993575511206002779 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_5793327143634604909 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_12446390268992371672 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_13484732223791776969 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_6779234730486491171 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_16709290897337318064 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_8407973169303583438 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_12855864213100490106 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_9611136605653635595 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_9676327088915788082 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_4241809354764570356 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_3943930152849940054 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_14797128850353511109 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_6812904346963784196 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_4843506125808223316 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_10896587768012227014 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_7573447505402531356 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_1439599376646212054 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_8712634653977295898 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_17102029870086765322 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_5494890011732131366 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_10246786720301141845 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_4361267165629884096 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_447552349026565839 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_7985130997815281591 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_11878066465052037404 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_1469639269256738664 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_14142120152352413872 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_3100603582847994909 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_13164039773888595241 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_17841136613791743526 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_1832640587571085393 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_12654609986954062269 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_17200826544556119517 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_14011703888499307391 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_12006143426191668705 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_4202988872582208567 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_5237700963427689398 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_7201562009345487711 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_27484848149807666 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_1422855418381911100 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_1930795963085894644 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_15711469346995973268 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_16432673934113978190 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_15368344431588808930 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_12384066530506833030 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_7166647926674559533 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_17728221129000613908 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_9247816196348848439 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_2409138930193567151 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_8624472572134938591 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_3201775311495341886 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_13936487777969430246 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_9120827532424648424 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_6502403910598150302 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_2135037164990492663 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_16293886216041578503 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_6893879911840346752 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_2672616906570867580 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_5859175845629265906 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_5796580629130716640 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_15429475211381424656 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_7384616837231265750 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_17812933340133113909 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_15331038094049915594 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_9845785690219415087 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_6109143018863537146 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_12114139063163176293 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_16974043946069778519 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_9034216570074871591 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_18242009795776222345 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_5013402164015224586 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_8140781096886722801 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_16487109294046509650 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_1294246734245582880 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_7752219209295118623 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_11098204601682569831 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:50:15             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:50:15                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
21/03/2021 15:50:16             dut.10.240.183.145: 
21/03/2021 15:50:16                         tester: 
21/03/2021 15:50:16             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:50:17             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_17231247300181236214 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_5442060457199545658 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_7472158907754898585 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_9639859094923837636 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_7104681711096582774 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_15380322413679429946 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_379584619310819259 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_7561196084505789656 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_5877202390581535321 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_7328361773693854095 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_2891153852609134512 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_7010416132833647971 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_16453816562010412571 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_10561131573639238496 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_13902799418563468046 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_18182468414994815307 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_12528554303235233322 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_10825714049356671518 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_661151699399392059 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_10321728057172168742 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_8588545332699109989 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_5630374099599284883 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_7364461161169943514 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_15715377731496202358 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_3424279945664125660 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_18117622094625937796 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_7311997588704980948 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_12553172410827745440 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_13981301264371340634 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_5943154313052120124 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_16472272525326423944 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_10505496339114218248 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_15442801746313352440 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_10545397362902770915 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_14662945333630976159 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_9036510343400191323 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_14685604858398168288 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_12129337133959280411 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_2148348078231338956 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_11612321607216187477 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_15189588746629785504 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_9559701992104532326 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_10123960067289355788 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_8069497215455440121 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_10474332017170077688 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_16298929067524194827 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_6947953026965356525 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_6331598845970238592 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_2227286418679710422 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_15447044819456281892 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_9457351187527050913 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_13822649677436497130 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_8046468235158008640 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_13252238865177432129 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_9166269531774217571 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_12835948590455463933 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_15720213374838851061 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_5970909322326700714 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_12218768843905022608 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_14128465786259588201 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_1019510853626376395 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_5687495357473192516 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_15994550374316999139 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_18313893893752569082 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_11514692079376973568 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_14500355620621223930 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_10415491057103480453 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_11471354356562967088 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_15787958843705773008 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_8011028754602177923 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_1138464702019730791 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_14816320984352031976 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_2165907178473683298 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_17912368762592095233 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_15597485758624192262 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_9657480722167835040 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_14094285812078562192 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_13844548512902601789 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_8936056854277774678 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_15425471225757933771 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_9857823264746266257 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_17666109072688533796 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_1778349722798045403 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_2799375620013106526 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_13843743541676441693 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_11859943212207005500 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_10509022088660312210 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_12326591437249489851 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_8863024939326700220 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_7497961453623140861 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_9359292140307877274 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_17902128048675431889 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_11532058159129910224 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_17621367906274071780 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_12823173160946789358 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_1965416598088577670 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_2591730591067059240 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_7115976786422548103 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_3509287662024054503 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_2942549223314971554 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_10918388176194438665 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_229250488867077330 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_8068377370945235747 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_3153342103161117883 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_9997910082779282650 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_13009926517916047416 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_13316989961297178078 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_5977539151923159999 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_7487256035790284046 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_5639136132757399762 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_9648837045945731574 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_180359449397989092 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_9756912516848516670 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_17234216820867046718 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_16193880127518756262 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_7391787022651354954 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_9789271011845732535 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_15039505220762478958 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_2184614692212672945 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_3397940540868778526 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_7183328556543040621 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_1270354329472052866 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_3613562496504213071 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_16400691643449432447 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_14522381968623402845 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_16993222218423650094 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_2436010791419954984 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_17172711192576088432 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_7566235902191878927 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_14778995694245956779 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_4483666694025594760 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_3587271509836054489 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:50:27             dut.10.240.183.145: set verbose 1
21/03/2021 15:50:27             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:50:27             dut.10.240.183.145: start
21/03/2021 15:50:27             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:50:30             dut.10.240.183.145: 
21/03/2021 15:50:30                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:50:30             dut.10.240.183.145: quit
21/03/2021 15:50:32             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_5442060457199545658 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_7472158907754898585 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_9639859094923837636 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_7104681711096582774 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_15380322413679429946 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_379584619310819259 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_7561196084505789656 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_5877202390581535321 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_7328361773693854095 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_2891153852609134512 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_7010416132833647971 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_16453816562010412571 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_10561131573639238496 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_13902799418563468046 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_18182468414994815307 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_12528554303235233322 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_10825714049356671518 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_661151699399392059 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_10321728057172168742 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_8588545332699109989 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_5630374099599284883 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_7364461161169943514 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_15715377731496202358 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_3424279945664125660 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_18117622094625937796 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_7311997588704980948 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_12553172410827745440 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_13981301264371340634 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_5943154313052120124 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_16472272525326423944 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_10505496339114218248 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_15442801746313352440 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_17231247300181236214 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_14662945333630976159 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_9036510343400191323 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_14685604858398168288 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_12129337133959280411 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_2148348078231338956 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_11612321607216187477 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_15189588746629785504 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_9559701992104532326 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_10123960067289355788 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_8069497215455440121 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_10474332017170077688 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_16298929067524194827 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_6947953026965356525 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_6331598845970238592 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_2227286418679710422 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_15447044819456281892 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_9457351187527050913 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_13822649677436497130 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_8046468235158008640 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_13252238865177432129 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_9166269531774217571 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_12835948590455463933 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_15720213374838851061 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_5970909322326700714 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_12218768843905022608 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_14128465786259588201 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_1019510853626376395 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_5687495357473192516 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_15994550374316999139 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_18313893893752569082 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_11514692079376973568 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_14500355620621223930 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_10545397362902770915 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_11471354356562967088 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_15787958843705773008 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_8011028754602177923 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_1138464702019730791 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_14816320984352031976 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_2165907178473683298 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_17912368762592095233 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_15597485758624192262 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_9657480722167835040 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_14094285812078562192 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_13844548512902601789 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_8936056854277774678 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_15425471225757933771 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_9857823264746266257 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_17666109072688533796 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_1778349722798045403 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_2799375620013106526 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_13843743541676441693 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_11859943212207005500 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_10509022088660312210 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_12326591437249489851 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_8863024939326700220 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_7497961453623140861 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_9359292140307877274 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_17902128048675431889 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_11532058159129910224 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_17621367906274071780 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_12823173160946789358 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_1965416598088577670 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_2591730591067059240 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_7115976786422548103 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_3509287662024054503 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_10415491057103480453 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_10918388176194438665 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_229250488867077330 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_8068377370945235747 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_3153342103161117883 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_9997910082779282650 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_13009926517916047416 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_13316989961297178078 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_5977539151923159999 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_7487256035790284046 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_5639136132757399762 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_9648837045945731574 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_180359449397989092 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_9756912516848516670 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_17234216820867046718 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_16193880127518756262 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_7391787022651354954 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_9789271011845732535 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_15039505220762478958 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_2184614692212672945 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_3397940540868778526 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_7183328556543040621 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_1270354329472052866 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_3613562496504213071 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_16400691643449432447 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_14522381968623402845 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_16993222218423650094 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_2436010791419954984 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_17172711192576088432 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_7566235902191878927 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_14778995694245956779 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_4483666694025594760 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_3587271509836054489 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_2942549223314971554 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:50:34             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:50:34                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Begin
21/03/2021 15:50:34             dut.10.240.183.145: 
21/03/2021 15:50:34                         tester: 
21/03/2021 15:50:34             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
21/03/2021 15:50:35             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_10296513147111590439 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_13766263044999287436 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_9660081820738040826 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_710949161689432350 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_5868258450226089101 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_12864535578959066596 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_2583132482271205889 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_2162760846478856552 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_4858397988665115204 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_16072167802039209623 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_1746789873690988320 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_4554053388175856503 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_16906079158273204231 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_13261044712728525412 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_15850342204335812536 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_8859382589151972405 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_5946304923262043716 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_6646873159854787483 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_5321441057091309267 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_2330944063591331388 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_17544170949799192263 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_18042922607994533285 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_6339546628690002042 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_14717595845068830311 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_1955226314613372299 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_14167460844418660866 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_7800498885279713514 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_13009042615196839035 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_10113289518069217171 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_14596071033602791327 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_15944305986183956069 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_17273162744313265423 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_1266332266963683033 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_2205253076486589671 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_7277243187557124754 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_6705933500738298358 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_4300793306601827391 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_2456713886438381784 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_14906607314365964034 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_2200986484058718363 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_15367483978822079089 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_1802818768816803800 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_6564893045680108277 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_7432741587417162684 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_15908930316547469085 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_10781343972701428573 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_14525997580839674078 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_12391775911913111147 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_16347791839168407844 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_85665191233459634 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_11905576365897135019 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_11391358443609492574 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_18225828493046417593 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_2617938914311932041 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_6369275707971452634 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_16315485417790027857 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_4042058902713511745 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_4504577510030991617 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_18238079833378786956 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_10643107574301877912 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_5055916859841057401 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_9592020175066967337 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_9668985543707521979 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_1051904196400469283 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_14460585008909995361 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_16707575240954754223 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_77155806831397639 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_5462054593825034807 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_13654756754028630911 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_3953485649992732866 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_11431263127871659977 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_8924064600014045726 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_4750925192636377188 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_12656724414864332100 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_661001769492455376 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_2715317701888479432 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_14605211653429135930 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_10497224962219890662 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_11256929317561084593 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_971435576814505684 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_15892805813901303106 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_1044736766295185087 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_2810054143880680363 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_4241916660093979470 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_13044423134877955471 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_6896866362538439447 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_18068205876506965287 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_5306289241941272325 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_627643992850573783 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10364317606116401471 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_13641602122410784871 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_13132344249566040116 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_5013058538841744744 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_12278267112433713766 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_3953071087321242045 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_8922954162567279700 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_3960221139075996783 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_7991831208730587343 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_9844678652445098254 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_11151366100869207209 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_9224299110655173910 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_17277792687618930902 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_5102060775735319628 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_997764884326504449 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_11310662790942981635 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_12486197708824558832 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_13038068030412074926 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_8543435949238910277 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_6817976539024463831 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_11298781286192918952 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_9984900564927636241 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_8900374850544871002 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_14224269902336793689 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_10539046353876258325 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_5557695837810623035 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_5381177589674192328 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_6076065582259463063 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_14254955835330046976 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_9664204612470529627 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_3344609604275640935 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_1601175117547555793 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_16225677646781720381 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_9789750152885906323 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_1880036215436174724 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11832519515316105656 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_3147310381367409287 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_14555092132149383476 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_477568043538066808 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_15212126199605523173 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_4212653054498487015 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_8578896758261279878 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_14460617289925254584 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:50:45             dut.10.240.183.145: set verbose 1
21/03/2021 15:50:45             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:50:45             dut.10.240.183.145: start
21/03/2021 15:50:45             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
21/03/2021 15:50:49             dut.10.240.183.145: 
21/03/2021 15:50:49                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Result FAILED: 'ip_offset value error, case test failed'
21/03/2021 15:50:49             dut.10.240.183.145: quit
21/03/2021 15:50:50             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_13766263044999287436 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_9660081820738040826 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_710949161689432350 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_5868258450226089101 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_12864535578959066596 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_2583132482271205889 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_2162760846478856552 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_4858397988665115204 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_16072167802039209623 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_1746789873690988320 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_4554053388175856503 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_16906079158273204231 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_13261044712728525412 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_15850342204335812536 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_8859382589151972405 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_5946304923262043716 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_6646873159854787483 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_5321441057091309267 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_2330944063591331388 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_17544170949799192263 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_18042922607994533285 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_6339546628690002042 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_14717595845068830311 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_1955226314613372299 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_14167460844418660866 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_7800498885279713514 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_13009042615196839035 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_10113289518069217171 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_14596071033602791327 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_15944305986183956069 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_17273162744313265423 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_1266332266963683033 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_10296513147111590439 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_7277243187557124754 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_6705933500738298358 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_4300793306601827391 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_2456713886438381784 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_14906607314365964034 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_2200986484058718363 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_15367483978822079089 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_1802818768816803800 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_6564893045680108277 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_7432741587417162684 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_15908930316547469085 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_10781343972701428573 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_14525997580839674078 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_12391775911913111147 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_16347791839168407844 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_85665191233459634 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_11905576365897135019 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_11391358443609492574 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_18225828493046417593 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_2617938914311932041 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_6369275707971452634 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_16315485417790027857 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_4042058902713511745 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_4504577510030991617 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_18238079833378786956 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_10643107574301877912 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_5055916859841057401 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_9592020175066967337 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_9668985543707521979 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_1051904196400469283 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_14460585008909995361 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_16707575240954754223 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_2205253076486589671 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_5462054593825034807 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_13654756754028630911 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_3953485649992732866 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_11431263127871659977 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_8924064600014045726 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_4750925192636377188 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_12656724414864332100 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_661001769492455376 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_2715317701888479432 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_14605211653429135930 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_10497224962219890662 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_11256929317561084593 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_971435576814505684 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_15892805813901303106 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_1044736766295185087 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_2810054143880680363 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_4241916660093979470 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_13044423134877955471 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_6896866362538439447 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_18068205876506965287 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_5306289241941272325 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_627643992850573783 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10364317606116401471 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_13641602122410784871 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_13132344249566040116 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_5013058538841744744 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_12278267112433713766 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_3953071087321242045 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_8922954162567279700 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_3960221139075996783 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_7991831208730587343 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_9844678652445098254 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_77155806831397639 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_9224299110655173910 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_17277792687618930902 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_5102060775735319628 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_997764884326504449 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_11310662790942981635 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_12486197708824558832 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_13038068030412074926 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_8543435949238910277 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_6817976539024463831 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_11298781286192918952 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_9984900564927636241 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_8900374850544871002 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_14224269902336793689 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_10539046353876258325 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_5557695837810623035 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_5381177589674192328 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_6076065582259463063 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_14254955835330046976 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_9664204612470529627 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_3344609604275640935 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_1601175117547555793 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_16225677646781720381 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_9789750152885906323 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_1880036215436174724 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11832519515316105656 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_3147310381367409287 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_14555092132149383476 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_477568043538066808 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_15212126199605523173 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_4212653054498487015 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_8578896758261279878 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_14460617289925254584 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_11151366100869207209 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:50:52             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:50:53                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
21/03/2021 15:50:53             dut.10.240.183.145: 
21/03/2021 15:50:53                         tester: 
21/03/2021 15:50:53             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=vlan --file-prefix=dpdk_13332_20210321140503  --log-level="ice,8" -- -i --rxq=32 --txq=32 --portmask=0x1 --nb-cores=2
21/03/2021 15:50:54             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_13332_20210321140503/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_14226275076152911614 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_15045783625293808315 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_8727244086080121742 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_18128267845294296800 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_10475482115695392383 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_9585476550431334076 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_1320916331881967214 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_7989469355083471712 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_1279428217850013060 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_8723647227617318625 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_2047479025954571700 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_2728413682562826111 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_8264296190872003100 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_4968041151738691255 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_12637187995617084582 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_1034451939108869671 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_3703645955861479054 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_12419921193315952931 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_3191616709889807423 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_14049583542240017255 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_13836716242053151470 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_5604931448028683412 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_3902540090010606982 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_4764541258528862669 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_5303564173822029121 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_9398238458021638172 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_14105193869619774471 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_3180264111288216956 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_14019044043012139543 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_685365363527285231 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_10875847376732619718 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_9102657975350705780 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_2578802943940979815 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_3006639046070422849 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_5824912487324344679 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_6585957653445059997 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_8975957544284161630 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_17584907328705500218 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_8403829200818428672 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_15519667154565477189 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_9968000270508593832 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_3985585966057809951 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_14388217288030498568 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_5732680522207644249 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_5698972762076518655 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_18247917929345271326 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_9843305270582871862 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_18107519902348026117 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_13994851829306694205 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_3601960412738376246 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_3344480770947695233 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_5276381884136490751 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_12099945288665442736 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_9157491147403357085 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_11578474875888728021 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_12008886011165622565 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_12553801477113668820 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_15630159730613258861 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_5059966160086752593 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_6429470234045573262 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_597432745842611503 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_2315424763337405035 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_14177656033391225868 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_2126529106874409978 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_16301089863770393164 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_7041766878827233768 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_17403729693253696159 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_2011065312662221342 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_17657672844636418962 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_7343992145455086417 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_16458321940155726208 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_11641206073614387768 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_8973288750836435304 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_11570535483769063033 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_13995485083133010344 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_6282348560697749492 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_3973058538300312680 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_3316893227267152067 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_3823450032899516314 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_11827623410344378211 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_1991013384389322739 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_3451744370413854023 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_13270616030987758592 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_4440910257410910290 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_5868940758958551999 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_18120305248688170948 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_17053834123504281873 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_2608058610342808827 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_15469174747053449968 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_15369876213443335714 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_2092254789253126410 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_11795006010612239527 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_7042978559371583867 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_17447443418247099949 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_7822685068951214399 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_619544784498225748 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_9918304416785015064 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_18361762055331984369 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_1230919828516806412 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_17762998173596393706 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_3998719495160536369 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_3899650214343287841 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_6524825506708369012 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_2246521202351337803 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_7311510278869869504 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_10483773284805234221 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_5121626980123605185 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_443229179639584560 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_3684254501258995552 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_1012730821377673860 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_18328359788512671393 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_7529392063117916388 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_17784779991820694747 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_1333262004432201125 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_3365213969962985311 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_12006624746288175688 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_16648140545731404596 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_1702967815767510414 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_3188724876353873713 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_6790795779570194060 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_1655474629146040425 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_6124835195221885229 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_7405046306266220718 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_5359013687382749011 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11830662119340075370 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_14834870733258466253 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_10726038934390176975 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_18140806906993882100 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_7471177286921258981 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_4291317468331084524 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_2289792379493607691 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_1587223732377150273 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction type 1 is not supported in hardware
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_program_hw_rx_queue(): currently package doesn't support RXDID (17)
ice_rx_queue_start(): fail to program RX queue 0
ice_dev_start(): fail to start Rx queue 0
Fail to start port 0
Please stop the ports first
Done
21/03/2021 15:51:04             dut.10.240.183.145: set verbose 1
21/03/2021 15:51:04             dut.10.240.183.145: 
Change verbose level from 0 to 1
21/03/2021 15:51:04             dut.10.240.183.145: set fwd io
21/03/2021 15:51:04             dut.10.240.183.145: 
Set io packet forwarding mode
21/03/2021 15:51:04             dut.10.240.183.145: set promisc all off
21/03/2021 15:51:04             dut.10.240.183.145: 
21/03/2021 15:51:04             dut.10.240.183.145: clear port stats all
21/03/2021 15:51:04             dut.10.240.183.145: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
21/03/2021 15:51:04             dut.10.240.183.145: start
21/03/2021 15:51:04             dut.10.240.183.145: 
Not all ports were ed
21/03/2021 15:51:08             dut.10.240.183.145: 
21/03/2021 15:51:08                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Result FAILED: 'The packet does not carry a VLAN tag.'
21/03/2021 15:51:08             dut.10.240.183.145: quit
21/03/2021 15:51:09             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
ice_tx_queue_stop(): Failed to disable Lan Tx queue
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_15045783625293808315 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_8727244086080121742 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_18128267845294296800 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_10475482115695392383 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_9585476550431334076 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_1320916331881967214 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_7989469355083471712 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_1279428217850013060 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_8723647227617318625 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_2047479025954571700 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_2728413682562826111 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_8264296190872003100 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_4968041151738691255 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_12637187995617084582 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_1034451939108869671 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_3703645955861479054 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_12419921193315952931 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_3191616709889807423 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_14049583542240017255 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_13836716242053151470 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_5604931448028683412 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_3902540090010606982 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_4764541258528862669 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_5303564173822029121 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_9398238458021638172 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_14105193869619774471 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_3180264111288216956 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_14019044043012139543 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_685365363527285231 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_10875847376732619718 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_9102657975350705780 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_2578802943940979815 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_14226275076152911614 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_5824912487324344679 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_6585957653445059997 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_8975957544284161630 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_17584907328705500218 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_8403829200818428672 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_15519667154565477189 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_9968000270508593832 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_3985585966057809951 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_14388217288030498568 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_5732680522207644249 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_5698972762076518655 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_18247917929345271326 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_9843305270582871862 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_18107519902348026117 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_13994851829306694205 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_3601960412738376246 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_3344480770947695233 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_5276381884136490751 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_12099945288665442736 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_9157491147403357085 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_11578474875888728021 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_12008886011165622565 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_12553801477113668820 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_15630159730613258861 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_5059966160086752593 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_6429470234045573262 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_597432745842611503 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_2315424763337405035 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_14177656033391225868 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_2126529106874409978 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_16301089863770393164 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_7041766878827233768 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_3006639046070422849 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_2011065312662221342 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_17657672844636418962 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_7343992145455086417 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_16458321940155726208 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_11641206073614387768 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_8973288750836435304 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_11570535483769063033 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_13995485083133010344 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_6282348560697749492 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_3973058538300312680 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_3316893227267152067 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_3823450032899516314 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_11827623410344378211 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_1991013384389322739 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_3451744370413854023 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_13270616030987758592 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_4440910257410910290 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_5868940758958551999 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_18120305248688170948 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_17053834123504281873 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_2608058610342808827 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_15469174747053449968 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_15369876213443335714 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_2092254789253126410 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_11795006010612239527 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_7042978559371583867 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_17447443418247099949 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_7822685068951214399 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_619544784498225748 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_9918304416785015064 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_18361762055331984369 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_1230919828516806412 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_17403729693253696159 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_3998719495160536369 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_3899650214343287841 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_6524825506708369012 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_2246521202351337803 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_7311510278869869504 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_10483773284805234221 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_5121626980123605185 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_443229179639584560 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_3684254501258995552 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_1012730821377673860 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_18328359788512671393 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_7529392063117916388 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_17784779991820694747 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_1333262004432201125 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_3365213969962985311 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_12006624746288175688 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_16648140545731404596 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_1702967815767510414 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_3188724876353873713 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_6790795779570194060 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_1655474629146040425 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_6124835195221885229 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_7405046306266220718 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_5359013687382749011 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11830662119340075370 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_14834870733258466253 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_10726038934390176975 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_18140806906993882100 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_7471177286921258981 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_4291317468331084524 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_2289792379493607691 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_1587223732377150273 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_17762998173596393706 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:51:11             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
21/03/2021 15:51:11                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Begin
21/03/2021 15:51:12             dut.10.240.183.145: 
21/03/2021 15:51:12                         tester: 
21/03/2021 15:51:12             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:07:00.0,proto_xtr=vxlan -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
21/03/2021 15:51:12             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
Option -w, --pci-whitelist is deprecated, use -a, --allow option instead
EAL: Detected static linkage of DPDK
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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
handle_proto_xtr_arg(): The protocol extraction parameter is wrong : 'vxlan'
ice_dev_init(): Failed to parse devargs
EAL: Releasing pci mapped resource for 0000:07:00.0
EAL: Calling pci_unmap_resource for 0000:07:00.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:07:00.0 at 0x2202000000
EAL: Requested device 0000:07:00.0 cannot be used
EAL: Bus (pci) probe failed.
testpmd: No probed ethernet devices
Interactive-mode selected
Fail: input rxq (32) can't be greater than max_rx_queues (0) of port 0
EAL: Error - exiting with code: 1
  Cause: rxq 32 invalid - must be >= 0 && <= 0
21/03/2021 15:51:12             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:07:00.0 --log-level='ice,8' -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
21/03/2021 15:51:14             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
Option -w, --pci-whitelist is deprecated, use -a, --allow option instead
EAL: Detected static linkage of DPDK
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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_1257276607307580043 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_2551003685008655882 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_4951563365754408265 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_4741024320958778962 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_11441243441856900523 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_2240924449540795297 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_13566548467611576588 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_16636317045966197424 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_16058145650689825959 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_13995967165216437746 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_2401907470468975712 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_17592268323101473970 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_13491271402489782517 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_9461502499063197930 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_649479490577969372 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_4182711858912926396 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_15571824645931904705 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_5372823164892942118 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_6046881329848773881 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_13817086193255527648 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_4711676469251203827 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_9858535543304200258 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_14463075280300516493 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_4845948268250514253 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_1026900183721006488 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_6067782010910561625 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_2751006224956482742 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_7333715557687876254 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_2394484799982737341 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_12333504518220130372 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_7799677241655681705 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_13954542375824868121 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_2106504607195596120 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_9737277807458561505 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_4289696402118533239 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_11502667313629480841 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_10106472433119383214 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_3873777569920705976 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_4652742910510343454 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_4046389606119828749 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_10295286350238976334 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_11049133771980485218 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_1497229682664727726 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_17554519331732206694 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_9514888556984843010 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_10055436113935032504 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_8695330786501963537 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_14056289660078678115 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_14308360836402401032 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_2969362623997096273 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_5240879206747231695 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_8911018258865914376 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_8665554460935108486 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_9590265139160022134 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_6625944738213095753 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_9497448285581409170 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_4504728871249651245 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_10114407743669882156 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_15479159842346463061 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_4095011301056055041 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_1116752252637686708 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_13417984557195898571 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_6894725491752159535 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_18416972049064135103 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_9679360826152392841 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_1186417099369585778 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_12016013718134249559 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_372467034432857683 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_11116229916186804475 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_2046355417176944247 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_4097253251940147564 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_9708714123168705084 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_584492038628796404 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_9336105525275059884 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_3185958392885719157 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_7145161918589545497 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_12028693410923757317 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_15692620314067429463 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_18083811992311443133 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_7752641277494421932 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_8653986233038030113 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_9126748445253542618 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_15334039336104708105 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_2196344194401770250 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_11763517262160415030 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_3675390294809092626 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_2777857561142826018 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_16985568795583051565 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_5558105901738735832 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10610181623889871711 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_44544861264117468 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_6715042658112831775 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_5201885673423017241 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_17047960642207004942 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_2688981387897372345 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_7161548547828702928 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_18332654051611436540 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_17859173507993362428 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_766857314157438909 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_5776464911532362917 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_8097605826376482683 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_5579039359320961515 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_15920504459303160412 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_18220559446049748523 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_6051513606372647623 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_11957452247731211873 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_2326699810607776740 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_2724183291317153915 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_14235586487692566229 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_14584730251178262397 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_4478860223678270058 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_5341950773282234475 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_1958243588334731473 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12725477377311584108 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_16964043197911303300 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_13978700821287780794 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_6631815258871352955 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_11003196504889668556 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_4911175126928250499 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_18334289406096649585 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_8876307943673119221 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_8040746580941922165 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_11728844698122948652 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_8958768971080864687 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_18195980404808512486 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_9303862099920788873 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_8933291402207245158 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_2917852306417811533 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_14959950199534283104 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_9736491004719456588 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_5750212658781813724 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_14148050431400653187 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 22
ice_set_rx_function():  >>
ice_set_rx_function(): Using Vector Rx (port 0).
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
21/03/2021 15:51:14             dut.10.240.183.145: quit
21/03/2021 15:51:15             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_2551003685008655882 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_4951563365754408265 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_4741024320958778962 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_11441243441856900523 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_2240924449540795297 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_13566548467611576588 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_16636317045966197424 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_16058145650689825959 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_13995967165216437746 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_2401907470468975712 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_17592268323101473970 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_13491271402489782517 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_9461502499063197930 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_649479490577969372 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_4182711858912926396 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_15571824645931904705 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_5372823164892942118 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_6046881329848773881 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_13817086193255527648 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_4711676469251203827 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_9858535543304200258 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_14463075280300516493 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_4845948268250514253 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_1026900183721006488 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_6067782010910561625 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_2751006224956482742 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_7333715557687876254 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_2394484799982737341 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_12333504518220130372 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_7799677241655681705 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_13954542375824868121 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_2106504607195596120 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_1257276607307580043 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_4289696402118533239 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_11502667313629480841 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_10106472433119383214 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_3873777569920705976 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_4652742910510343454 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_4046389606119828749 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_10295286350238976334 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_11049133771980485218 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_1497229682664727726 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_17554519331732206694 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_9514888556984843010 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_10055436113935032504 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_8695330786501963537 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_14056289660078678115 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_14308360836402401032 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_2969362623997096273 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_5240879206747231695 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_8911018258865914376 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_8665554460935108486 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_9590265139160022134 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_6625944738213095753 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_9497448285581409170 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_4504728871249651245 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_10114407743669882156 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_15479159842346463061 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_4095011301056055041 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_1116752252637686708 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_13417984557195898571 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_6894725491752159535 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_18416972049064135103 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_9679360826152392841 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_1186417099369585778 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_9737277807458561505 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_372467034432857683 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_11116229916186804475 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_2046355417176944247 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_4097253251940147564 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_9708714123168705084 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_584492038628796404 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_9336105525275059884 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_3185958392885719157 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_7145161918589545497 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_12028693410923757317 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_15692620314067429463 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_18083811992311443133 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_7752641277494421932 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_8653986233038030113 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_9126748445253542618 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_15334039336104708105 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_2196344194401770250 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_11763517262160415030 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_3675390294809092626 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_2777857561142826018 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_16985568795583051565 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_5558105901738735832 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10610181623889871711 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_44544861264117468 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_6715042658112831775 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_5201885673423017241 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_17047960642207004942 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_2688981387897372345 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_7161548547828702928 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_18332654051611436540 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_17859173507993362428 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_766857314157438909 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_12016013718134249559 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_8097605826376482683 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_5579039359320961515 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_15920504459303160412 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_18220559446049748523 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_6051513606372647623 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_11957452247731211873 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_2326699810607776740 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_2724183291317153915 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_14235586487692566229 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_14584730251178262397 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_4478860223678270058 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_5341950773282234475 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_1958243588334731473 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12725477377311584108 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_16964043197911303300 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_13978700821287780794 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_6631815258871352955 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_11003196504889668556 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_4911175126928250499 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_18334289406096649585 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_8876307943673119221 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_8040746580941922165 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_11728844698122948652 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_8958768971080864687 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_18195980404808512486 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_9303862099920788873 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_8933291402207245158 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_2917852306417811533 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_14959950199534283104 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_9736491004719456588 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_5750212658781813724 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_14148050431400653187 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_5776464911532362917 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
21/03/2021 15:51:15                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Result PASSED:
21/03/2021 15:51:17             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
21/03/2021 15:51:18                            dts: 
TEST SUITE ENDED: TestFlexibleRxd
21/03/2021 15:53:08                TestFlexibleRxd: package version:1.3.24.0
22/03/2021 05:46:08                            dts: 
TEST SUITE : TestFlexibleRxd
22/03/2021 05:46:08                            dts: NIC :        columbiaville_25g
22/03/2021 05:46:08             dut.10.240.183.145: 
22/03/2021 05:46:09                         tester: 
22/03/2021 05:46:10             dut.10.240.183.145: rm -rf x86_64-native-linuxapp-gcc
22/03/2021 05:46:10             dut.10.240.183.145: 
22/03/2021 05:46:10             dut.10.240.183.145: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
22/03/2021 05:46:17             dut.10.240.183.145: The Meson build system
Version: 0.56.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.05.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:238: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" :  
Fetching value of define "__AVX512BW__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
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"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
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: YES 2.12
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__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
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 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
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"
Run-time dependency libelf found: NO (tried pkgconfig)
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: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-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 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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 "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-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)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
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 "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-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 (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, sfc_efx, qat, 
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, ionic, 
	ixgbe, kni, liquidio, memif, netvsc, nfp, null, octeontx, 
	octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, softnic, 
	tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	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, "libAArch64crypto"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1019

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
22/03/2021 05:46:17             dut.10.240.183.145: ninja -C x86_64-native-linuxapp-gcc
22/03/2021 05:47:54             dut.10.240.183.145: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2513] Generating rte_kvargs_def with a custom command
[2/2513] Generating rte_kvargs_mingw with a custom command
[3/2513] Generating rte_telemetry_def with a custom command
[4/2513] Generating rte_telemetry_mingw with a custom command
[5/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[6/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[7/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[8/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[9/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[10/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[11/2513] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[12/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[13/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[14/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[15/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[16/2513] Linking static target lib/librte_kvargs.a
[17/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[18/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_version.c.o
[19/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[20/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[21/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[22/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[23/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[24/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[25/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[26/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[27/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[28/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_rte_thread.c.o
[29/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[30/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[31/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[32/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[33/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[34/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[35/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[36/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[37/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[38/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[39/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[40/2513] Generating rte_eal_mingw with a custom command
[41/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[42/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[43/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[44/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[45/2513] Generating rte_rcu_mingw with a custom command
[46/2513] Generating rte_rcu_def with a custom command
[47/2513] Generating rte_ring_def with a custom command
[48/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[49/2513] Generating rte_ring_mingw with a custom command
[50/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[51/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[52/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[53/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[54/2513] Generating rte_eal_def with a custom command
[55/2513] Generating rte_mempool_def with a custom command
[56/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[57/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[58/2513] Generating rte_mempool_mingw with a custom command
[59/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[60/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[61/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[62/2513] Generating rte_mbuf_def with a custom command
[63/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[64/2513] Generating rte_mbuf_mingw with a custom command
[65/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[66/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[67/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_power_intrinsics.c.o
[68/2513] Generating rte_net_def with a custom command
[69/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[70/2513] Generating rte_net_mingw with a custom command
[71/2513] Generating rte_meter_def with a custom command
[72/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[73/2513] Linking static target lib/librte_telemetry.a
[74/2513] Generating rte_meter_mingw with a custom command
[75/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[76/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[77/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[78/2513] Generating rte_ethdev_mingw with a custom command
[79/2513] Generating rte_ethdev_def with a custom command
[80/2513] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[81/2513] Linking static target lib/librte_ring.a
[82/2513] Generating rte_pci_mingw with a custom command
[83/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[84/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[85/2513] Generating rte_pci_def with a custom command
[86/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[87/2513] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[88/2513] Linking static target lib/librte_meter.a
[89/2513] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[90/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[91/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[92/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[93/2513] Linking static target lib/librte_pci.a
[94/2513] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[95/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[96/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[97/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[98/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[99/2513] Linking target lib/librte_kvargs.so.21.2
[100/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[101/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[102/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[103/2513] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[104/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[105/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[106/2513] Generating rte_cmdline_def with a custom command
[107/2513] Generating rte_cmdline_mingw with a custom command
[108/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[109/2513] Generating rte_metrics_def with a custom command
[110/2513] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[111/2513] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[112/2513] Generating rte_metrics_mingw with a custom command
[113/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[114/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[115/2513] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[116/2513] Generating rte_hash_def with a custom command
[117/2513] Generating rte_hash_mingw with a custom command
[118/2513] Generating rte_timer_def with a custom command
[119/2513] Generating rte_timer_mingw with a custom command
[120/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[121/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[122/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[123/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[124/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[125/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[126/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[127/2513] Generating rte_acl_mingw with a custom command
[128/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[129/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[130/2513] Generating rte_acl_def with a custom command
[131/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[132/2513] Generating rte_bbdev_def with a custom command
[133/2513] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[134/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[135/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[136/2513] Generating rte_bbdev_mingw with a custom command
[137/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[138/2513] Generating rte_bitratestats_def with a custom command
[139/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[140/2513] Generating rte_bitratestats_mingw with a custom command
[141/2513] Generating rte_cfgfile_def with a custom command
[142/2513] Generating rte_cfgfile_mingw with a custom command
[143/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[144/2513] Generating rte_compressdev_mingw with a custom command
[145/2513] Generating rte_compressdev_def with a custom command
[146/2513] Generating rte_cryptodev_def with a custom command
[147/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[148/2513] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[149/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[150/2513] Generating rte_cryptodev_mingw with a custom command
[151/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[152/2513] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[153/2513] Generating rte_distributor_mingw with a custom command
[154/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[155/2513] Generating rte_distributor_def with a custom command
[156/2513] Generating symbol file lib/librte_kvargs.so.21.2.p/librte_kvargs.so.21.2.symbols
[157/2513] Generating rte_efd_def with a custom command
[158/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[159/2513] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[160/2513] Generating rte_efd_mingw with a custom command
[161/2513] Linking target lib/librte_telemetry.so.21.2
[162/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[163/2513] Linking static target lib/librte_rcu.a
[164/2513] Linking static target lib/librte_cmdline.a
[165/2513] Linking static target lib/librte_net.a
[166/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[167/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[168/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[169/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[170/2513] Generating rte_eventdev_def with a custom command
[171/2513] Linking static target lib/librte_mempool.a
[172/2513] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[173/2513] Linking static target lib/librte_cfgfile.a
[174/2513] Generating rte_eventdev_mingw with a custom command
[175/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[176/2513] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[177/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[178/2513] Linking static target lib/librte_eal.a
[179/2513] Linking static target lib/librte_timer.a
[180/2513] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[181/2513] Generating symbol file lib/librte_telemetry.so.21.2.p/librte_telemetry.so.21.2.symbols
[182/2513] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[183/2513] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[184/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[185/2513] Generating rte_gro_def with a custom command
[186/2513] Generating rte_gro_mingw with a custom command
[187/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[188/2513] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[189/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics_telemetry.c.o
[190/2513] Linking static target lib/librte_bitratestats.a
[191/2513] Linking static target lib/librte_metrics.a
[192/2513] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[193/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[194/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[195/2513] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[196/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[197/2513] Generating rte_gso_def with a custom command
[198/2513] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[199/2513] Generating rte_gso_mingw with a custom command
[200/2513] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[201/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[202/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[203/2513] Linking static target lib/librte_compressdev.a
[204/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[205/2513] Generating rte_ip_frag_def with a custom command
[206/2513] Generating rte_ip_frag_mingw with a custom command
[207/2513] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[208/2513] Linking static target lib/librte_bbdev.a
[209/2513] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[210/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[211/2513] Generating rte_jobstats_def with a custom command
[212/2513] Generating rte_jobstats_mingw with a custom command
[213/2513] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[214/2513] Generating rte_kni_def with a custom command
[215/2513] Generating rte_kni_mingw with a custom command
[216/2513] Generating rte_latencystats_def with a custom command
[217/2513] Generating rte_latencystats_mingw with a custom command
[218/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[219/2513] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[220/2513] Linking static target lib/librte_distributor.a
[221/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[222/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[223/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[224/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[225/2513] Generating rte_lpm_def with a custom command
[226/2513] Generating rte_lpm_mingw with a custom command
[227/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[228/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[229/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_udp4.c.o
[230/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[231/2513] Generating rte_member_mingw with a custom command
[232/2513] Generating rte_member_def with a custom command
[233/2513] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[234/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[235/2513] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[236/2513] Linking static target lib/librte_gro.a
[237/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[238/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[239/2513] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[240/2513] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[241/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[242/2513] Generating rte_power_def with a custom command
[243/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[244/2513] Generating rte_power_mingw with a custom command
[245/2513] Generating rte_pdump_def with a custom command
[246/2513] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[247/2513] Generating rte_pdump_mingw with a custom command
[248/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[249/2513] Generating rte_rawdev_def with a custom command
[250/2513] Generating rte_rawdev_mingw with a custom command
[251/2513] Generating rte_regexdev_def with a custom command
[252/2513] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[253/2513] Generating rte_regexdev_mingw with a custom command
[254/2513] Linking static target lib/librte_jobstats.a
[255/2513] Generating rte_rib_def with a custom command
[256/2513] Generating rte_rib_mingw with a custom command
[257/2513] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[258/2513] Generating rte_reorder_def with a custom command
[259/2513] Generating rte_reorder_mingw with a custom command
[260/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[261/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[262/2513] Generating rte_sched_def with a custom command
[263/2513] Generating rte_sched_mingw with a custom command
[264/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[265/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[266/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[267/2513] Generating rte_security_def with a custom command
[268/2513] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[269/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[270/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[271/2513] Generating rte_security_mingw with a custom command
[272/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[273/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[274/2513] Generating rte_stack_def with a custom command
[275/2513] Generating rte_stack_mingw with a custom command
[276/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[277/2513] Linking static target lib/librte_ip_frag.a
[278/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[279/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[280/2513] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[281/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[282/2513] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[283/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[284/2513] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[285/2513] Linking static target lib/librte_stack.a
[286/2513] Generating rte_vhost_def with a custom command
[287/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[288/2513] Generating rte_vhost_mingw with a custom command
[289/2513] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[290/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[291/2513] Linking static target lib/librte_latencystats.a
[292/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[293/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[294/2513] Linking static target lib/librte_gso.a
[295/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_pmd_mgmt.c.o
[296/2513] Generating rte_ipsec_def with a custom command
[297/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[298/2513] Generating rte_ipsec_mingw with a custom command
[299/2513] Linking static target lib/librte_cryptodev.a
[300/2513] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[301/2513] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[302/2513] Linking static target lib/librte_efd.a
[303/2513] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[304/2513] Linking static target lib/librte_kni.a
[305/2513] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[306/2513] Linking static target lib/librte_regexdev.a
[307/2513] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[308/2513] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[309/2513] Linking static target lib/librte_rawdev.a
[310/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[311/2513] Compiling C object lib/librte_acl/libavx2_tmp.a.p/acl_run_avx2.c.o
[312/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[313/2513] Linking static target lib/librte_acl/libavx2_tmp.a
[314/2513] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[315/2513] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[316/2513] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[317/2513] Generating rte_fib_def with a custom command
[318/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[319/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[320/2513] Generating rte_fib_mingw with a custom command
[321/2513] Linking static target lib/librte_lpm.a
[322/2513] Linking static target lib/librte_mbuf.a
[323/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[324/2513] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[325/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[326/2513] Linking static target lib/librte_reorder.a
[327/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[328/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[329/2513] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[330/2513] Linking static target lib/librte_security.a
[331/2513] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[332/2513] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[333/2513] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[334/2513] Linking static target lib/librte_power.a
[335/2513] Linking static target lib/librte_pdump.a
[336/2513] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[337/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[338/2513] Linking static target lib/librte_eventdev.a
[339/2513] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[340/2513] Compiling C object lib/librte_fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[341/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[342/2513] Linking static target lib/librte_fib/libtrie_avx512_tmp.a
[343/2513] Linking static target lib/librte_member.a
[344/2513] Compiling C object lib/librte_fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[345/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[346/2513] Linking static target lib/librte_fib/libdir24_8_avx512_tmp.a
[347/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[348/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[349/2513] Generating rte_port_def with a custom command
[350/2513] Linking static target lib/librte_ethdev.a
[351/2513] Generating rte_port_mingw with a custom command
[352/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[353/2513] Compiling C object lib/librte_acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[354/2513] Linking static target lib/librte_acl/libavx512_tmp.a
[355/2513] Linking static target lib/librte_acl.a
[356/2513] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[357/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[358/2513] Linking static target lib/librte_hash.a
[359/2513] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[360/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[361/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[362/2513] Linking static target lib/librte_rib.a
[363/2513] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[364/2513] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[365/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[366/2513] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[367/2513] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[368/2513] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[369/2513] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[370/2513] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[371/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[372/2513] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[373/2513] Generating rte_table_def with a custom command
[374/2513] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[375/2513] Generating rte_table_mingw with a custom command
[376/2513] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[377/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[378/2513] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[379/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[380/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[381/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[382/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[383/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[384/2513] Linking target lib/librte_eal.so.21.2
[385/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[386/2513] Generating rte_pipeline_def with a custom command
[387/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[388/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[389/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[390/2513] Generating rte_flow_classify_def with a custom command
[391/2513] Generating rte_pipeline_mingw with a custom command
[392/2513] Generating rte_flow_classify_mingw with a custom command
[393/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[394/2513] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[395/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[396/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[397/2513] Linking static target lib/librte_sched.a
[398/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[399/2513] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[400/2513] Generating rte_bpf_def with a custom command
[401/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[402/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[403/2513] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[404/2513] Linking static target lib/librte_fib.a
[405/2513] Generating rte_bpf_mingw with a custom command
[406/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[407/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[408/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[409/2513] Generating rte_graph_def with a custom command
[410/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[411/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[412/2513] Generating rte_graph_mingw with a custom command
[413/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[414/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[415/2513] Generating symbol file lib/librte_eal.so.21.2.p/librte_eal.so.21.2.symbols
[416/2513] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[417/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[418/2513] Linking target lib/librte_ring.so.21.2
[419/2513] Linking target lib/librte_cfgfile.so.21.2
[420/2513] Linking target lib/librte_meter.so.21.2
[421/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[422/2513] Linking target lib/librte_pci.so.21.2
[423/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[424/2513] Linking target lib/librte_timer.so.21.2
[425/2513] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[426/2513] Linking target lib/librte_acl.so.21.2
[427/2513] Linking target lib/librte_jobstats.so.21.2
[428/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[429/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[430/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[431/2513] Linking target lib/librte_rawdev.so.21.2
[432/2513] Linking target lib/librte_stack.so.21.2
[433/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[434/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[435/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[436/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[437/2513] Generating rte_node_def with a custom command
[438/2513] Generating rte_node_mingw with a custom command
[439/2513] Generating rte_common_cpt_mingw with a custom command
[440/2513] Generating symbol file lib/librte_meter.so.21.2.p/librte_meter.so.21.2.symbols
[441/2513] Generating symbol file lib/librte_pci.so.21.2.p/librte_pci.so.21.2.symbols
[442/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[443/2513] Generating symbol file lib/librte_ring.so.21.2.p/librte_ring.so.21.2.symbols
[444/2513] Linking static target lib/librte_table.a
[445/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[446/2513] Generating rte_common_cpt_def with a custom command
[447/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[448/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[449/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[450/2513] Linking target lib/librte_rcu.so.21.2
[451/2513] Generating symbol file lib/librte_timer.so.21.2.p/librte_timer.so.21.2.symbols
[452/2513] Linking target lib/librte_mempool.so.21.2
[453/2513] Generating symbol file lib/librte_acl.so.21.2.p/librte_acl.so.21.2.symbols
[454/2513] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[455/2513] Generating rte_common_dpaax_def with a custom command
[456/2513] Generating rte_common_dpaax_mingw with a custom command
[457/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[458/2513] Generating rte_common_iavf_def with a custom command
[459/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[460/2513] Generating rte_common_iavf_mingw with a custom command
[461/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[462/2513] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[463/2513] Generating rte_common_octeontx_def with a custom command
[464/2513] Generating symbol file lib/librte_rawdev.so.21.2.p/librte_rawdev.so.21.2.symbols
[465/2513] Generating rte_common_octeontx_mingw with a custom command
[466/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[467/2513] Generating symbol file lib/librte_stack.so.21.2.p/librte_stack.so.21.2.symbols
[468/2513] Generating rte_common_octeontx2_mingw with a custom command
[469/2513] Generating rte_common_octeontx2_def with a custom command
[470/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[471/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[472/2513] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[473/2513] Linking static target drivers/libtmp_rte_common_octeontx.a
[474/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[475/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[476/2513] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[477/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[478/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[479/2513] Linking static target drivers/libtmp_rte_common_dpaax.a
[480/2513] Generating symbol file lib/librte_mempool.so.21.2.p/librte_mempool.so.21.2.symbols
[481/2513] Generating symbol file lib/librte_rcu.so.21.2.p/librte_rcu.so.21.2.symbols
[482/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[483/2513] Linking target lib/librte_hash.so.21.2
[484/2513] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[485/2513] Linking target lib/librte_rib.so.21.2
[486/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[487/2513] Generating rte_common_octeontx.pmd.c with a custom command
[488/2513] Linking static target lib/librte_flow_classify.a
[489/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[490/2513] Linking target lib/librte_mbuf.so.21.2
[491/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[492/2513] Compiling C object drivers/librte_common_octeontx.so.21.2.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[493/2513] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[494/2513] Linking static target drivers/librte_common_octeontx.a
[495/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[496/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[497/2513] Generating rte_common_dpaax.pmd.c with a custom command
[498/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[499/2513] Linking static target lib/librte_port.a
[500/2513] Linking static target lib/librte_graph.a
[501/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[502/2513] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[503/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[504/2513] Linking static target drivers/libtmp_rte_common_cpt.a
[505/2513] Linking static target drivers/librte_common_dpaax.a
[506/2513] Compiling C object drivers/librte_common_dpaax.so.21.2.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[507/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[508/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[509/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[510/2513] Linking static target lib/librte_bpf.a
[511/2513] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[512/2513] Generating rte_common_cpt.pmd.c with a custom command
[513/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[514/2513] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[515/2513] Compiling C object drivers/librte_common_cpt.so.21.2.p/meson-generated_.._rte_common_cpt.pmd.c.o
[516/2513] Generating symbol file lib/librte_rib.so.21.2.p/librte_rib.so.21.2.symbols
[517/2513] Linking static target drivers/librte_common_cpt.a
[518/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[519/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[520/2513] Generating symbol file lib/librte_mbuf.so.21.2.p/librte_mbuf.so.21.2.symbols
[521/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[522/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[523/2513] Linking target lib/librte_fib.so.21.2
[524/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[525/2513] Generating symbol file lib/librte_hash.so.21.2.p/librte_hash.so.21.2.symbols
[526/2513] Linking target lib/librte_cryptodev.so.21.2
[527/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[528/2513] Linking target lib/librte_bbdev.so.21.2
[529/2513] Linking target lib/librte_distributor.so.21.2
[530/2513] Linking target lib/librte_compressdev.so.21.2
[531/2513] Linking target lib/librte_net.so.21.2
[532/2513] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[533/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[534/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[535/2513] Linking target lib/librte_efd.so.21.2
[536/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[537/2513] Linking target lib/librte_lpm.so.21.2
[538/2513] Linking target lib/librte_member.so.21.2
[539/2513] Linking target lib/librte_reorder.so.21.2
[540/2513] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[541/2513] Linking target lib/librte_regexdev.so.21.2
[542/2513] Linking target lib/librte_sched.so.21.2
[543/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[544/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[545/2513] Linking target drivers/librte_common_octeontx.so.21.2
[546/2513] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[547/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[548/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[549/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[550/2513] Linking static target lib/librte_ipsec.a
[551/2513] Linking static target drivers/libtmp_rte_common_octeontx2.a
[552/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[553/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[554/2513] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[555/2513] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[556/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[557/2513] Generating symbol file lib/librte_net.so.21.2.p/librte_net.so.21.2.symbols
[558/2513] Generating symbol file lib/librte_compressdev.so.21.2.p/librte_compressdev.so.21.2.symbols
[559/2513] Linking target drivers/librte_common_dpaax.so.21.2
[560/2513] Generating symbol file lib/librte_cryptodev.so.21.2.p/librte_cryptodev.so.21.2.symbols
[561/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[562/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[563/2513] Generating symbol file lib/librte_bbdev.so.21.2.p/librte_bbdev.so.21.2.symbols
[564/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[565/2513] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[566/2513] Linking target lib/librte_ethdev.so.21.2
[567/2513] Generating symbol file lib/librte_reorder.so.21.2.p/librte_reorder.so.21.2.symbols
[568/2513] Linking target lib/librte_cmdline.so.21.2
[569/2513] Linking target lib/librte_security.so.21.2
[570/2513] Generating symbol file lib/librte_regexdev.so.21.2.p/librte_regexdev.so.21.2.symbols
[571/2513] Generating rte_common_octeontx2.pmd.c with a custom command
[572/2513] Generating symbol file lib/librte_sched.so.21.2.p/librte_sched.so.21.2.symbols
[573/2513] Generating symbol file lib/librte_lpm.so.21.2.p/librte_lpm.so.21.2.symbols
[574/2513] Linking target drivers/librte_common_cpt.so.21.2
[575/2513] Compiling C object drivers/librte_common_octeontx2.so.21.2.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[576/2513] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[577/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[578/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[579/2513] Linking static target drivers/librte_common_octeontx2.a
[580/2513] Generating symbol file drivers/librte_common_octeontx.so.21.2.p/librte_common_octeontx.so.21.2.symbols
[581/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[582/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[583/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[584/2513] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[585/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[586/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[587/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[588/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[589/2513] Generating symbol file drivers/librte_common_dpaax.so.21.2.p/librte_common_dpaax.so.21.2.symbols
[590/2513] Generating symbol file lib/librte_ethdev.so.21.2.p/librte_ethdev.so.21.2.symbols
[591/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[592/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[593/2513] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[594/2513] Generating symbol file drivers/librte_common_cpt.so.21.2.p/librte_common_cpt.so.21.2.symbols
[595/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[596/2513] Generating symbol file lib/librte_security.so.21.2.p/librte_security.so.21.2.symbols
[597/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[598/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[599/2513] Linking target lib/librte_metrics.so.21.2
[600/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[601/2513] Linking target lib/librte_gro.so.21.2
[602/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[603/2513] Linking target lib/librte_eventdev.so.21.2
[604/2513] Linking target lib/librte_ip_frag.so.21.2
[605/2513] Linking target lib/librte_gso.so.21.2
[606/2513] Linking target lib/librte_power.so.21.2
[607/2513] Linking target lib/librte_ipsec.so.21.2
[608/2513] Linking target lib/librte_pdump.so.21.2
[609/2513] Linking target lib/librte_kni.so.21.2
[610/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[611/2513] Linking target lib/librte_graph.so.21.2
[612/2513] Linking target lib/librte_bpf.so.21.2
[613/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[614/2513] Generating rte_common_sfc_efx_mingw with a custom command
[615/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[616/2513] Generating rte_common_sfc_efx_def with a custom command
[617/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[618/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[619/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[620/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[621/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[622/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[623/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[624/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[625/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[626/2513] Linking static target drivers/libtmp_rte_common_iavf.a
[627/2513] Generating symbol file lib/librte_ip_frag.so.21.2.p/librte_ip_frag.so.21.2.symbols
[628/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[629/2513] Generating symbol file lib/librte_metrics.so.21.2.p/librte_metrics.so.21.2.symbols
[630/2513] Generating symbol file lib/librte_kni.so.21.2.p/librte_kni.so.21.2.symbols
[631/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[632/2513] Generating symbol file lib/librte_eventdev.so.21.2.p/librte_eventdev.so.21.2.symbols
[633/2513] Generating symbol file lib/librte_gso.so.21.2.p/librte_gso.so.21.2.symbols
[634/2513] Generating symbol file lib/librte_graph.so.21.2.p/librte_graph.so.21.2.symbols
[635/2513] Generating rte_bus_dpaa_mingw with a custom command
[636/2513] Generating rte_bus_dpaa_def with a custom command
[637/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[638/2513] Linking target lib/librte_latencystats.so.21.2
[639/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[640/2513] Linking target lib/librte_bitratestats.so.21.2
[641/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[642/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[643/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[644/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[645/2513] Linking target lib/librte_port.so.21.2
[646/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[647/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[648/2513] Generating rte_common_iavf.pmd.c with a custom command
[649/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[650/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[651/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[652/2513] Compiling C object drivers/librte_common_iavf.so.21.2.p/meson-generated_.._rte_common_iavf.pmd.c.o
[653/2513] Generating rte_bus_fslmc_mingw with a custom command
[654/2513] Generating rte_bus_fslmc_def with a custom command
[655/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[656/2513] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[657/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[658/2513] Linking static target drivers/librte_common_iavf.a
[659/2513] Generating rte_bus_ifpga_def with a custom command
[660/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[661/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[662/2513] Generating rte_bus_ifpga_mingw with a custom command
[663/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[664/2513] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[665/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[666/2513] Generating rte_bus_pci_def with a custom command
[667/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[668/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[669/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[670/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[671/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[672/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[673/2513] Generating rte_bus_pci_mingw with a custom command
[674/2513] Linking target drivers/librte_common_octeontx2.so.21.2
[675/2513] Generating rte_bus_vdev_def with a custom command
[676/2513] Generating rte_bus_vdev_mingw with a custom command
[677/2513] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[678/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[679/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[680/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[681/2513] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[682/2513] Generating rte_bus_vmbus_def with a custom command
[683/2513] Generating rte_bus_vmbus_mingw with a custom command
[684/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[685/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[686/2513] Generating symbol file lib/librte_port.so.21.2.p/librte_port.so.21.2.symbols
[687/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[688/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[689/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[690/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[691/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[692/2513] Linking static target drivers/libtmp_rte_bus_ifpga.a
[693/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[694/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[695/2513] Linking target lib/librte_table.so.21.2
[696/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[697/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[698/2513] Generating rte_common_qat_def with a custom command
[699/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[700/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[701/2513] Generating rte_common_qat_mingw with a custom command
[702/2513] Generating rte_mempool_bucket_def with a custom command
[703/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[704/2513] Generating rte_mempool_bucket_mingw with a custom command
[705/2513] Generating rte_mempool_dpaa_def with a custom command
[706/2513] Generating rte_mempool_dpaa_mingw with a custom command
[707/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[708/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[709/2513] Generating rte_common_sfc_efx.pmd.c with a custom command
[710/2513] Generating rte_mempool_dpaa2_def with a custom command
[711/2513] Generating rte_mempool_dpaa2_mingw with a custom command
[712/2513] Generating rte_mempool_octeontx_def with a custom command
[713/2513] Compiling C object drivers/librte_common_sfc_efx.so.21.2.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[714/2513] Generating rte_crypto_octeontx_mingw with a custom command
[715/2513] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[716/2513] Generating rte_mempool_octeontx_mingw with a custom command
[717/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[718/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[719/2513] Linking static target drivers/librte_common_sfc_efx.a
[720/2513] Linking static target drivers/libtmp_rte_bus_vmbus.a
[721/2513] Generating rte_mempool_octeontx2_def with a custom command
[722/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[723/2513] Linking static target drivers/libtmp_rte_bus_vdev.a
[724/2513] Generating rte_mempool_octeontx2_mingw with a custom command
[725/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[726/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[727/2513] Generating rte_bus_ifpga.pmd.c with a custom command
[728/2513] Generating rte_mempool_ring_def with a custom command
[729/2513] Generating rte_mempool_ring_mingw with a custom command
[730/2513] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[731/2513] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[732/2513] Generating rte_mempool_stack_def with a custom command
[733/2513] Compiling C object drivers/librte_bus_ifpga.so.21.2.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[734/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[735/2513] Generating symbol file drivers/librte_common_octeontx2.so.21.2.p/librte_common_octeontx2.so.21.2.symbols
[736/2513] Linking static target drivers/librte_bus_ifpga.a
[737/2513] Generating rte_mempool_stack_mingw with a custom command
[738/2513] Generating rte_net_af_packet_def with a custom command
[739/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[740/2513] Linking target drivers/librte_common_iavf.so.21.2
[741/2513] Generating rte_net_af_packet_mingw with a custom command
[742/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[743/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[744/2513] Generating symbol file lib/librte_table.so.21.2.p/librte_table.so.21.2.symbols
[745/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[746/2513] Generating rte_bus_vdev.pmd.c with a custom command
[747/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[748/2513] Generating rte_bus_vmbus.pmd.c with a custom command
[749/2513] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[750/2513] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[751/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[752/2513] Compiling C object drivers/librte_bus_vdev.so.21.2.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[753/2513] Linking static target drivers/librte_bus_vdev.a
[754/2513] Linking static target drivers/librte_bus_vmbus.a
[755/2513] Compiling C object drivers/librte_bus_vmbus.so.21.2.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[756/2513] Linking target lib/librte_flow_classify.so.21.2
[757/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[758/2513] Linking static target drivers/libtmp_rte_bus_pci.a
[759/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[760/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[761/2513] Generating rte_net_ark_def with a custom command
[762/2513] Generating rte_net_ark_mingw with a custom command
[763/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[764/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[765/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[766/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[767/2513] Generating rte_net_atlantic_mingw with a custom command
[768/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[769/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[770/2513] Generating rte_bus_pci.pmd.c with a custom command
[771/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[772/2513] Generating symbol file drivers/librte_common_iavf.so.21.2.p/librte_common_iavf.so.21.2.symbols
[773/2513] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[774/2513] Compiling C object drivers/librte_bus_pci.so.21.2.p/meson-generated_.._rte_bus_pci.pmd.c.o
[775/2513] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[776/2513] Linking static target drivers/librte_bus_pci.a
[777/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[778/2513] Generating rte_net_atlantic_def with a custom command
[779/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[780/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[781/2513] Generating rte_net_avp_mingw with a custom command
[782/2513] Linking target drivers/librte_bus_ifpga.so.21.2
[783/2513] Linking static target drivers/libtmp_rte_bus_fslmc.a
[784/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[785/2513] Generating rte_net_avp_def with a custom command
[786/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[787/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[788/2513] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[789/2513] Generating rte_net_axgbe_def with a custom command
[790/2513] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[791/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[792/2513] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[793/2513] Linking target drivers/librte_bus_vdev.so.21.2
[794/2513] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[795/2513] Linking target drivers/librte_bus_vmbus.so.21.2
[796/2513] Linking static target drivers/libtmp_rte_mempool_stack.a
[797/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[798/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[799/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[800/2513] Generating rte_net_axgbe_mingw with a custom command
[801/2513] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[802/2513] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[803/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[804/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[805/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[806/2513] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[807/2513] Generating rte_mempool_octeontx.pmd.c with a custom command
[808/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[809/2513] Generating rte_bus_fslmc.pmd.c with a custom command
[810/2513] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[811/2513] Generating rte_mempool_stack.pmd.c with a custom command
[812/2513] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[813/2513] Linking static target drivers/librte_mempool_octeontx.a
[814/2513] Linking static target drivers/librte_bus_fslmc.a
[815/2513] Compiling C object drivers/librte_mempool_octeontx.so.21.2.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[816/2513] Compiling C object drivers/librte_bus_fslmc.so.21.2.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[817/2513] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[818/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[819/2513] Compiling C object drivers/librte_mempool_stack.so.21.2.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[820/2513] Generating rte_mempool_dpaa2.pmd.c with a custom command
[821/2513] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[822/2513] Linking static target drivers/librte_mempool_stack.a
[823/2513] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[824/2513] Generating rte_mempool_dpaa.pmd.c with a custom command
[825/2513] Compiling C object drivers/librte_mempool_dpaa2.so.21.2.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[826/2513] Linking target drivers/librte_bus_pci.so.21.2
[827/2513] Compiling C object drivers/librte_mempool_dpaa.so.21.2.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[828/2513] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[829/2513] Linking static target drivers/librte_mempool_dpaa2.a
[830/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[831/2513] Generating symbol file drivers/librte_bus_vdev.so.21.2.p/librte_bus_vdev.so.21.2.symbols
[832/2513] Linking static target drivers/librte_mempool_dpaa.a
[833/2513] Generating symbol file drivers/librte_bus_vmbus.so.21.2.p/librte_bus_vmbus.so.21.2.symbols
[834/2513] Generating rte_mempool_octeontx2.pmd.c with a custom command
[835/2513] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[836/2513] Generating rte_net_bond_mingw with a custom command
[837/2513] Linking static target drivers/librte_mempool_octeontx2.a
[838/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[839/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[840/2513] Compiling C object drivers/librte_mempool_octeontx2.so.21.2.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[841/2513] Generating rte_net_bond_def with a custom command
[842/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[843/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[844/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[845/2513] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[846/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[847/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[848/2513] Linking static target drivers/libtmp_rte_net_ark.a
[849/2513] Generating rte_net_bnx2x_def with a custom command
[850/2513] Generating rte_net_bnx2x_mingw with a custom command
[851/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[852/2513] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[853/2513] Linking static target drivers/libtmp_rte_mempool_ring.a
[854/2513] Generating symbol file drivers/librte_bus_pci.so.21.2.p/librte_bus_pci.so.21.2.symbols
[855/2513] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[856/2513] Linking target drivers/librte_mempool_octeontx.so.21.2
[857/2513] Linking static target drivers/libtmp_rte_net_af_packet.a
[858/2513] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[859/2513] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[860/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[861/2513] Linking static target drivers/libtmp_rte_bus_dpaa.a
[862/2513] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[863/2513] Linking target drivers/librte_mempool_stack.so.21.2
[864/2513] Generating rte_mempool_ring.pmd.c with a custom command
[865/2513] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[866/2513] Linking static target drivers/librte_mempool_ring.a
[867/2513] Generating rte_net_ark.pmd.c with a custom command
[868/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[869/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[870/2513] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[871/2513] Compiling C object drivers/librte_mempool_ring.so.21.2.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[872/2513] Generating rte_net_af_packet.pmd.c with a custom command
[873/2513] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[874/2513] Compiling C object drivers/librte_net_ark.so.21.2.p/meson-generated_.._rte_net_ark.pmd.c.o
[875/2513] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[876/2513] Linking static target drivers/librte_net_af_packet.a
[877/2513] Compiling C object drivers/librte_net_af_packet.so.21.2.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[878/2513] Linking static target drivers/librte_net_ark.a
[879/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[880/2513] Linking target drivers/librte_mempool_octeontx2.so.21.2
[881/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[882/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[883/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[884/2513] Generating rte_bus_dpaa.pmd.c with a custom command
[885/2513] Generating symbol file drivers/librte_mempool_octeontx.so.21.2.p/librte_mempool_octeontx.so.21.2.symbols
[886/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[887/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[888/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[889/2513] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[890/2513] Compiling C object drivers/librte_bus_dpaa.so.21.2.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[891/2513] Linking static target drivers/librte_bus_dpaa.a
[892/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[893/2513] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[894/2513] Linking target drivers/librte_mempool_ring.so.21.2
[895/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[896/2513] Linking static target drivers/libtmp_rte_net_atlantic.a
[897/2513] Generating symbol file drivers/librte_mempool_octeontx2.so.21.2.p/librte_mempool_octeontx2.so.21.2.symbols
[898/2513] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[899/2513] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[900/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[901/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[902/2513] Linking target drivers/librte_net_af_packet.so.21.2
[903/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[904/2513] Linking target drivers/librte_net_ark.so.21.2
[905/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[906/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[907/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[908/2513] Linking static target drivers/libtmp_rte_net_axgbe.a
[909/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[910/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[911/2513] Generating rte_net_atlantic.pmd.c with a custom command
[912/2513] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[913/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[914/2513] Compiling C object drivers/librte_net_atlantic.so.21.2.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[915/2513] Linking static target drivers/librte_net_atlantic.a
[916/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[917/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[918/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[919/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[920/2513] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[921/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[922/2513] Linking static target drivers/libtmp_rte_mempool_bucket.a
[923/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[924/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[925/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[926/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[927/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[928/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[929/2513] Generating rte_net_axgbe.pmd.c with a custom command
[930/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[931/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[932/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[933/2513] Compiling C object drivers/librte_net_axgbe.so.21.2.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[934/2513] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[935/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[936/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[937/2513] Linking static target drivers/librte_net_axgbe.a
[938/2513] Generating rte_mempool_bucket.pmd.c with a custom command
[939/2513] Linking static target drivers/libtmp_rte_common_qat.a
[940/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[941/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[942/2513] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[943/2513] Linking static target drivers/librte_mempool_bucket.a
[944/2513] Compiling C object drivers/librte_mempool_bucket.so.21.2.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[945/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[946/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[947/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[948/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[949/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[950/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[951/2513] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[952/2513] Linking target drivers/librte_net_atlantic.so.21.2
[953/2513] Generating rte_common_qat.pmd.c with a custom command
[954/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[955/2513] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[956/2513] Compiling C object drivers/librte_common_qat.so.21.2.p/meson-generated_.._rte_common_qat.pmd.c.o
[957/2513] Linking static target drivers/librte_common_qat.a
[958/2513] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[959/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[960/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[961/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[962/2513] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[963/2513] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[964/2513] Linking target drivers/librte_bus_fslmc.so.21.2
[965/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[966/2513] Linking target drivers/librte_net_axgbe.so.21.2
[967/2513] Linking target drivers/librte_mempool_bucket.so.21.2
[968/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[969/2513] Generating rte_net_bnxt_mingw with a custom command
[970/2513] Generating rte_net_bnxt_def with a custom command
[971/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[972/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[973/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[974/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[975/2513] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[976/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[977/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[978/2513] Linking target drivers/librte_common_qat.so.21.2
[979/2513] Generating symbol file drivers/librte_bus_fslmc.so.21.2.p/librte_bus_fslmc.so.21.2.symbols
[980/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[981/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[982/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[983/2513] Linking target drivers/librte_mempool_dpaa2.so.21.2
[984/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[985/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[986/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[987/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[988/2513] Generating rte_net_cxgbe_mingw with a custom command
[989/2513] Generating rte_net_cxgbe_def with a custom command
[990/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[991/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[992/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[993/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[994/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[995/2513] Generating rte_net_dpaa_def with a custom command
[996/2513] Generating rte_net_dpaa_mingw with a custom command
[997/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[998/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[999/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1000/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[1001/2513] Generating symbol file drivers/librte_mempool_dpaa2.so.21.2.p/librte_mempool_dpaa2.so.21.2.symbols
[1002/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1003/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[1004/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1005/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1006/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1007/2513] Linking static target drivers/libtmp_rte_net_bond.a
[1008/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[1009/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1010/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[1011/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1012/2513] Linking static target lib/librte_node.a
[1013/2513] Generating rte_net_dpaa2_def with a custom command
[1014/2513] Generating rte_net_dpaa2_mingw with a custom command
[1015/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1016/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1017/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1018/2513] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1019/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1020/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1021/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1022/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1023/2513] Generating rte_net_bond.pmd.c with a custom command
[1024/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1025/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1026/2513] Linking target drivers/librte_bus_dpaa.so.21.2
[1027/2513] Compiling C object drivers/librte_net_bond.so.21.2.p/meson-generated_.._rte_net_bond.pmd.c.o
[1028/2513] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1029/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1030/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1031/2513] Linking static target drivers/librte_net_bond.a
[1032/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1033/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1034/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1035/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1036/2513] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[1037/2513] Linking static target drivers/libtmp_rte_net_avp.a
[1038/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1039/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1040/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1041/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1042/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1043/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1044/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1045/2513] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[1046/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1047/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1048/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1049/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1050/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1051/2513] Generating rte_net_avp.pmd.c with a custom command
[1052/2513] Generating rte_net_e1000_def with a custom command
[1053/2513] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[1054/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1055/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1056/2513] Linking target lib/librte_node.so.21.2
[1057/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1058/2513] Linking static target drivers/librte_net_avp.a
[1059/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1060/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1061/2513] Generating rte_net_e1000_mingw with a custom command
[1062/2513] Generating rte_net_ena_def with a custom command
[1063/2513] Generating rte_net_ena_mingw with a custom command
[1064/2513] Compiling C object drivers/librte_net_avp.so.21.2.p/meson-generated_.._rte_net_avp.pmd.c.o
[1065/2513] Generating rte_net_enetc_mingw with a custom command
[1066/2513] Generating rte_net_enetc_def with a custom command
[1067/2513] Generating symbol file drivers/librte_bus_dpaa.so.21.2.p/librte_bus_dpaa.so.21.2.symbols
[1068/2513] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1069/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1070/2513] Linking target drivers/librte_mempool_dpaa.so.21.2
[1071/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1072/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1073/2513] Linking target drivers/librte_common_sfc_efx.so.21.2
[1074/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1075/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1076/2513] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1077/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1078/2513] Linking target drivers/librte_net_bond.so.21.2
[1079/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1080/2513] Generating rte_net_enic_def with a custom command
[1081/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1082/2513] Generating rte_net_enic_mingw with a custom command
[1083/2513] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1084/2513] Generating symbol file drivers/librte_mempool_dpaa.so.21.2.p/librte_mempool_dpaa.so.21.2.symbols
[1085/2513] Generating symbol file drivers/librte_common_sfc_efx.so.21.2.p/librte_common_sfc_efx.so.21.2.symbols
[1086/2513] Linking target drivers/librte_net_avp.so.21.2
[1087/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1088/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1089/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1090/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1091/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1092/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1093/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1094/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1095/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1096/2513] Generating rte_net_failsafe_mingw with a custom command
[1097/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1098/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1099/2513] Generating rte_net_failsafe_def with a custom command
[1100/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1101/2513] Compiling C object drivers/net/enic/libenic_avx2_lib.a.p/enic_rxtx_vec_avx2.c.o
[1102/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1103/2513] Linking static target drivers/net/enic/libenic_avx2_lib.a
[1104/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1105/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1106/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1107/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1108/2513] Generating rte_net_fm10k_mingw with a custom command
[1109/2513] Generating rte_net_fm10k_def with a custom command
[1110/2513] Linking static target drivers/net/e1000/base/libe1000_base.a
[1111/2513] Linking static target drivers/libtmp_rte_net_bnxt.a
[1112/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1113/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1114/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1115/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1116/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1117/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1118/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1119/2513] Linking static target drivers/libtmp_rte_net_enetc.a
[1120/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1121/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1122/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1123/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1124/2513] Generating rte_net_enetc.pmd.c with a custom command
[1125/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1126/2513] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1127/2513] Compiling C object drivers/librte_net_enetc.so.21.2.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1128/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1129/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1130/2513] Linking static target drivers/librte_net_enetc.a
[1131/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1132/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1133/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1134/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1135/2513] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1136/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1137/2513] Generating rte_net_i40e_mingw with a custom command
[1138/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1139/2513] Generating rte_net_i40e_def with a custom command
[1140/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1141/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1142/2513] Generating rte_net_bnxt.pmd.c with a custom command
[1143/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1144/2513] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1145/2513] Compiling C object drivers/librte_net_bnxt.so.21.2.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1146/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1147/2513] Linking static target drivers/librte_net_bnxt.a
[1148/2513] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1149/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1150/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1151/2513] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1152/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1153/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1154/2513] Linking target drivers/librte_net_enetc.so.21.2
[1155/2513] Linking static target drivers/libtmp_rte_net_dpaa.a
[1156/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1157/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1158/2513] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1159/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1160/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1161/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1162/2513] Generating rte_net_cxgbe.pmd.c with a custom command
[1163/2513] Linking static target drivers/libtmp_rte_net_e1000.a
[1164/2513] Compiling C object drivers/librte_net_cxgbe.so.21.2.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1165/2513] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1166/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1167/2513] Generating rte_net_dpaa.pmd.c with a custom command
[1168/2513] Linking static target drivers/librte_net_cxgbe.a
[1169/2513] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1170/2513] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1171/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1172/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1173/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1174/2513] Linking static target drivers/librte_net_dpaa.a
[1175/2513] Compiling C object drivers/librte_net_dpaa.so.21.2.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1176/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1177/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1178/2513] Generating rte_net_hinic_def with a custom command
[1179/2513] Generating rte_net_hinic_mingw with a custom command
[1180/2513] Linking target drivers/librte_net_bnxt.so.21.2
[1181/2513] Linking static target drivers/libtmp_rte_net_ena.a
[1182/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1183/2513] Linking static target drivers/libtmp_rte_net_enic.a
[1184/2513] Generating rte_net_bnx2x.pmd.c with a custom command
[1185/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1186/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1187/2513] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1188/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1189/2513] Compiling C object drivers/librte_net_bnx2x.so.21.2.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1190/2513] Linking static target drivers/librte_net_bnx2x.a
[1191/2513] Generating rte_net_e1000.pmd.c with a custom command
[1192/2513] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1193/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1194/2513] Linking static target drivers/librte_net_e1000.a
[1195/2513] Generating rte_net_ena.pmd.c with a custom command
[1196/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1197/2513] Compiling C object drivers/librte_net_e1000.so.21.2.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1198/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1199/2513] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1200/2513] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1201/2513] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1202/2513] Compiling C object drivers/librte_net_ena.so.21.2.p/meson-generated_.._rte_net_ena.pmd.c.o
[1203/2513] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1204/2513] Compiling C object drivers/net/i40e/libi40e_avx2_lib.a.p/i40e_rxtx_vec_avx2.c.o
[1205/2513] Linking static target drivers/librte_net_ena.a
[1206/2513] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1207/2513] Linking static target drivers/net/i40e/libi40e_avx2_lib.a
[1208/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1209/2513] Generating rte_net_enic.pmd.c with a custom command
[1210/2513] Linking target drivers/librte_net_dpaa.so.21.2
[1211/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1212/2513] Linking target drivers/librte_net_cxgbe.so.21.2
[1213/2513] Compiling C object drivers/librte_net_enic.so.21.2.p/meson-generated_.._rte_net_enic.pmd.c.o
[1214/2513] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1215/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1216/2513] Linking static target drivers/librte_net_enic.a
[1217/2513] Generating rte_net_hns3_def with a custom command
[1218/2513] Generating rte_net_hns3_mingw with a custom command
[1219/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1220/2513] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1221/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1222/2513] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1223/2513] Linking target drivers/librte_net_bnx2x.so.21.2
[1224/2513] Generating symbol file drivers/librte_net_dpaa.so.21.2.p/librte_net_dpaa.so.21.2.symbols
[1225/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1226/2513] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1227/2513] Linking target drivers/librte_net_e1000.so.21.2
[1228/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1229/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1230/2513] Linking static target drivers/net/hinic/base/libhinic_base.a
[1231/2513] Linking target drivers/librte_net_ena.so.21.2
[1232/2513] Generating rte_net_iavf_mingw with a custom command
[1233/2513] Generating rte_net_iavf_def with a custom command
[1234/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1235/2513] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1236/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1237/2513] Linking static target drivers/libtmp_rte_net_fm10k.a
[1238/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1239/2513] Linking target drivers/librte_net_enic.so.21.2
[1240/2513] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1241/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1242/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1243/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1244/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1245/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1246/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1247/2513] Linking static target drivers/net/i40e/base/libi40e_base.a
[1248/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1249/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1250/2513] Generating rte_net_fm10k.pmd.c with a custom command
[1251/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1252/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1253/2513] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1254/2513] Compiling C object drivers/librte_net_fm10k.so.21.2.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1255/2513] Linking static target drivers/librte_net_fm10k.a
[1256/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1257/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1258/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1259/2513] Generating rte_net_dpaa2.pmd.c with a custom command
[1260/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1261/2513] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1262/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1263/2513] Linking static target drivers/librte_net_dpaa2.a
[1264/2513] Compiling C object drivers/librte_net_dpaa2.so.21.2.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1265/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1266/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1267/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1268/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1269/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1270/2513] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1271/2513] Linking target drivers/librte_net_fm10k.so.21.2
[1272/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1273/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1274/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1275/2513] Generating rte_net_ice_def with a custom command
[1276/2513] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1277/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1278/2513] Linking target drivers/librte_net_dpaa2.so.21.2
[1279/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1280/2513] Generating rte_net_ice_mingw with a custom command
[1281/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1282/2513] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1283/2513] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1284/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1285/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1286/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1287/2513] Compiling C object drivers/net/iavf/libiavf_avx2_lib.a.p/iavf_rxtx_vec_avx2.c.o
[1288/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1289/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1290/2513] Linking static target drivers/net/iavf/libiavf_avx2_lib.a
[1291/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1292/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1293/2513] Generating symbol file drivers/librte_net_dpaa2.so.21.2.p/librte_net_dpaa2.so.21.2.symbols
[1294/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1295/2513] Generating rte_net_igc_def with a custom command
[1296/2513] Generating rte_net_igc_mingw with a custom command
[1297/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1298/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1299/2513] Linking static target drivers/libtmp_rte_net_hinic.a
[1300/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1301/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1302/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1303/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1304/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1305/2513] Generating rte_net_ionic_def with a custom command
[1306/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1307/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1308/2513] Generating rte_net_ionic_mingw with a custom command
[1309/2513] Compiling C object drivers/net/ice/libice_avx2_lib.a.p/ice_rxtx_vec_avx2.c.o
[1310/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1311/2513] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1312/2513] Linking static target drivers/net/ice/libice_avx2_lib.a
[1313/2513] Linking static target drivers/net/ice/libice_avx512_lib.a
[1314/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1315/2513] Generating rte_net_hinic.pmd.c with a custom command
[1316/2513] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1317/2513] Linking static target drivers/librte_net_hinic.a
[1318/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1319/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1320/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1321/2513] Compiling C object drivers/librte_net_hinic.so.21.2.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1322/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1323/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1324/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1325/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1326/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1327/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1328/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1329/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1330/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1331/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1332/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1333/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1334/2513] Linking static target drivers/net/igc/base/libigc_base.a
[1335/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1336/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1337/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1338/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1339/2513] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1340/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1341/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1342/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1343/2513] Linking static target drivers/libtmp_rte_net_hns3.a
[1344/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1345/2513] Generating rte_net_ixgbe_def with a custom command
[1346/2513] Generating rte_net_kni_def with a custom command
[1347/2513] Generating rte_net_ixgbe_mingw with a custom command
[1348/2513] Generating rte_net_kni_mingw with a custom command
[1349/2513] Linking target drivers/librte_net_hinic.so.21.2
[1350/2513] Generating rte_net_liquidio_mingw with a custom command
[1351/2513] Generating rte_net_liquidio_def with a custom command
[1352/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1353/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1354/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1355/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1356/2513] Generating rte_net_memif_def with a custom command
[1357/2513] Linking static target drivers/libtmp_rte_net_i40e.a
[1358/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1359/2513] Linking static target drivers/libtmp_rte_net_iavf.a
[1360/2513] Generating rte_net_memif_mingw with a custom command
[1361/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1362/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1363/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1364/2513] Generating rte_net_hns3.pmd.c with a custom command
[1365/2513] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1366/2513] Linking static target drivers/librte_net_hns3.a
[1367/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1368/2513] Generating rte_net_iavf.pmd.c with a custom command
[1369/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1370/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1371/2513] Compiling C object drivers/librte_net_hns3.so.21.2.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1372/2513] Compiling C object drivers/librte_net_iavf.so.21.2.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1373/2513] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1374/2513] Generating rte_net_netvsc_def with a custom command
[1375/2513] Linking static target drivers/librte_net_iavf.a
[1376/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1377/2513] Generating rte_net_netvsc_mingw with a custom command
[1378/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1379/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1380/2513] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1381/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1382/2513] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1383/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1384/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1385/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1386/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1387/2513] Linking static target drivers/libtmp_rte_net_kni.a
[1388/2513] Generating rte_net_i40e.pmd.c with a custom command
[1389/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1390/2513] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1391/2513] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1392/2513] Compiling C object drivers/librte_net_i40e.so.21.2.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1393/2513] Linking static target drivers/librte_net_i40e.a
[1394/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1395/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1396/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1397/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1398/2513] Linking static target drivers/libtmp_rte_net_igc.a
[1399/2513] Linking target drivers/librte_net_hns3.so.21.2
[1400/2513] Linking static target drivers/libtmp_rte_net_ionic.a
[1401/2513] Generating rte_net_nfp_mingw with a custom command
[1402/2513] Generating rte_net_nfp_def with a custom command
[1403/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1404/2513] Generating rte_net_kni.pmd.c with a custom command
[1405/2513] Generating rte_net_null_mingw with a custom command
[1406/2513] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1407/2513] Generating rte_net_null_def with a custom command
[1408/2513] Compiling C object drivers/librte_net_kni.so.21.2.p/meson-generated_.._rte_net_kni.pmd.c.o
[1409/2513] Linking static target drivers/librte_net_kni.a
[1410/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1411/2513] Generating rte_net_igc.pmd.c with a custom command
[1412/2513] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1413/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1414/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1415/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1416/2513] Generating rte_net_ionic.pmd.c with a custom command
[1417/2513] Compiling C object drivers/librte_net_igc.so.21.2.p/meson-generated_.._rte_net_igc.pmd.c.o
[1418/2513] Linking static target drivers/librte_net_igc.a
[1419/2513] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1420/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1421/2513] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1422/2513] Compiling C object drivers/librte_net_ionic.so.21.2.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1423/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1424/2513] Generating rte_net_octeontx_def with a custom command
[1425/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1426/2513] Linking static target drivers/librte_net_ionic.a
[1427/2513] Linking target drivers/librte_net_iavf.so.21.2
[1428/2513] Generating rte_net_octeontx_mingw with a custom command
[1429/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1430/2513] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1431/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1432/2513] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1433/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1434/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1435/2513] Linking target drivers/librte_net_i40e.so.21.2
[1436/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1437/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1438/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1439/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1440/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1441/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1442/2513] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1443/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1444/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1445/2513] Linking target drivers/librte_net_kni.so.21.2
[1446/2513] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1447/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1448/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1449/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1450/2513] Linking static target drivers/libtmp_rte_net_failsafe.a
[1451/2513] Linking target drivers/librte_net_igc.so.21.2
[1452/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1453/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1454/2513] Linking static target drivers/libtmp_rte_net_liquidio.a
[1455/2513] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1456/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1457/2513] Linking static target drivers/libtmp_rte_net_ice.a
[1458/2513] Linking target drivers/librte_net_ionic.so.21.2
[1459/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1460/2513] Generating rte_net_octeontx2_def with a custom command
[1461/2513] Generating rte_net_octeontx2_mingw with a custom command
[1462/2513] Generating rte_net_failsafe.pmd.c with a custom command
[1463/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1464/2513] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1465/2513] Compiling C object drivers/librte_net_failsafe.so.21.2.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1466/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1467/2513] Linking static target drivers/libtmp_rte_net_memif.a
[1468/2513] Linking static target drivers/librte_net_failsafe.a
[1469/2513] Generating rte_net_liquidio.pmd.c with a custom command
[1470/2513] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1471/2513] Linking static target drivers/librte_net_liquidio.a
[1472/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1473/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1474/2513] Compiling C object drivers/librte_net_liquidio.so.21.2.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1475/2513] Generating rte_net_ice.pmd.c with a custom command
[1476/2513] Generating rte_net_memif.pmd.c with a custom command
[1477/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1478/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1479/2513] Generating rte_net_octeontx_ep_def with a custom command
[1480/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1481/2513] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1482/2513] Compiling C object drivers/librte_net_memif.so.21.2.p/meson-generated_.._rte_net_memif.pmd.c.o
[1483/2513] Generating rte_net_octeontx_ep_mingw with a custom command
[1484/2513] Compiling C object drivers/librte_net_ice.so.21.2.p/meson-generated_.._rte_net_ice.pmd.c.o
[1485/2513] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1486/2513] Generating rte_net_pcap_def with a custom command
[1487/2513] Linking static target drivers/librte_net_memif.a
[1488/2513] Generating rte_net_pcap_mingw with a custom command
[1489/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1490/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1491/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1492/2513] Generating rte_net_pfe_def with a custom command
[1493/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1494/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1495/2513] Generating rte_net_pfe_mingw with a custom command
[1496/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1497/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1498/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1499/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1500/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1501/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1502/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1503/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1504/2513] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1505/2513] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1506/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1507/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1508/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1509/2513] Linking static target drivers/libtmp_rte_net_octeontx.a
[1510/2513] Linking target drivers/librte_net_liquidio.so.21.2
[1511/2513] Linking target drivers/librte_net_failsafe.so.21.2
[1512/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1513/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1514/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1515/2513] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1516/2513] Linking static target drivers/net/ice/base/libice_base.a
[1517/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1518/2513] Linking static target drivers/librte_net_ice.a
[1519/2513] Linking target drivers/librte_net_memif.so.21.2
[1520/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1521/2513] Generating rte_net_qede_def with a custom command
[1522/2513] Generating rte_net_octeontx.pmd.c with a custom command
[1523/2513] Generating rte_net_qede_mingw with a custom command
[1524/2513] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1525/2513] Linking static target drivers/libtmp_rte_net_null.a
[1526/2513] Compiling C object drivers/librte_net_octeontx.so.21.2.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1527/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1528/2513] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1529/2513] Generating rte_net_ring_mingw with a custom command
[1530/2513] Generating rte_net_ring_def with a custom command
[1531/2513] Linking static target drivers/librte_net_octeontx.a
[1532/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1533/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1534/2513] Linking static target drivers/libtmp_rte_net_nfp.a
[1535/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1536/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1537/2513] Generating rte_net_null.pmd.c with a custom command
[1538/2513] Linking static target drivers/libtmp_rte_net_netvsc.a
[1539/2513] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1540/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1541/2513] Linking static target drivers/librte_net_null.a
[1542/2513] Compiling C object drivers/librte_net_null.so.21.2.p/meson-generated_.._rte_net_null.pmd.c.o
[1543/2513] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1544/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1545/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1546/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1547/2513] Generating rte_net_nfp.pmd.c with a custom command
[1548/2513] Generating rte_net_netvsc.pmd.c with a custom command
[1549/2513] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1550/2513] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1551/2513] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1552/2513] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1553/2513] Compiling C object drivers/librte_net_netvsc.so.21.2.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1554/2513] Linking static target drivers/librte_net_netvsc.a
[1555/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1556/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1557/2513] Compiling C object drivers/librte_net_nfp.so.21.2.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1558/2513] Linking static target drivers/librte_net_nfp.a
[1559/2513] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1560/2513] Compiling C object drivers/librte_net_octeontx_ep.so.21.2.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1561/2513] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1562/2513] Linking target drivers/librte_net_ice.so.21.2
[1563/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1564/2513] Linking static target drivers/librte_net_octeontx_ep.a
[1565/2513] Linking static target drivers/libtmp_rte_net_pfe.a
[1566/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1567/2513] Linking target drivers/librte_net_octeontx.so.21.2
[1568/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1569/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1570/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1571/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1572/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1573/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1574/2513] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1575/2513] Generating rte_net_pfe.pmd.c with a custom command
[1576/2513] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1577/2513] Linking target drivers/librte_net_null.so.21.2
[1578/2513] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1579/2513] Linking static target drivers/librte_net_pfe.a
[1580/2513] Compiling C object drivers/librte_net_pfe.so.21.2.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1581/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1582/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1583/2513] Linking target drivers/librte_net_netvsc.so.21.2
[1584/2513] Generating symbol file drivers/librte_net_octeontx.so.21.2.p/librte_net_octeontx.so.21.2.symbols
[1585/2513] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1586/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1587/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1588/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1589/2513] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1590/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1591/2513] Generating rte_net_sfc_def with a custom command
[1592/2513] Linking target drivers/librte_net_nfp.so.21.2
[1593/2513] Generating rte_net_sfc_mingw with a custom command
[1594/2513] Linking target drivers/librte_net_octeontx_ep.so.21.2
[1595/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1596/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1597/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1598/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1599/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1600/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1601/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1602/2513] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1603/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1604/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1605/2513] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1606/2513] Linking target drivers/librte_net_pfe.so.21.2
[1607/2513] Linking static target drivers/libtmp_rte_net_ring.a
[1608/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1609/2513] Generating rte_net_softnic_mingw with a custom command
[1610/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1611/2513] Generating rte_net_softnic_def with a custom command
[1612/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1613/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1614/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1615/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1616/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1617/2513] Generating rte_net_ring.pmd.c with a custom command
[1618/2513] Generating rte_net_tap_def with a custom command
[1619/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1620/2513] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1621/2513] Generating rte_net_tap_mingw with a custom command
[1622/2513] Compiling C object drivers/librte_net_ring.so.21.2.p/meson-generated_.._rte_net_ring.pmd.c.o
[1623/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1624/2513] Linking static target drivers/librte_net_ring.a
[1625/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1626/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1627/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1628/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1629/2513] Generating rte_net_thunderx_def with a custom command
[1630/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1631/2513] Generating rte_net_thunderx_mingw with a custom command
[1632/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1633/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1634/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1635/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1636/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1637/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1638/2513] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1639/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1640/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1641/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1642/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1643/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1644/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1645/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1646/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1647/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1648/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1649/2513] Generating rte_net_txgbe_def with a custom command
[1650/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1651/2513] Generating rte_net_txgbe_mingw with a custom command
[1652/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1653/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[1654/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1655/2513] Generating rte_net_vdev_netvsc_mingw with a custom command
[1656/2513] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1657/2513] Generating rte_net_vdev_netvsc_def with a custom command
[1658/2513] Generating rte_net_vhost_def with a custom command
[1659/2513] Generating rte_net_vhost_mingw with a custom command
[1660/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1661/2513] Linking target drivers/librte_net_ring.so.21.2
[1662/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1663/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1664/2513] Generating rte_net_ixgbe.pmd.c with a custom command
[1665/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1666/2513] Compiling C object drivers/librte_net_ixgbe.so.21.2.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1667/2513] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1668/2513] Linking static target drivers/librte_net_ixgbe.a
[1669/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1670/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1671/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1672/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1673/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1674/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1675/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1676/2513] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1677/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1678/2513] Generating rte_net_virtio_mingw with a custom command
[1679/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1680/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1681/2513] Generating rte_net_virtio_def with a custom command
[1682/2513] Generating rte_net_vmxnet3_mingw with a custom command
[1683/2513] Generating rte_net_vmxnet3_def with a custom command
[1684/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1685/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1686/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1687/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1688/2513] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1689/2513] Linking static target drivers/net/qede/base/libqede_base.a
[1690/2513] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1691/2513] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1692/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1693/2513] Generating rte_raw_dpaa2_qdma_def with a custom command
[1694/2513] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1695/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1696/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1697/2513] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1698/2513] Generating rte_raw_ioat_def with a custom command
[1699/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1700/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1701/2513] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1702/2513] Generating rte_raw_ioat_mingw with a custom command
[1703/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1704/2513] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1705/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1706/2513] Linking static target drivers/libtmp_rte_net_qede.a
[1707/2513] Generating rte_raw_ntb_def with a custom command
[1708/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1709/2513] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1710/2513] Generating rte_raw_ntb_mingw with a custom command
[1711/2513] Linking target drivers/librte_net_ixgbe.so.21.2
[1712/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1713/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1714/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1715/2513] Generating rte_raw_octeontx2_dma_def with a custom command
[1716/2513] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1717/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1718/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1719/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1720/2513] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1721/2513] Compiling C object drivers/librte_net_vdev_netvsc.so.21.2.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1722/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1723/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1724/2513] Linking static target drivers/librte_net_vdev_netvsc.a
[1725/2513] Generating rte_raw_octeontx2_ep_def with a custom command
[1726/2513] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1727/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1728/2513] Generating rte_net_qede.pmd.c with a custom command
[1729/2513] Generating rte_raw_skeleton_mingw with a custom command
[1730/2513] Generating rte_raw_skeleton_def with a custom command
[1731/2513] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1732/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1733/2513] Compiling C object drivers/librte_net_qede.so.21.2.p/meson-generated_.._rte_net_qede.pmd.c.o
[1734/2513] Linking static target drivers/librte_net_qede.a
[1735/2513] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1736/2513] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1737/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1738/2513] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1739/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1740/2513] Linking static target drivers/libtmp_rte_net_sfc.a
[1741/2513] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1742/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.2.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1743/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1744/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1745/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1746/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1747/2513] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1748/2513] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1749/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1750/2513] Linking static target drivers/libtmp_rte_net_vhost.a
[1751/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[1752/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1753/2513] Linking static target drivers/libtmp_rte_net_pcap.a
[1754/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1755/2513] Linking static target drivers/libtmp_rte_net_softnic.a
[1756/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1757/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1758/2513] Generating rte_crypto_bcmfs_mingw with a custom command
[1759/2513] Generating rte_crypto_bcmfs_def with a custom command
[1760/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1761/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1762/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1763/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1764/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1765/2513] Linking static target drivers/libtmp_rte_net_thunderx.a
[1766/2513] Generating rte_net_vhost.pmd.c with a custom command
[1767/2513] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1768/2513] Generating rte_crypto_caam_jr_mingw with a custom command
[1769/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1770/2513] Linking static target drivers/librte_net_vhost.a
[1771/2513] Generating rte_net_pcap.pmd.c with a custom command
[1772/2513] Compiling C object drivers/librte_net_vhost.so.21.2.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1773/2513] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1774/2513] Generating rte_net_sfc.pmd.c with a custom command
[1775/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1776/2513] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[1777/2513] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1778/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1779/2513] Generating rte_crypto_caam_jr_def with a custom command
[1780/2513] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1781/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1782/2513] Compiling C object drivers/librte_net_pcap.so.21.2.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1783/2513] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1784/2513] Compiling C object drivers/librte_net_sfc.so.21.2.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1785/2513] Linking static target drivers/librte_net_pcap.a
[1786/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1787/2513] Linking static target drivers/librte_net_sfc.a
[1788/2513] Generating rte_crypto_dpaa_sec_def with a custom command
[1789/2513] Linking target drivers/librte_net_vdev_netvsc.so.21.2
[1790/2513] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1791/2513] Linking target drivers/librte_net_qede.so.21.2
[1792/2513] Generating rte_crypto_dpaa2_sec_def with a custom command
[1793/2513] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.2
[1794/2513] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1795/2513] Generating rte_net_softnic.pmd.c with a custom command
[1796/2513] Generating rte_crypto_nitrox_mingw with a custom command
[1797/2513] Compiling C object drivers/librte_net_softnic.so.21.2.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1798/2513] Generating rte_crypto_nitrox_def with a custom command
[1799/2513] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1800/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1801/2513] Generating rte_crypto_null_mingw with a custom command
[1802/2513] Linking static target drivers/librte_net_softnic.a
[1803/2513] Generating rte_net_thunderx.pmd.c with a custom command
[1804/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1805/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1806/2513] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1807/2513] Generating rte_crypto_null_def with a custom command
[1808/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1809/2513] Compiling C object drivers/librte_net_thunderx.so.21.2.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1810/2513] Linking static target drivers/librte_net_thunderx.a
[1811/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1812/2513] Generating rte_crypto_octeontx_def with a custom command
[1813/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1814/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1815/2513] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1816/2513] Generating rte_crypto_octeontx2_mingw with a custom command
[1817/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1818/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1819/2513] Generating rte_crypto_octeontx2_def with a custom command
[1820/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1821/2513] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1822/2513] Linking static target drivers/libtmp_rte_raw_ioat.a
[1823/2513] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1824/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1825/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1826/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1827/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1828/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1829/2513] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1830/2513] Generating rte_raw_skeleton.pmd.c with a custom command
[1831/2513] Linking target drivers/librte_net_pcap.so.21.2
[1832/2513] Linking target drivers/librte_net_sfc.so.21.2
[1833/2513] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[1834/2513] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1835/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1836/2513] Compiling C object drivers/librte_raw_skeleton.so.21.2.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1837/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1838/2513] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[1839/2513] Linking static target drivers/librte_raw_skeleton.a
[1840/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1841/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1842/2513] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1843/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1844/2513] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1845/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1846/2513] Generating rte_crypto_scheduler_mingw with a custom command
[1847/2513] Generating rte_raw_ioat.pmd.c with a custom command
[1848/2513] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1849/2513] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.2.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1850/2513] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1851/2513] Generating rte_crypto_scheduler_def with a custom command
[1852/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1853/2513] Linking target drivers/librte_net_thunderx.so.21.2
[1854/2513] Compiling C object drivers/librte_raw_ioat.so.21.2.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1855/2513] Linking static target drivers/librte_raw_octeontx2_ep.a
[1856/2513] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1857/2513] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1858/2513] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1859/2513] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.2.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1860/2513] Linking static target drivers/librte_raw_ioat.a
[1861/2513] Linking static target drivers/librte_raw_octeontx2_dma.a
[1862/2513] Generating rte_crypto_virtio_mingw with a custom command
[1863/2513] Generating rte_crypto_virtio_def with a custom command
[1864/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1865/2513] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1866/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1867/2513] Generating rte_crypto_nitrox.pmd.c with a custom command
[1868/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1869/2513] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1870/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1871/2513] Linking static target drivers/librte_crypto_bcmfs.a
[1872/2513] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1873/2513] Compiling C object drivers/librte_crypto_bcmfs.so.21.2.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1874/2513] Compiling C object drivers/librte_crypto_nitrox.so.21.2.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1875/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1876/2513] Generating rte_compress_octeontx_mingw with a custom command
[1877/2513] Linking static target drivers/librte_crypto_nitrox.a
[1878/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1879/2513] Generating rte_compress_octeontx_def with a custom command
[1880/2513] Generating rte_compress_zlib_mingw with a custom command
[1881/2513] Generating rte_compress_zlib_def with a custom command
[1882/2513] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[1883/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1884/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1885/2513] Linking static target drivers/libtmp_rte_net_tap.a
[1886/2513] Linking target drivers/librte_raw_skeleton.so.21.2
[1887/2513] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[1888/2513] Generating rte_regex_octeontx2_def with a custom command
[1889/2513] Generating rte_regex_octeontx2_mingw with a custom command
[1890/2513] Linking target drivers/librte_raw_octeontx2_dma.so.21.2
[1891/2513] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1892/2513] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[1893/2513] Linking target drivers/librte_raw_octeontx2_ep.so.21.2
[1894/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1895/2513] Generating rte_vdpa_ifc_def with a custom command
[1896/2513] Linking static target drivers/libtmp_rte_net_virtio.a
[1897/2513] Linking target drivers/librte_raw_ioat.so.21.2
[1898/2513] Generating rte_vdpa_ifc_mingw with a custom command
[1899/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1900/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1901/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1902/2513] Generating rte_net_tap.pmd.c with a custom command
[1903/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1904/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1905/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1906/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[1907/2513] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1908/2513] Compiling C object drivers/librte_net_tap.so.21.2.p/meson-generated_.._rte_net_tap.pmd.c.o
[1909/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1910/2513] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[1911/2513] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[1912/2513] Linking static target drivers/librte_net_tap.a
[1913/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1914/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1915/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1916/2513] Linking target drivers/librte_crypto_nitrox.so.21.2
[1917/2513] Linking target drivers/librte_crypto_bcmfs.so.21.2
[1918/2513] Generating rte_event_dlb_mingw with a custom command
[1919/2513] Generating rte_event_dlb_def with a custom command
[1920/2513] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1921/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[1922/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.2.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1923/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1924/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1925/2513] Linking static target drivers/libtmp_rte_crypto_null.a
[1926/2513] Generating rte_net_virtio.pmd.c with a custom command
[1927/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1928/2513] Linking static target drivers/librte_raw_dpaa2_qdma.a
[1929/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1930/2513] Compiling C object drivers/librte_net_virtio.so.21.2.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1931/2513] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1932/2513] Linking static target drivers/librte_net_virtio.a
[1933/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1934/2513] Generating rte_event_dlb2_def with a custom command
[1935/2513] Generating rte_event_dlb2_mingw with a custom command
[1936/2513] Generating rte_crypto_null.pmd.c with a custom command
[1937/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1938/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1939/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[1940/2513] Compiling C object drivers/librte_crypto_null.so.21.2.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1941/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[1942/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1943/2513] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1944/2513] Generating rte_event_dpaa_def with a custom command
[1945/2513] Generating rte_event_dpaa_mingw with a custom command
[1946/2513] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1947/2513] Linking static target drivers/librte_crypto_null.a
[1948/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1949/2513] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1950/2513] Generating rte_event_dpaa2_mingw with a custom command
[1951/2513] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[1952/2513] Generating rte_event_dpaa2_def with a custom command
[1953/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1954/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[1955/2513] Linking target drivers/librte_net_tap.so.21.2
[1956/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1957/2513] Linking static target drivers/libtmp_rte_crypto_virtio.a
[1958/2513] Generating rte_net_vmxnet3.pmd.c with a custom command
[1959/2513] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1960/2513] Linking static target drivers/librte_net_vmxnet3.a
[1961/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1962/2513] Generating rte_regex_octeontx2.pmd.c with a custom command
[1963/2513] Compiling C object drivers/librte_net_vmxnet3.so.21.2.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1964/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1965/2513] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1966/2513] Compiling C object drivers/librte_regex_octeontx2.so.21.2.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1967/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1968/2513] Linking static target drivers/librte_regex_octeontx2.a
[1969/2513] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1970/2513] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[1971/2513] Linking target drivers/librte_net_virtio.so.21.2
[1972/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[1973/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1974/2513] Generating rte_crypto_virtio.pmd.c with a custom command
[1975/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1976/2513] Linking static target drivers/libtmp_rte_compress_zlib.a
[1977/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1978/2513] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1979/2513] Linking target drivers/librte_raw_dpaa2_qdma.so.21.2
[1980/2513] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1981/2513] Compiling C object drivers/librte_crypto_virtio.so.21.2.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1982/2513] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[1983/2513] Linking static target drivers/librte_crypto_virtio.a
[1984/2513] Generating rte_event_octeontx2_def with a custom command
[1985/2513] Generating rte_event_octeontx2_mingw with a custom command
[1986/2513] Linking target drivers/librte_crypto_null.so.21.2
[1987/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1988/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1989/2513] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1990/2513] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[1991/2513] Generating rte_compress_zlib.pmd.c with a custom command
[1992/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1993/2513] Generating rte_vdpa_ifc.pmd.c with a custom command
[1994/2513] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1995/2513] Linking static target drivers/librte_compress_zlib.a
[1996/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1997/2513] Linking target drivers/librte_net_vmxnet3.so.21.2
[1998/2513] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[1999/2513] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2000/2513] Compiling C object drivers/librte_compress_zlib.so.21.2.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2001/2513] Compiling C object drivers/librte_vdpa_ifc.so.21.2.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2002/2513] Linking static target drivers/librte_vdpa_ifc.a
[2003/2513] Generating rte_event_opdl_mingw with a custom command
[2004/2513] Generating rte_event_opdl_def with a custom command
[2005/2513] Generating rte_compress_octeontx.pmd.c with a custom command
[2006/2513] Linking target drivers/librte_regex_octeontx2.so.21.2
[2007/2513] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2008/2513] Generating rte_event_skeleton_def with a custom command
[2009/2513] Compiling C object drivers/librte_compress_octeontx.so.21.2.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2010/2513] Linking static target drivers/librte_compress_octeontx.a
[2011/2513] Generating rte_event_skeleton_mingw with a custom command
[2012/2513] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2013/2513] Linking target drivers/librte_crypto_virtio.so.21.2
[2014/2513] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2015/2513] Linking static target drivers/libtmp_rte_event_dpaa.a
[2016/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[2017/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2018/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2019/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2020/2513] Generating rte_event_sw_def with a custom command
[2021/2513] Generating rte_event_sw_mingw with a custom command
[2022/2513] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2023/2513] Generating rte_event_dpaa.pmd.c with a custom command
[2024/2513] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2025/2513] Linking static target drivers/librte_event_dpaa.a
[2026/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2027/2513] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2028/2513] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2029/2513] Compiling C object drivers/librte_event_dpaa.so.21.2.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2030/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2031/2513] Linking target drivers/librte_compress_octeontx.so.21.2
[2032/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2033/2513] Generating rte_event_dsw_mingw with a custom command
[2034/2513] Linking target drivers/librte_compress_zlib.so.21.2
[2035/2513] Generating rte_event_dsw_def with a custom command
[2036/2513] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2037/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2038/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2039/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2040/2513] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2041/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2042/2513] Linking static target drivers/libtmp_rte_event_skeleton.a
[2043/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2044/2513] Generating rte_event_octeontx_mingw with a custom command
[2045/2513] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2046/2513] Generating rte_event_octeontx_def with a custom command
[2047/2513] Generating rte_event_dpaa2.pmd.c with a custom command
[2048/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2049/2513] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2050/2513] Compiling C object drivers/librte_event_dpaa2.so.21.2.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2051/2513] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2052/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2053/2513] Generating rte_event_skeleton.pmd.c with a custom command
[2054/2513] Generating rte_baseband_null_mingw with a custom command
[2055/2513] Linking static target drivers/libtmp_rte_net_txgbe.a
[2056/2513] Linking static target drivers/librte_event_dpaa2.a
[2057/2513] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2058/2513] Compiling C object drivers/librte_event_skeleton.so.21.2.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2059/2513] Generating rte_baseband_null_def with a custom command
[2060/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2061/2513] Linking static target drivers/librte_event_skeleton.a
[2062/2513] Generating rte_crypto_scheduler.pmd.c with a custom command
[2063/2513] Generating rte_baseband_turbo_sw_def with a custom command
[2064/2513] Generating rte_baseband_turbo_sw_mingw with a custom command
[2065/2513] Compiling C object drivers/librte_crypto_scheduler.so.21.2.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2066/2513] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2067/2513] Linking static target drivers/librte_crypto_scheduler.a
[2068/2513] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2069/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[2070/2513] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2071/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2072/2513] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2073/2513] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2074/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[2075/2513] Generating rte_net_txgbe.pmd.c with a custom command
[2076/2513] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2077/2513] Linking static target drivers/libtmp_rte_raw_ntb.a
[2078/2513] Generating rte_baseband_acc100_def with a custom command
[2079/2513] Compiling C object drivers/librte_net_txgbe.so.21.2.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2080/2513] Linking static target drivers/librte_net_txgbe.a
[2081/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2082/2513] Generating rte_baseband_acc100_mingw with a custom command
[2083/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2084/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2085/2513] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2086/2513] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2087/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2088/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2089/2513] Linking target drivers/librte_event_skeleton.so.21.2
[2090/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2091/2513] Generating rte_raw_ntb.pmd.c with a custom command
[2092/2513] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2093/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2094/2513] Linking static target drivers/librte_raw_ntb.a
[2095/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2096/2513] Compiling C object drivers/librte_raw_ntb.so.21.2.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2097/2513] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2098/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2099/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2100/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2101/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2102/2513] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2103/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[2104/2513] Linking target drivers/librte_crypto_scheduler.so.21.2
[2105/2513] Linking static target drivers/libtmp_rte_event_dlb.a
[2106/2513] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2107/2513] Linking target drivers/librte_net_txgbe.so.21.2
[2108/2513] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2109/2513] Compiling C object drivers/librte_crypto_caam_jr.so.21.2.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2110/2513] Generating rte_event_dlb.pmd.c with a custom command
[2111/2513] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2112/2513] Linking static target drivers/librte_crypto_caam_jr.a
[2113/2513] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2114/2513] Linking static target drivers/librte_event_dlb.a
[2115/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2116/2513] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2117/2513] Compiling C object drivers/librte_event_dlb.so.21.2.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2118/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2119/2513] Linking target drivers/librte_raw_ntb.so.21.2
[2120/2513] Linking static target drivers/libtmp_rte_event_dlb2.a
[2121/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2122/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2123/2513] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2124/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2125/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2126/2513] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2127/2513] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2128/2513] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2129/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2130/2513] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2131/2513] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2132/2513] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2133/2513] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2134/2513] Linking target drivers/librte_crypto_caam_jr.so.21.2
[2135/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2136/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2137/2513] Linking static target drivers/libtmp_rte_baseband_null.a
[2138/2513] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2139/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2140/2513] Generating rte_event_dlb2.pmd.c with a custom command
[2141/2513] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2142/2513] Linking target drivers/librte_event_dlb.so.21.2
[2143/2513] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2144/2513] Compiling C object drivers/librte_event_dlb2.so.21.2.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2145/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2146/2513] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2147/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2148/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2149/2513] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2150/2513] Linking static target drivers/librte_event_dlb2.a
[2151/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2152/2513] Generating rte_baseband_null.pmd.c with a custom command
[2153/2513] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2154/2513] Linking static target drivers/librte_baseband_null.a
[2155/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2156/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2157/2513] Compiling C object drivers/librte_baseband_null.so.21.2.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2158/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2159/2513] Linking static target drivers/libtmp_rte_event_octeontx.a
[2160/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2161/2513] Linking static target drivers/libtmp_rte_event_sw.a
[2162/2513] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2163/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2164/2513] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2165/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2166/2513] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.2
[2167/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2168/2513] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2169/2513] Linking target drivers/librte_event_dlb2.so.21.2
[2170/2513] Generating rte_event_octeontx.pmd.c with a custom command
[2171/2513] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2172/2513] Compiling C object drivers/librte_event_octeontx.so.21.2.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2173/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2174/2513] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.2
[2175/2513] Generating rte_event_sw.pmd.c with a custom command
[2176/2513] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2177/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2178/2513] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2179/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2180/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2181/2513] Compiling C object drivers/librte_event_sw.so.21.2.p/meson-generated_.._rte_event_sw.pmd.c.o
[2182/2513] Linking static target drivers/librte_event_octeontx.a
[2183/2513] Linking target drivers/librte_baseband_null.so.21.2
[2184/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2185/2513] Linking static target drivers/librte_event_sw.a
[2186/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2187/2513] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2188/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2189/2513] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2190/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2191/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2192/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2193/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2194/2513] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2195/2513] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2196/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2197/2513] Linking static target drivers/libtmp_rte_event_dsw.a
[2198/2513] Linking static target drivers/librte_baseband_turbo_sw.a
[2199/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2200/2513] Compiling C object drivers/librte_baseband_turbo_sw.so.21.2.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2201/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2202/2513] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2203/2513] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2204/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2205/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2206/2513] Linking target drivers/librte_event_sw.so.21.2
[2207/2513] Linking target drivers/librte_event_octeontx.so.21.2
[2208/2513] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2209/2513] Generating rte_event_dsw.pmd.c with a custom command
[2210/2513] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2211/2513] Linking static target drivers/librte_event_dsw.a
[2212/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2213/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2214/2513] Compiling C object drivers/librte_event_dsw.so.21.2.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2215/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2216/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2217/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2218/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2219/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2220/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2221/2513] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2222/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2223/2513] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2224/2513] Linking static target drivers/librte_crypto_dpaa_sec.a
[2225/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2226/2513] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2227/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2228/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2229/2513] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2230/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2231/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2232/2513] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2233/2513] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2234/2513] Linking target drivers/librte_baseband_turbo_sw.so.21.2
[2235/2513] Linking target drivers/librte_event_dsw.so.21.2
[2236/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2237/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2238/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2239/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2240/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2241/2513] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2242/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2243/2513] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2244/2513] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2245/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2246/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2247/2513] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2248/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2249/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2250/2513] Linking target drivers/librte_crypto_dpaa_sec.so.21.2
[2251/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2252/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2253/2513] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2254/2513] Compiling C object app/test/dpdk-test.p/test.c.o
[2255/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2256/2513] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2257/2513] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2258/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2259/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2260/2513] Linking target drivers/librte_crypto_dpaa2_sec.so.21.2
[2261/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2262/2513] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2263/2513] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2264/2513] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2265/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2266/2513] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2267/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2268/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2269/2513] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.2.p/librte_crypto_dpaa_sec.so.21.2.symbols
[2270/2513] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2271/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2272/2513] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2273/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2274/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2275/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2276/2513] Linking target drivers/librte_event_dpaa.so.21.2
[2277/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2278/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2279/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2280/2513] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2281/2513] Generating rte_baseband_acc100.pmd.c with a custom command
[2282/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2283/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2284/2513] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2285/2513] Compiling C object drivers/librte_baseband_acc100.so.21.2.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2286/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2287/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2288/2513] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2289/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2290/2513] Linking static target drivers/librte_baseband_acc100.a
[2291/2513] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.2.p/librte_crypto_dpaa2_sec.so.21.2.symbols
[2292/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2293/2513] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2294/2513] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2295/2513] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2296/2513] Linking target drivers/librte_event_dpaa2.so.21.2
[2297/2513] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2298/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2299/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2300/2513] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2301/2513] Compiling C object app/test/dpdk-test.p/commands.c.o
[2302/2513] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2303/2513] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2304/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2305/2513] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2306/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2307/2513] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2308/2513] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2309/2513] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2310/2513] Generating rte_net_octeontx2.pmd.c with a custom command
[2311/2513] Compiling C object drivers/librte_crypto_octeontx2.so.21.2.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2312/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2313/2513] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2314/2513] Linking static target drivers/librte_crypto_octeontx2.a
[2315/2513] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2316/2513] Compiling C object drivers/librte_net_octeontx2.so.21.2.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2317/2513] Linking static target drivers/librte_net_octeontx2.a
[2318/2513] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2319/2513] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2320/2513] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2321/2513] Generating rte_crypto_octeontx.pmd.c with a custom command
[2322/2513] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2323/2513] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2324/2513] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2325/2513] Linking target drivers/librte_baseband_acc100.so.21.2
[2326/2513] Compiling C object drivers/librte_crypto_octeontx.so.21.2.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2327/2513] Linking static target drivers/librte_crypto_octeontx.a
[2328/2513] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2329/2513] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2330/2513] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2331/2513] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2332/2513] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2333/2513] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2334/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2335/2513] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2336/2513] Linking target drivers/librte_crypto_octeontx2.so.21.2
[2337/2513] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2338/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2339/2513] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2340/2513] Linking target drivers/librte_net_octeontx2.so.21.2
[2341/2513] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2342/2513] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2343/2513] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2344/2513] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2345/2513] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2346/2513] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2347/2513] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2348/2513] Linking target drivers/librte_crypto_octeontx.so.21.2
[2349/2513] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2350/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2351/2513] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2352/2513] Generating symbol file drivers/librte_crypto_octeontx2.so.21.2.p/librte_crypto_octeontx2.so.21.2.symbols
[2353/2513] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2354/2513] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2355/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2356/2513] Generating symbol file drivers/librte_net_octeontx2.so.21.2.p/librte_net_octeontx2.so.21.2.symbols
[2357/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2358/2513] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2359/2513] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2360/2513] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2361/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2362/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2363/2513] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2364/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2365/2513] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2366/2513] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2367/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2368/2513] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2369/2513] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2370/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2371/2513] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2372/2513] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2373/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2374/2513] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2375/2513] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2376/2513] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2377/2513] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2378/2513] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2379/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2380/2513] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2381/2513] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2382/2513] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2383/2513] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2384/2513] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2385/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2386/2513] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2387/2513] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2388/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2389/2513] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2390/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2391/2513] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2392/2513] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2393/2513] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2394/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2395/2513] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2396/2513] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2397/2513] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2398/2513] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2399/2513] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2400/2513] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2401/2513] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2402/2513] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2403/2513] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2404/2513] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2405/2513] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2406/2513] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2407/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2408/2513] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2409/2513] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2410/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2411/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2412/2513] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2413/2513] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2414/2513] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2415/2513] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2416/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2417/2513] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2418/2513] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2419/2513] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2420/2513] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2421/2513] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2422/2513] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2423/2513] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2424/2513] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2425/2513] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2426/2513] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2427/2513] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2428/2513] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2429/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2430/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2431/2513] Generating rte_kni_makefile with a custom command
[2432/2513] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2433/2513] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2434/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2435/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2436/2513] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2437/2513] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2438/2513] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2439/2513] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2440/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2441/2513] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2442/2513] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2443/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2444/2513] Linking static target drivers/libtmp_rte_event_opdl.a
[2445/2513] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2446/2513] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2447/2513] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2448/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2449/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2450/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2451/2513] Generating rte_event_opdl.pmd.c with a custom command
[2452/2513] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2453/2513] Compiling C object drivers/librte_event_opdl.so.21.2.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2454/2513] Linking static target drivers/librte_event_opdl.a
[2455/2513] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2456/2513] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2457/2513] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2458/2513] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2459/2513] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2460/2513] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2461/2513] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2462/2513] Linking target drivers/librte_event_opdl.so.21.2
[2463/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2464/2513] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2465/2513] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2466/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2467/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2468/2513] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2469/2513] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2470/2513] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.8.0-45-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  MODPOST /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/Module.symvers
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/linux-headers-5.8.0-45-generic'
[2471/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2472/2513] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2473/2513] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2474/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2475/2513] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2476/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2477/2513] Linking static target lib/librte_pipeline.a
[2478/2513] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2479/2513] Linking target lib/librte_pipeline.so.21.2
[2480/2513] Generating symbol file lib/librte_pipeline.so.21.2.p/librte_pipeline.so.21.2.symbols
[2481/2513] Linking target drivers/librte_net_softnic.so.21.2
[2482/2513] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2483/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2484/2513] Linking static target lib/librte_vhost.a
[2485/2513] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2486/2513] Linking target lib/librte_vhost.so.21.2
[2487/2513] Generating symbol file lib/librte_vhost.so.21.2.p/librte_vhost.so.21.2.symbols
[2488/2513] Linking target drivers/librte_net_vhost.so.21.2
[2489/2513] Linking target drivers/librte_vdpa_ifc.so.21.2
[2490/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2491/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2492/2513] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2493/2513] Generating rte_event_octeontx2.pmd.c with a custom command
[2494/2513] Compiling C object drivers/librte_event_octeontx2.so.21.2.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2495/2513] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2496/2513] Linking static target drivers/librte_event_octeontx2.a
[2497/2513] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2498/2513] Linking target drivers/librte_event_octeontx2.so.21.2
[2499/2513] Linking target app/test/dpdk-test
[2500/2513] Linking target app/dpdk-test-sad
[2501/2513] Linking target app/dpdk-pdump
[2502/2513] Linking target app/dpdk-test-regex
[2503/2513] Linking target app/dpdk-test-acl
[2504/2513] Linking target app/dpdk-testpmd
[2505/2513] Linking target app/dpdk-test-eventdev
[2506/2513] Linking target app/dpdk-test-compress-perf
[2507/2513] Linking target app/dpdk-test-flow-perf
[2508/2513] Linking target app/dpdk-proc-info
[2509/2513] Linking target app/dpdk-test-pipeline
[2510/2513] Linking target app/dpdk-test-cmdline
[2511/2513] Linking target app/dpdk-test-fib
[2512/2513] Linking target app/dpdk-test-bbdev
[2513/2513] Linking target app/dpdk-test-crypto-perf
22/03/2021 05:47:54             dut.10.240.183.145: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
22/03/2021 05:47:54             dut.10.240.183.145: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
22/03/2021 05:47:54             dut.10.240.183.145: mkdir -p x86_64-native-linuxapp-gcc/kmod
22/03/2021 05:47:54             dut.10.240.183.145: 
22/03/2021 05:47:54             dut.10.240.183.145: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
22/03/2021 05:47:54             dut.10.240.183.145: 
22/03/2021 05:47:54                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Begin
22/03/2021 05:47:54             dut.10.240.183.145: 
22/03/2021 05:47:55                         tester: 
22/03/2021 05:47:55                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues N/A: 
22/03/2021 05:47:57             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:47:57                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
22/03/2021 05:47:57             dut.10.240.183.145: 
22/03/2021 05:47:57                         tester: 
22/03/2021 05:47:57                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD N/A: 
22/03/2021 05:47:59             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:00                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
22/03/2021 05:48:00             dut.10.240.183.145: 
22/03/2021 05:48:00                         tester: 
22/03/2021 05:48:00                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD N/A: 
22/03/2021 05:48:02             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:03                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
22/03/2021 05:48:03             dut.10.240.183.145: 
22/03/2021 05:48:03                         tester: 
22/03/2021 05:48:03                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD N/A: 
22/03/2021 05:48:05             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:06                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
22/03/2021 05:48:06             dut.10.240.183.145: 
22/03/2021 05:48:06                         tester: 
22/03/2021 05:48:06                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD N/A: 
22/03/2021 05:48:08             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:09                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
22/03/2021 05:48:09             dut.10.240.183.145: 
22/03/2021 05:48:09                         tester: 
22/03/2021 05:48:09                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD N/A: 
22/03/2021 05:48:11             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:12                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
22/03/2021 05:48:12             dut.10.240.183.145: 
22/03/2021 05:48:12                         tester: 
22/03/2021 05:48:12                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag N/A: 
22/03/2021 05:48:14             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:14                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Begin
22/03/2021 05:48:15             dut.10.240.183.145: 
22/03/2021 05:48:15                         tester: 
22/03/2021 05:48:15                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag N/A: 
22/03/2021 05:48:17             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:17                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Begin
22/03/2021 05:48:17             dut.10.240.183.145: 
22/03/2021 05:48:17                         tester: 
22/03/2021 05:48:17                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad N/A: 
22/03/2021 05:48:19             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:48:20                TestFlexibleRxd: Test Case test_check_effect_replace_pkg_RXID_22_to_RXID_16 Result SKIPPED:
22/03/2021 05:48:20                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
22/03/2021 05:48:20             dut.10.240.183.145: 
22/03/2021 05:48:20                         tester: 
22/03/2021 05:48:20             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_17890_20210322054548  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 05:48:21             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_17890_20210322054548/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_5287796163434606769 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_9151807561496443102 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_16999451526812758099 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_12493076633397760861 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_621445567821695201 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_86478147402290258 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_5575020843808631246 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_5240963799138612783 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_12449271503858274991 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_4535838571250703572 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_18120078719793352736 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_3766741040564657974 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_2084530399950757257 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_1778185140210313642 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_17024527283094037094 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_44434341858510610 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_11428417962940680531 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_7446340108900745599 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_16776944903297696181 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_13576279128823427984 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_4351522523271416539 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_10413627960808250883 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_1786976503971596022 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_12345957369414053064 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_2738965315349690005 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_17908088763971198695 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_18298529114723109590 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_1880945603486384987 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_17428497372921950562 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_7714872869748174355 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_12111773992741733379 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_1000809181279456238 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_15771642225813410616 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_5052080422894067850 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_14324945035224383645 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_797038924198826901 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_1953344186495361254 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_16987167862838070324 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_8602421257942275994 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_3990218344211425260 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_7083799833974847308 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_9540125986907868634 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_9542056864907648999 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_552414246776193821 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_7166430315965835280 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_13741385853821099970 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_16033095578705170595 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_12759758297051602541 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_1334377119599621504 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_9224188591455562799 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_2574794900683215597 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_4705037423969675173 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_8925299106106206181 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_2059445841793724211 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_8944985286900553506 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_7537134964845968236 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_7988311482045410071 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_12510319587034419757 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_15830914314030573246 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_7995191369422729531 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_8457955101361243654 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_2921052270979759306 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_11205665113077367394 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_6966258017186040465 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_10626924196145792691 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_629183214142978741 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_6197071894329426949 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_4623861217589364648 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_7061119025219215057 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_6122609154974112660 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_12386747222884580336 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_18116991675583235229 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_6291558498322722144 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_12733968498916900601 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_15219158812311793521 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_6181101855394688875 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_15396665257940723499 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_5509730575380129166 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_3628398620179593652 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_15618624461828529289 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_445160643480977234 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_10793375359897899454 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_926745593380905162 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_8429506583619479074 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_6906134296857093669 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_8793748434453406335 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_1569183957583940741 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_14235861343874159460 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_18337748967730961750 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_9114037779962135324 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_3136140112407447292 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_15447651410225564429 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_1279682326178426779 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_9861457134878453194 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_2219425541811225382 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_2386312285811580068 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_11122600557335212812 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_8081632373533848664 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_12169702069588651662 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_16996828863970335164 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_12780048277043433681 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_682403663000311651 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_18314117501269858423 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_9001292977488122258 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_13429893208201340730 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_2781633805596562187 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_3496876255298484962 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_10530955098027026234 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_5034081193985668009 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_13262444067507105410 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_8140550919979932840 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_2243164113463362261 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_11415152252385558193 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_4444406073950592805 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_8384026739413573993 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_4564994186452581764 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_16525317502480482409 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_1509995782346504940 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_4299352985472051220 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_7867843206031070094 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_2063996582833348698 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_11328668866558935471 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_315585491043577952 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_15350851591375345475 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11107203179193554294 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_10780084696973096882 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_8868069832346039515 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_5580239588866499804 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_12050073676965347685 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_12975361809959384540 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_10882752277504555942 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_13663943710777459578 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 05:48:31             dut.10.240.183.145: set verbose 1
22/03/2021 05:48:32             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 05:48:32             dut.10.240.183.145: start
22/03/2021 05:48:32             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 05:48:35             dut.10.240.183.145: 
22/03/2021 05:48:35                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result FAILED: 'ip_offset value error, case test failed'
22/03/2021 05:48:35             dut.10.240.183.145: quit
22/03/2021 05:48:36             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_9151807561496443102 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_16999451526812758099 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_12493076633397760861 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_621445567821695201 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_86478147402290258 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_5575020843808631246 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_5240963799138612783 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_12449271503858274991 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_4535838571250703572 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_18120078719793352736 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_3766741040564657974 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_2084530399950757257 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_1778185140210313642 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_17024527283094037094 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_44434341858510610 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_11428417962940680531 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_7446340108900745599 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_16776944903297696181 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_13576279128823427984 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_4351522523271416539 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_10413627960808250883 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_1786976503971596022 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_12345957369414053064 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_2738965315349690005 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_17908088763971198695 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_18298529114723109590 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_1880945603486384987 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_17428497372921950562 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_7714872869748174355 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_12111773992741733379 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_1000809181279456238 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_15771642225813410616 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_5287796163434606769 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_14324945035224383645 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_797038924198826901 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_1953344186495361254 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_16987167862838070324 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_8602421257942275994 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_3990218344211425260 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_7083799833974847308 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_9540125986907868634 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_9542056864907648999 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_552414246776193821 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_7166430315965835280 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_13741385853821099970 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_16033095578705170595 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_12759758297051602541 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_1334377119599621504 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_9224188591455562799 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_2574794900683215597 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_4705037423969675173 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_8925299106106206181 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_2059445841793724211 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_8944985286900553506 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_7537134964845968236 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_7988311482045410071 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_12510319587034419757 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_15830914314030573246 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_7995191369422729531 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_8457955101361243654 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_2921052270979759306 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_11205665113077367394 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_6966258017186040465 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_10626924196145792691 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_629183214142978741 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_5052080422894067850 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_4623861217589364648 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_7061119025219215057 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_6122609154974112660 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_12386747222884580336 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_18116991675583235229 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_6291558498322722144 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_12733968498916900601 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_15219158812311793521 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_6181101855394688875 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_15396665257940723499 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_5509730575380129166 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_3628398620179593652 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_15618624461828529289 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_445160643480977234 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_10793375359897899454 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_926745593380905162 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_8429506583619479074 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_6906134296857093669 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_8793748434453406335 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_1569183957583940741 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_14235861343874159460 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_18337748967730961750 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_9114037779962135324 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_3136140112407447292 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_15447651410225564429 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_1279682326178426779 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_9861457134878453194 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_2219425541811225382 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_2386312285811580068 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_11122600557335212812 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_8081632373533848664 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_12169702069588651662 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_6197071894329426949 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_12780048277043433681 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_682403663000311651 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_18314117501269858423 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_9001292977488122258 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_13429893208201340730 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_2781633805596562187 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_3496876255298484962 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_10530955098027026234 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_5034081193985668009 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_13262444067507105410 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_8140550919979932840 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_2243164113463362261 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_11415152252385558193 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_4444406073950592805 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_8384026739413573993 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_4564994186452581764 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_16525317502480482409 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_1509995782346504940 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_4299352985472051220 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_7867843206031070094 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_2063996582833348698 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_11328668866558935471 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_315585491043577952 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_15350851591375345475 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11107203179193554294 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_10780084696973096882 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_8868069832346039515 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_5580239588866499804 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_12050073676965347685 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_12975361809959384540 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_10882752277504555942 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_13663943710777459578 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_16996828863970335164 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 05:48:37                            dts:  !!! STOPPING DTS
22/03/2021 05:48:37             dut.10.240.183.145: rm -rf x86_64-native-linuxapp-gcc
22/03/2021 05:48:37             dut.10.240.183.145: 
22/03/2021 05:48:37             dut.10.240.183.145: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
22/03/2021 05:48:44             dut.10.240.183.145: The Meson build system
Version: 0.56.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.05.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:238: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" :  
Fetching value of define "__AVX512BW__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
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"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
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: YES 2.12
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__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
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 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
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"
Run-time dependency libelf found: NO (tried pkgconfig)
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: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-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 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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 "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-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)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
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 "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-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 (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, sfc_efx, qat, 
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, ionic, 
	ixgbe, kni, liquidio, memif, netvsc, nfp, null, octeontx, 
	octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, softnic, 
	tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	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, "libAArch64crypto"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1019

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
22/03/2021 05:48:44             dut.10.240.183.145: ninja -C x86_64-native-linuxapp-gcc
22/03/2021 05:50:22             dut.10.240.183.145: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2513] Generating rte_kvargs_def with a custom command
[2/2513] Generating rte_kvargs_mingw with a custom command
[3/2513] Generating rte_telemetry_def with a custom command
[4/2513] Generating rte_telemetry_mingw with a custom command
[5/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[6/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[7/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[8/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[9/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[10/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[11/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[12/2513] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[13/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[14/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[15/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[16/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[17/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[18/2513] Linking static target lib/librte_kvargs.a
[19/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[20/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[21/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_version.c.o
[22/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[23/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[24/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[25/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[26/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[27/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[28/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[29/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_rte_thread.c.o
[30/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[31/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[32/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[33/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[34/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[35/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[36/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[37/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[38/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[39/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[40/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[41/2513] Generating rte_eal_mingw with a custom command
[42/2513] Generating rte_rcu_mingw with a custom command
[43/2513] Generating rte_eal_def with a custom command
[44/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[45/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[46/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[47/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[48/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[49/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[50/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[51/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[52/2513] Generating rte_ring_def with a custom command
[53/2513] Generating rte_rcu_def with a custom command
[54/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[55/2513] Generating rte_ring_mingw with a custom command
[56/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[57/2513] Generating rte_mempool_mingw with a custom command
[58/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[59/2513] Generating rte_mempool_def with a custom command
[60/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[61/2513] Generating rte_mbuf_mingw with a custom command
[62/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[63/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[64/2513] Generating rte_mbuf_def with a custom command
[65/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[66/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[67/2513] Generating rte_net_def with a custom command
[68/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_power_intrinsics.c.o
[69/2513] Linking static target lib/librte_telemetry.a
[70/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[71/2513] Generating rte_net_mingw with a custom command
[72/2513] Generating rte_meter_def with a custom command
[73/2513] Generating rte_meter_mingw with a custom command
[74/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[75/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[76/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[77/2513] Generating rte_ethdev_mingw with a custom command
[78/2513] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[79/2513] Generating rte_ethdev_def with a custom command
[80/2513] Linking static target lib/librte_ring.a
[81/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[82/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[83/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[84/2513] Generating rte_pci_mingw with a custom command
[85/2513] Generating rte_pci_def with a custom command
[86/2513] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[87/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[88/2513] Linking static target lib/librte_meter.a
[89/2513] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[90/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[91/2513] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[92/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[93/2513] Linking target lib/librte_kvargs.so.21.2
[94/2513] Linking static target lib/librte_pci.a
[95/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[96/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[97/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[98/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[99/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[100/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[101/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[102/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[103/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[104/2513] Generating rte_cmdline_def with a custom command
[105/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[106/2513] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[107/2513] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[108/2513] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[109/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[110/2513] Generating rte_metrics_def with a custom command
[111/2513] Generating rte_cmdline_mingw with a custom command
[112/2513] Generating rte_metrics_mingw with a custom command
[113/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[114/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[115/2513] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[116/2513] Generating rte_hash_def with a custom command
[117/2513] Generating rte_hash_mingw with a custom command
[118/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[119/2513] Generating rte_timer_def with a custom command
[120/2513] Generating rte_timer_mingw with a custom command
[121/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[122/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[123/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[124/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[125/2513] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[126/2513] Generating rte_acl_mingw with a custom command
[127/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[128/2513] Generating rte_acl_def with a custom command
[129/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[130/2513] Generating symbol file lib/librte_kvargs.so.21.2.p/librte_kvargs.so.21.2.symbols
[131/2513] Generating rte_bbdev_def with a custom command
[132/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[133/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[134/2513] Generating rte_bbdev_mingw with a custom command
[135/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[136/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[137/2513] Generating rte_bitratestats_def with a custom command
[138/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[139/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[140/2513] Generating rte_cfgfile_def with a custom command
[141/2513] Generating rte_cfgfile_mingw with a custom command
[142/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[143/2513] Generating rte_bitratestats_mingw with a custom command
[144/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[145/2513] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[146/2513] Generating rte_compressdev_mingw with a custom command
[147/2513] Generating rte_compressdev_def with a custom command
[148/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[149/2513] Generating rte_cryptodev_def with a custom command
[150/2513] Generating rte_cryptodev_mingw with a custom command
[151/2513] Generating rte_distributor_mingw with a custom command
[152/2513] Generating rte_distributor_def with a custom command
[153/2513] Generating rte_efd_def with a custom command
[154/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[155/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[156/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[157/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[158/2513] Generating rte_efd_mingw with a custom command
[159/2513] Linking static target lib/librte_cmdline.a
[160/2513] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[161/2513] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[162/2513] Linking static target lib/librte_rcu.a
[163/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[164/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[165/2513] Linking target lib/librte_telemetry.so.21.2
[166/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[167/2513] Linking static target lib/librte_net.a
[168/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[169/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[170/2513] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[171/2513] Linking static target lib/librte_mempool.a
[172/2513] Generating rte_eventdev_def with a custom command
[173/2513] Linking static target lib/librte_cfgfile.a
[174/2513] Generating rte_eventdev_mingw with a custom command
[175/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[176/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[177/2513] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[178/2513] Linking static target lib/librte_eal.a
[179/2513] Linking static target lib/librte_timer.a
[180/2513] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[181/2513] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[182/2513] Generating symbol file lib/librte_telemetry.so.21.2.p/librte_telemetry.so.21.2.symbols
[183/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[184/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[185/2513] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[186/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[187/2513] Generating rte_gro_def with a custom command
[188/2513] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[189/2513] Generating rte_gro_mingw with a custom command
[190/2513] Linking static target lib/librte_bitratestats.a
[191/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics_telemetry.c.o
[192/2513] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[193/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[194/2513] Linking static target lib/librte_metrics.a
[195/2513] Generating rte_gso_def with a custom command
[196/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[197/2513] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[198/2513] Generating rte_gso_mingw with a custom command
[199/2513] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[200/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[201/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[202/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[203/2513] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[204/2513] Linking static target lib/librte_compressdev.a
[205/2513] Generating rte_ip_frag_def with a custom command
[206/2513] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[207/2513] Generating rte_ip_frag_mingw with a custom command
[208/2513] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[209/2513] Generating rte_jobstats_def with a custom command
[210/2513] Linking static target lib/librte_bbdev.a
[211/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[212/2513] Generating rte_jobstats_mingw with a custom command
[213/2513] Generating rte_kni_def with a custom command
[214/2513] Generating rte_kni_mingw with a custom command
[215/2513] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[216/2513] Generating rte_latencystats_def with a custom command
[217/2513] Generating rte_latencystats_mingw with a custom command
[218/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[219/2513] Linking static target lib/librte_distributor.a
[220/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[221/2513] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[222/2513] Generating rte_lpm_def with a custom command
[223/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[224/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[225/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[226/2513] Generating rte_lpm_mingw with a custom command
[227/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[228/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_udp4.c.o
[229/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[230/2513] Generating rte_member_def with a custom command
[231/2513] Generating rte_member_mingw with a custom command
[232/2513] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[233/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[234/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[235/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[236/2513] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[237/2513] Linking static target lib/librte_gro.a
[238/2513] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[239/2513] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[240/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[241/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[242/2513] Generating rte_power_def with a custom command
[243/2513] Generating rte_power_mingw with a custom command
[244/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[245/2513] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[246/2513] Generating rte_pdump_def with a custom command
[247/2513] Generating rte_pdump_mingw with a custom command
[248/2513] Generating rte_rawdev_mingw with a custom command
[249/2513] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[250/2513] Generating rte_rawdev_def with a custom command
[251/2513] Generating rte_regexdev_def with a custom command
[252/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[253/2513] Generating rte_regexdev_mingw with a custom command
[254/2513] Generating rte_rib_def with a custom command
[255/2513] Generating rte_rib_mingw with a custom command
[256/2513] Generating rte_reorder_def with a custom command
[257/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[258/2513] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[259/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[260/2513] Generating rte_reorder_mingw with a custom command
[261/2513] Linking static target lib/librte_jobstats.a
[262/2513] Generating rte_sched_def with a custom command
[263/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[264/2513] Generating rte_sched_mingw with a custom command
[265/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[266/2513] Generating rte_security_def with a custom command
[267/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[268/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[269/2513] Generating rte_security_mingw with a custom command
[270/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[271/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[272/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[273/2513] Generating rte_stack_def with a custom command
[274/2513] Generating rte_stack_mingw with a custom command
[275/2513] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[276/2513] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[277/2513] Linking static target lib/librte_ip_frag.a
[278/2513] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[279/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[280/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[281/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[282/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[283/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[284/2513] Linking static target lib/librte_stack.a
[285/2513] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[286/2513] Generating rte_vhost_def with a custom command
[287/2513] Linking static target lib/librte_latencystats.a
[288/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[289/2513] Generating rte_vhost_mingw with a custom command
[290/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[291/2513] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[292/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[293/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[294/2513] Linking static target lib/librte_gso.a
[295/2513] Generating rte_ipsec_def with a custom command
[296/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_pmd_mgmt.c.o
[297/2513] Generating rte_ipsec_mingw with a custom command
[298/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[299/2513] Linking static target lib/librte_cryptodev.a
[300/2513] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[301/2513] Linking static target lib/librte_efd.a
[302/2513] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[303/2513] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[304/2513] Linking static target lib/librte_kni.a
[305/2513] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[306/2513] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[307/2513] Linking static target lib/librte_regexdev.a
[308/2513] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[309/2513] Linking static target lib/librte_rawdev.a
[310/2513] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[311/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[312/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[313/2513] Linking static target lib/librte_lpm.a
[314/2513] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[315/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[316/2513] Generating rte_fib_mingw with a custom command
[317/2513] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[318/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[319/2513] Linking static target lib/librte_mbuf.a
[320/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[321/2513] Generating rte_fib_def with a custom command
[322/2513] Compiling C object lib/librte_acl/libavx2_tmp.a.p/acl_run_avx2.c.o
[323/2513] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[324/2513] Linking static target lib/librte_acl/libavx2_tmp.a
[325/2513] Linking static target lib/librte_reorder.a
[326/2513] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[327/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[328/2513] Linking static target lib/librte_security.a
[329/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[330/2513] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[331/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[332/2513] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[333/2513] Linking static target lib/librte_power.a
[334/2513] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[335/2513] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[336/2513] Linking static target lib/librte_pdump.a
[337/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[338/2513] Compiling C object lib/librte_fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[339/2513] Linking static target lib/librte_fib/libdir24_8_avx512_tmp.a
[340/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[341/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[342/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[343/2513] Compiling C object lib/librte_fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[344/2513] Linking static target lib/librte_eventdev.a
[345/2513] Linking static target lib/librte_fib/libtrie_avx512_tmp.a
[346/2513] Linking static target lib/librte_member.a
[347/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[348/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[349/2513] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[350/2513] Linking static target lib/librte_hash.a
[351/2513] Generating rte_port_def with a custom command
[352/2513] Generating rte_port_mingw with a custom command
[353/2513] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[354/2513] Compiling C object lib/librte_acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[355/2513] Linking static target lib/librte_acl/libavx512_tmp.a
[356/2513] Linking static target lib/librte_acl.a
[357/2513] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[358/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[359/2513] Linking static target lib/librte_rib.a
[360/2513] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[361/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[362/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[363/2513] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[364/2513] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[365/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[366/2513] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[367/2513] Linking static target lib/librte_ethdev.a
[368/2513] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[369/2513] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[370/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[371/2513] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[372/2513] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[373/2513] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[374/2513] Generating rte_table_def with a custom command
[375/2513] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[376/2513] Generating rte_table_mingw with a custom command
[377/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[378/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[379/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[380/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[381/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[382/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[383/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[384/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[385/2513] Generating rte_pipeline_def with a custom command
[386/2513] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[387/2513] Generating rte_pipeline_mingw with a custom command
[388/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[389/2513] Generating rte_flow_classify_def with a custom command
[390/2513] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[391/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[392/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[393/2513] Generating rte_flow_classify_mingw with a custom command
[394/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[395/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[396/2513] Linking static target lib/librte_sched.a
[397/2513] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[398/2513] Generating rte_bpf_def with a custom command
[399/2513] Linking static target lib/librte_fib.a
[400/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[401/2513] Generating rte_bpf_mingw with a custom command
[402/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[403/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[404/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[405/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[406/2513] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[407/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[408/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[409/2513] Generating rte_graph_def with a custom command
[410/2513] Generating rte_graph_mingw with a custom command
[411/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[412/2513] Linking target lib/librte_eal.so.21.2
[413/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[414/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[415/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[416/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[417/2513] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[418/2513] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[419/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[420/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[421/2513] Generating rte_node_def with a custom command
[422/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[423/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[424/2513] Generating rte_node_mingw with a custom command
[425/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[426/2513] Generating rte_common_cpt_mingw with a custom command
[427/2513] Generating rte_common_cpt_def with a custom command
[428/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[429/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[430/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[431/2513] Generating rte_common_dpaax_mingw with a custom command
[432/2513] Generating rte_common_dpaax_def with a custom command
[433/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[434/2513] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[435/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[436/2513] Linking static target lib/librte_table.a
[437/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[438/2513] Generating rte_common_iavf_def with a custom command
[439/2513] Generating rte_common_iavf_mingw with a custom command
[440/2513] Generating symbol file lib/librte_eal.so.21.2.p/librte_eal.so.21.2.symbols
[441/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[442/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[443/2513] Generating rte_common_octeontx_def with a custom command
[444/2513] Generating rte_common_octeontx_mingw with a custom command
[445/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[446/2513] Linking target lib/librte_ring.so.21.2
[447/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[448/2513] Linking target lib/librte_cfgfile.so.21.2
[449/2513] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[450/2513] Linking target lib/librte_meter.so.21.2
[451/2513] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[452/2513] Linking target lib/librte_acl.so.21.2
[453/2513] Linking target lib/librte_pci.so.21.2
[454/2513] Linking target lib/librte_jobstats.so.21.2
[455/2513] Linking target lib/librte_timer.so.21.2
[456/2513] Linking target lib/librte_stack.so.21.2
[457/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[458/2513] Linking target lib/librte_rawdev.so.21.2
[459/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[460/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[461/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[462/2513] Linking static target drivers/libtmp_rte_common_dpaax.a
[463/2513] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[464/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[465/2513] Linking static target drivers/libtmp_rte_common_octeontx.a
[466/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[467/2513] Generating rte_common_octeontx2_mingw with a custom command
[468/2513] Generating rte_common_octeontx2_def with a custom command
[469/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[470/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[471/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[472/2513] Generating rte_common_dpaax.pmd.c with a custom command
[473/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[474/2513] Compiling C object drivers/librte_common_dpaax.so.21.2.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[475/2513] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[476/2513] Generating rte_common_octeontx.pmd.c with a custom command
[477/2513] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[478/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[479/2513] Linking static target lib/librte_flow_classify.a
[480/2513] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[481/2513] Linking static target drivers/librte_common_dpaax.a
[482/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[483/2513] Linking static target drivers/librte_common_octeontx.a
[484/2513] Generating symbol file lib/librte_meter.so.21.2.p/librte_meter.so.21.2.symbols
[485/2513] Linking static target drivers/libtmp_rte_common_cpt.a
[486/2513] Generating symbol file lib/librte_timer.so.21.2.p/librte_timer.so.21.2.symbols
[487/2513] Generating symbol file lib/librte_ring.so.21.2.p/librte_ring.so.21.2.symbols
[488/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[489/2513] Generating symbol file lib/librte_pci.so.21.2.p/librte_pci.so.21.2.symbols
[490/2513] Compiling C object drivers/librte_common_octeontx.so.21.2.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[491/2513] Linking static target lib/librte_port.a
[492/2513] Linking target lib/librte_rcu.so.21.2
[493/2513] Generating symbol file lib/librte_stack.so.21.2.p/librte_stack.so.21.2.symbols
[494/2513] Linking target lib/librte_mempool.so.21.2
[495/2513] Generating symbol file lib/librte_rawdev.so.21.2.p/librte_rawdev.so.21.2.symbols
[496/2513] Generating symbol file lib/librte_acl.so.21.2.p/librte_acl.so.21.2.symbols
[497/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[498/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[499/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[500/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[501/2513] Linking static target lib/librte_graph.a
[502/2513] Generating rte_common_cpt.pmd.c with a custom command
[503/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[504/2513] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[505/2513] Compiling C object drivers/librte_common_cpt.so.21.2.p/meson-generated_.._rte_common_cpt.pmd.c.o
[506/2513] Linking static target drivers/librte_common_cpt.a
[507/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[508/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[509/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[510/2513] Linking static target lib/librte_bpf.a
[511/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[512/2513] Generating symbol file lib/librte_rcu.so.21.2.p/librte_rcu.so.21.2.symbols
[513/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[514/2513] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[515/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[516/2513] Linking target lib/librte_hash.so.21.2
[517/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[518/2513] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[519/2513] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[520/2513] Generating symbol file lib/librte_mempool.so.21.2.p/librte_mempool.so.21.2.symbols
[521/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[522/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[523/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[524/2513] Linking target drivers/librte_common_octeontx.so.21.2
[525/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[526/2513] Linking target lib/librte_rib.so.21.2
[527/2513] Linking target lib/librte_mbuf.so.21.2
[528/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[529/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[530/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[531/2513] Linking static target lib/librte_ipsec.a
[532/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[533/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[534/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[535/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[536/2513] Linking static target drivers/libtmp_rte_common_octeontx2.a
[537/2513] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[538/2513] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[539/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[540/2513] Linking target drivers/librte_common_dpaax.so.21.2
[541/2513] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[542/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[543/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[544/2513] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[545/2513] Generating symbol file lib/librte_hash.so.21.2.p/librte_hash.so.21.2.symbols
[546/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[547/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[548/2513] Generating symbol file lib/librte_rib.so.21.2.p/librte_rib.so.21.2.symbols
[549/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[550/2513] Generating rte_common_octeontx2.pmd.c with a custom command
[551/2513] Generating symbol file drivers/librte_common_octeontx.so.21.2.p/librte_common_octeontx.so.21.2.symbols
[552/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[553/2513] Linking target lib/librte_efd.so.21.2
[554/2513] Compiling C object drivers/librte_common_octeontx2.so.21.2.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[555/2513] Generating symbol file lib/librte_mbuf.so.21.2.p/librte_mbuf.so.21.2.symbols
[556/2513] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[557/2513] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[558/2513] Linking target lib/librte_lpm.so.21.2
[559/2513] Linking target lib/librte_member.so.21.2
[560/2513] Linking target lib/librte_fib.so.21.2
[561/2513] Linking target lib/librte_cryptodev.so.21.2
[562/2513] Linking target lib/librte_bbdev.so.21.2
[563/2513] Linking target lib/librte_net.so.21.2
[564/2513] Linking target lib/librte_distributor.so.21.2
[565/2513] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[566/2513] Linking target lib/librte_compressdev.so.21.2
[567/2513] Linking target lib/librte_regexdev.so.21.2
[568/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[569/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[570/2513] Linking target lib/librte_reorder.so.21.2
[571/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[572/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[573/2513] Linking static target drivers/librte_common_octeontx2.a
[574/2513] Linking target lib/librte_sched.so.21.2
[575/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[576/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[577/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[578/2513] Generating symbol file drivers/librte_common_dpaax.so.21.2.p/librte_common_dpaax.so.21.2.symbols
[579/2513] Linking target lib/librte_graph.so.21.2
[580/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[581/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[582/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[583/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[584/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[585/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[586/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[587/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[588/2513] Generating symbol file lib/librte_cryptodev.so.21.2.p/librte_cryptodev.so.21.2.symbols
[589/2513] Generating symbol file lib/librte_lpm.so.21.2.p/librte_lpm.so.21.2.symbols
[590/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[591/2513] Generating symbol file lib/librte_net.so.21.2.p/librte_net.so.21.2.symbols
[592/2513] Generating symbol file lib/librte_bbdev.so.21.2.p/librte_bbdev.so.21.2.symbols
[593/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[594/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[595/2513] Generating symbol file lib/librte_regexdev.so.21.2.p/librte_regexdev.so.21.2.symbols
[596/2513] Linking target drivers/librte_common_cpt.so.21.2
[597/2513] Linking target lib/librte_security.so.21.2
[598/2513] Generating symbol file lib/librte_compressdev.so.21.2.p/librte_compressdev.so.21.2.symbols
[599/2513] Generating rte_common_sfc_efx_mingw with a custom command
[600/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[601/2513] Linking target lib/librte_cmdline.so.21.2
[602/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[603/2513] Generating rte_common_sfc_efx_def with a custom command
[604/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[605/2513] Linking target lib/librte_ethdev.so.21.2
[606/2513] Generating symbol file lib/librte_reorder.so.21.2.p/librte_reorder.so.21.2.symbols
[607/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[608/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[609/2513] Generating symbol file lib/librte_sched.so.21.2.p/librte_sched.so.21.2.symbols
[610/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[611/2513] Generating symbol file lib/librte_graph.so.21.2.p/librte_graph.so.21.2.symbols
[612/2513] Generating rte_bus_dpaa_mingw with a custom command
[613/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[614/2513] Linking static target drivers/libtmp_rte_common_iavf.a
[615/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[616/2513] Generating rte_bus_dpaa_def with a custom command
[617/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[618/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[619/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[620/2513] Generating symbol file drivers/librte_common_cpt.so.21.2.p/librte_common_cpt.so.21.2.symbols
[621/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[622/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[623/2513] Generating symbol file lib/librte_security.so.21.2.p/librte_security.so.21.2.symbols
[624/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[625/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[626/2513] Generating symbol file lib/librte_ethdev.so.21.2.p/librte_ethdev.so.21.2.symbols
[627/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[628/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[629/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[630/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[631/2513] Linking target lib/librte_ipsec.so.21.2
[632/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[633/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[634/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[635/2513] Generating rte_common_iavf.pmd.c with a custom command
[636/2513] Linking target lib/librte_gso.so.21.2
[637/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[638/2513] Linking target lib/librte_gro.so.21.2
[639/2513] Linking target lib/librte_eventdev.so.21.2
[640/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[641/2513] Linking target lib/librte_metrics.so.21.2
[642/2513] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[643/2513] Linking target lib/librte_kni.so.21.2
[644/2513] Linking target lib/librte_ip_frag.so.21.2
[645/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[646/2513] Linking target lib/librte_power.so.21.2
[647/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[648/2513] Linking static target drivers/librte_common_iavf.a
[649/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[650/2513] Linking target lib/librte_pdump.so.21.2
[651/2513] Compiling C object drivers/librte_common_iavf.so.21.2.p/meson-generated_.._rte_common_iavf.pmd.c.o
[652/2513] Linking target lib/librte_bpf.so.21.2
[653/2513] Generating rte_bus_fslmc_mingw with a custom command
[654/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[655/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[656/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[657/2513] Generating rte_bus_fslmc_def with a custom command
[658/2513] Generating rte_bus_ifpga_def with a custom command
[659/2513] Generating rte_bus_ifpga_mingw with a custom command
[660/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[661/2513] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[662/2513] Generating rte_bus_pci_def with a custom command
[663/2513] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[664/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[665/2513] Generating rte_bus_pci_mingw with a custom command
[666/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[667/2513] Linking target drivers/librte_common_octeontx2.so.21.2
[668/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[669/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[670/2513] Generating rte_bus_vdev_def with a custom command
[671/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[672/2513] Generating rte_bus_vdev_mingw with a custom command
[673/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[674/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[675/2513] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[676/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[677/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[678/2513] Generating rte_bus_vmbus_def with a custom command
[679/2513] Generating rte_bus_vmbus_mingw with a custom command
[680/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[681/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[682/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[683/2513] Generating symbol file lib/librte_eventdev.so.21.2.p/librte_eventdev.so.21.2.symbols
[684/2513] Generating symbol file lib/librte_metrics.so.21.2.p/librte_metrics.so.21.2.symbols
[685/2513] Linking static target drivers/libtmp_rte_bus_ifpga.a
[686/2513] Generating symbol file lib/librte_ip_frag.so.21.2.p/librte_ip_frag.so.21.2.symbols
[687/2513] Generating symbol file lib/librte_gso.so.21.2.p/librte_gso.so.21.2.symbols
[688/2513] Linking target lib/librte_bitratestats.so.21.2
[689/2513] Generating rte_common_sfc_efx.pmd.c with a custom command
[690/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[691/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[692/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[693/2513] Linking target lib/librte_latencystats.so.21.2
[694/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[695/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[696/2513] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[697/2513] Compiling C object drivers/librte_common_sfc_efx.so.21.2.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[698/2513] Generating symbol file lib/librte_kni.so.21.2.p/librte_kni.so.21.2.symbols
[699/2513] Linking static target drivers/librte_common_sfc_efx.a
[700/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[701/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[702/2513] Generating rte_common_qat_mingw with a custom command
[703/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[704/2513] Generating rte_common_qat_def with a custom command
[705/2513] Generating rte_mempool_bucket_mingw with a custom command
[706/2513] Generating rte_mempool_dpaa_def with a custom command
[707/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[708/2513] Generating rte_mempool_bucket_def with a custom command
[709/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[710/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[711/2513] Generating rte_mempool_dpaa2_def with a custom command
[712/2513] Generating rte_mempool_dpaa2_mingw with a custom command
[713/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[714/2513] Generating rte_mempool_dpaa_mingw with a custom command
[715/2513] Generating rte_crypto_octeontx_mingw with a custom command
[716/2513] Linking static target drivers/libtmp_rte_bus_vdev.a
[717/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[718/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[719/2513] Generating rte_mempool_octeontx_def with a custom command
[720/2513] Linking target lib/librte_port.so.21.2
[721/2513] Generating rte_mempool_octeontx_mingw with a custom command
[722/2513] Generating rte_mempool_octeontx2_def with a custom command
[723/2513] Generating rte_mempool_octeontx2_mingw with a custom command
[724/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[725/2513] Generating symbol file drivers/librte_common_octeontx2.so.21.2.p/librte_common_octeontx2.so.21.2.symbols
[726/2513] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[727/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[728/2513] Generating rte_mempool_ring_def with a custom command
[729/2513] Linking static target drivers/libtmp_rte_bus_vmbus.a
[730/2513] Generating rte_mempool_stack_def with a custom command
[731/2513] Generating rte_mempool_stack_mingw with a custom command
[732/2513] Generating rte_net_af_packet_def with a custom command
[733/2513] Generating rte_bus_ifpga.pmd.c with a custom command
[734/2513] Generating rte_net_af_packet_mingw with a custom command
[735/2513] Linking target drivers/librte_common_iavf.so.21.2
[736/2513] Generating rte_mempool_ring_mingw with a custom command
[737/2513] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[738/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[739/2513] Compiling C object drivers/librte_bus_ifpga.so.21.2.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[740/2513] Linking static target drivers/librte_bus_ifpga.a
[741/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[742/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[743/2513] Generating rte_bus_vdev.pmd.c with a custom command
[744/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[745/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[746/2513] Compiling C object drivers/librte_bus_vdev.so.21.2.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[747/2513] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[748/2513] Linking static target drivers/librte_bus_vdev.a
[749/2513] Generating rte_bus_vmbus.pmd.c with a custom command
[750/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[751/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[752/2513] Compiling C object drivers/librte_bus_vmbus.so.21.2.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[753/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[754/2513] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[755/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[756/2513] Linking static target drivers/libtmp_rte_bus_pci.a
[757/2513] Generating rte_net_ark_def with a custom command
[758/2513] Linking static target drivers/librte_bus_vmbus.a
[759/2513] Generating rte_net_ark_mingw with a custom command
[760/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[761/2513] Generating symbol file lib/librte_port.so.21.2.p/librte_port.so.21.2.symbols
[762/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[763/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[764/2513] Generating symbol file drivers/librte_common_iavf.so.21.2.p/librte_common_iavf.so.21.2.symbols
[765/2513] Generating rte_net_atlantic_mingw with a custom command
[766/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[767/2513] Linking target lib/librte_table.so.21.2
[768/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[769/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[770/2513] Generating rte_bus_pci.pmd.c with a custom command
[771/2513] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[772/2513] Linking static target drivers/librte_bus_pci.a
[773/2513] Generating rte_net_atlantic_def with a custom command
[774/2513] Compiling C object drivers/librte_bus_pci.so.21.2.p/meson-generated_.._rte_bus_pci.pmd.c.o
[775/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[776/2513] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[777/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[778/2513] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[779/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[780/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[781/2513] Generating rte_net_avp_def with a custom command
[782/2513] Linking static target drivers/libtmp_rte_bus_fslmc.a
[783/2513] Generating rte_net_avp_mingw with a custom command
[784/2513] Linking target drivers/librte_bus_ifpga.so.21.2
[785/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[786/2513] Linking target drivers/librte_bus_vdev.so.21.2
[787/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[788/2513] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[789/2513] Linking static target drivers/libtmp_rte_mempool_stack.a
[790/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[791/2513] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[792/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[793/2513] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[794/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[795/2513] Generating rte_net_axgbe_def with a custom command
[796/2513] Generating rte_net_axgbe_mingw with a custom command
[797/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[798/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[799/2513] Generating symbol file lib/librte_table.so.21.2.p/librte_table.so.21.2.symbols
[800/2513] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[801/2513] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[802/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[803/2513] Generating rte_mempool_stack.pmd.c with a custom command
[804/2513] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[805/2513] Linking target drivers/librte_bus_vmbus.so.21.2
[806/2513] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[807/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[808/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[809/2513] Linking static target drivers/librte_mempool_stack.a
[810/2513] Linking target lib/librte_flow_classify.so.21.2
[811/2513] Generating rte_bus_fslmc.pmd.c with a custom command
[812/2513] Compiling C object drivers/librte_mempool_stack.so.21.2.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[813/2513] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[814/2513] Compiling C object drivers/librte_bus_fslmc.so.21.2.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[815/2513] Generating rte_mempool_octeontx.pmd.c with a custom command
[816/2513] Linking static target drivers/librte_bus_fslmc.a
[817/2513] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[818/2513] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[819/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[820/2513] Linking static target drivers/librte_mempool_octeontx.a
[821/2513] Generating rte_mempool_dpaa2.pmd.c with a custom command
[822/2513] Generating rte_mempool_dpaa.pmd.c with a custom command
[823/2513] Compiling C object drivers/librte_mempool_octeontx.so.21.2.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[824/2513] Generating symbol file drivers/librte_bus_vdev.so.21.2.p/librte_bus_vdev.so.21.2.symbols
[825/2513] Compiling C object drivers/librte_mempool_dpaa.so.21.2.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[826/2513] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[827/2513] Linking static target drivers/librte_mempool_dpaa2.a
[828/2513] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[829/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[830/2513] Generating rte_mempool_octeontx2.pmd.c with a custom command
[831/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[832/2513] Compiling C object drivers/librte_mempool_dpaa2.so.21.2.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[833/2513] Linking static target drivers/librte_mempool_dpaa.a
[834/2513] Linking target drivers/librte_bus_pci.so.21.2
[835/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[836/2513] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[837/2513] Linking static target drivers/librte_mempool_octeontx2.a
[838/2513] Generating rte_net_bond_mingw with a custom command
[839/2513] Compiling C object drivers/librte_mempool_octeontx2.so.21.2.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[840/2513] Generating rte_net_bond_def with a custom command
[841/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[842/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[843/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[844/2513] Linking static target drivers/libtmp_rte_net_ark.a
[845/2513] Generating symbol file drivers/librte_bus_vmbus.so.21.2.p/librte_bus_vmbus.so.21.2.symbols
[846/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[847/2513] Linking static target drivers/libtmp_rte_bus_dpaa.a
[848/2513] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[849/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[850/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[851/2513] Generating rte_net_bnx2x_def with a custom command
[852/2513] Linking target drivers/librte_mempool_stack.so.21.2
[853/2513] Generating rte_net_bnx2x_mingw with a custom command
[854/2513] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[855/2513] Linking static target drivers/libtmp_rte_mempool_ring.a
[856/2513] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[857/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[858/2513] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[859/2513] Generating symbol file drivers/librte_bus_pci.so.21.2.p/librte_bus_pci.so.21.2.symbols
[860/2513] Linking static target drivers/libtmp_rte_net_af_packet.a
[861/2513] Generating rte_net_ark.pmd.c with a custom command
[862/2513] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[863/2513] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[864/2513] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[865/2513] Linking static target drivers/librte_net_ark.a
[866/2513] Compiling C object drivers/librte_net_ark.so.21.2.p/meson-generated_.._rte_net_ark.pmd.c.o
[867/2513] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[868/2513] Linking target drivers/librte_mempool_octeontx.so.21.2
[869/2513] Linking target drivers/librte_mempool_octeontx2.so.21.2
[870/2513] Generating rte_bus_dpaa.pmd.c with a custom command
[871/2513] Generating rte_mempool_ring.pmd.c with a custom command
[872/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[873/2513] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[874/2513] Compiling C object drivers/librte_bus_dpaa.so.21.2.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[875/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[876/2513] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[877/2513] Generating rte_net_af_packet.pmd.c with a custom command
[878/2513] Linking static target drivers/librte_bus_dpaa.a
[879/2513] Linking static target drivers/librte_mempool_ring.a
[880/2513] Compiling C object drivers/librte_mempool_ring.so.21.2.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[881/2513] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[882/2513] Compiling C object drivers/librte_net_af_packet.so.21.2.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[883/2513] Linking static target drivers/librte_net_af_packet.a
[884/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[885/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[886/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[887/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[888/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[889/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[890/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[891/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[892/2513] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[893/2513] Generating symbol file drivers/librte_mempool_octeontx.so.21.2.p/librte_mempool_octeontx.so.21.2.symbols
[894/2513] Generating symbol file drivers/librte_mempool_octeontx2.so.21.2.p/librte_mempool_octeontx2.so.21.2.symbols
[895/2513] Linking target drivers/librte_net_ark.so.21.2
[896/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[897/2513] Linking static target drivers/libtmp_rte_net_atlantic.a
[898/2513] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[899/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[900/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[901/2513] Linking target drivers/librte_mempool_ring.so.21.2
[902/2513] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[903/2513] Linking target drivers/librte_net_af_packet.so.21.2
[904/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[905/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[906/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[907/2513] Linking static target drivers/libtmp_rte_net_axgbe.a
[908/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[909/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[910/2513] Generating rte_net_atlantic.pmd.c with a custom command
[911/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[912/2513] Compiling C object drivers/librte_net_atlantic.so.21.2.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[913/2513] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[914/2513] Linking static target drivers/librte_net_atlantic.a
[915/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[916/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[917/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[918/2513] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[919/2513] Linking static target drivers/libtmp_rte_mempool_bucket.a
[920/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[921/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[922/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[923/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[924/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[925/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[926/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[927/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[928/2513] Generating rte_net_axgbe.pmd.c with a custom command
[929/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[930/2513] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[931/2513] Linking static target drivers/librte_net_axgbe.a
[932/2513] Compiling C object drivers/librte_net_axgbe.so.21.2.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[933/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[934/2513] Generating rte_mempool_bucket.pmd.c with a custom command
[935/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[936/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[937/2513] Compiling C object drivers/librte_mempool_bucket.so.21.2.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[938/2513] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[939/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[940/2513] Linking static target drivers/librte_mempool_bucket.a
[941/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[942/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[943/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[944/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[945/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[946/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[947/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[948/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[949/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[950/2513] Linking static target drivers/libtmp_rte_common_qat.a
[951/2513] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[952/2513] Linking target drivers/librte_bus_fslmc.so.21.2
[953/2513] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[954/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[955/2513] Generating rte_common_qat.pmd.c with a custom command
[956/2513] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[957/2513] Linking target drivers/librte_net_atlantic.so.21.2
[958/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[959/2513] Linking static target drivers/librte_common_qat.a
[960/2513] Compiling C object drivers/librte_common_qat.so.21.2.p/meson-generated_.._rte_common_qat.pmd.c.o
[961/2513] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[962/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[963/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[964/2513] Linking target drivers/librte_net_axgbe.so.21.2
[965/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[966/2513] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[967/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[968/2513] Linking target drivers/librte_mempool_bucket.so.21.2
[969/2513] Generating rte_net_bnxt_mingw with a custom command
[970/2513] Generating rte_net_bnxt_def with a custom command
[971/2513] Generating symbol file drivers/librte_bus_fslmc.so.21.2.p/librte_bus_fslmc.so.21.2.symbols
[972/2513] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[973/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[974/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[975/2513] Linking target drivers/librte_bus_dpaa.so.21.2
[976/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[977/2513] Linking target drivers/librte_mempool_dpaa2.so.21.2
[978/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[979/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[980/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[981/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[982/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[983/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[984/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[985/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[986/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[987/2513] Generating rte_net_cxgbe_def with a custom command
[988/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[989/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[990/2513] Generating rte_net_cxgbe_mingw with a custom command
[991/2513] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[992/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[993/2513] Generating symbol file drivers/librte_bus_dpaa.so.21.2.p/librte_bus_dpaa.so.21.2.symbols
[994/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[995/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[996/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[997/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[998/2513] Generating symbol file drivers/librte_mempool_dpaa2.so.21.2.p/librte_mempool_dpaa2.so.21.2.symbols
[999/2513] Linking target drivers/librte_common_qat.so.21.2
[1000/2513] Generating rte_net_dpaa_mingw with a custom command
[1001/2513] Generating rte_net_dpaa_def with a custom command
[1002/2513] Linking target drivers/librte_mempool_dpaa.so.21.2
[1003/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1004/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[1005/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[1006/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1007/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[1008/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1009/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1010/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1011/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1012/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[1013/2513] Generating symbol file drivers/librte_mempool_dpaa.so.21.2.p/librte_mempool_dpaa.so.21.2.symbols
[1014/2513] Generating rte_net_dpaa2_def with a custom command
[1015/2513] Generating rte_net_dpaa2_mingw with a custom command
[1016/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1017/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1018/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1019/2513] Linking static target drivers/libtmp_rte_net_bond.a
[1020/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1021/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1022/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1023/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1024/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1025/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1026/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1027/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1028/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1029/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[1030/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1031/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1032/2513] Linking static target lib/librte_node.a
[1033/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1034/2513] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[1035/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1036/2513] Generating rte_net_bond.pmd.c with a custom command
[1037/2513] Linking static target drivers/libtmp_rte_net_avp.a
[1038/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1039/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1040/2513] Compiling C object drivers/librte_net_bond.so.21.2.p/meson-generated_.._rte_net_bond.pmd.c.o
[1041/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1042/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1043/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1044/2513] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1045/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1046/2513] Linking static target drivers/librte_net_bond.a
[1047/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1048/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1049/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1050/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1051/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1052/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1053/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1054/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1055/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1056/2513] Generating rte_net_e1000_def with a custom command
[1057/2513] Generating rte_net_avp.pmd.c with a custom command
[1058/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1059/2513] Generating rte_net_e1000_mingw with a custom command
[1060/2513] Generating rte_net_ena_def with a custom command
[1061/2513] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1062/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1063/2513] Generating rte_net_ena_mingw with a custom command
[1064/2513] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[1065/2513] Compiling C object drivers/librte_net_avp.so.21.2.p/meson-generated_.._rte_net_avp.pmd.c.o
[1066/2513] Linking static target drivers/librte_net_avp.a
[1067/2513] Generating rte_net_enetc_def with a custom command
[1068/2513] Generating rte_net_enetc_mingw with a custom command
[1069/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1070/2513] Linking target drivers/librte_common_sfc_efx.so.21.2
[1071/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1072/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1073/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1074/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1075/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1076/2513] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1077/2513] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[1078/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1079/2513] Linking target drivers/librte_net_bond.so.21.2
[1080/2513] Generating rte_net_enic_def with a custom command
[1081/2513] Linking target lib/librte_node.so.21.2
[1082/2513] Generating rte_net_enic_mingw with a custom command
[1083/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1084/2513] Generating symbol file drivers/librte_common_sfc_efx.so.21.2.p/librte_common_sfc_efx.so.21.2.symbols
[1085/2513] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1086/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1087/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1088/2513] Linking target drivers/librte_net_avp.so.21.2
[1089/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1090/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1091/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1092/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1093/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1094/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1095/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1096/2513] Generating rte_net_failsafe_def with a custom command
[1097/2513] Generating rte_net_failsafe_mingw with a custom command
[1098/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1099/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1100/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1101/2513] Compiling C object drivers/net/enic/libenic_avx2_lib.a.p/enic_rxtx_vec_avx2.c.o
[1102/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1103/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1104/2513] Linking static target drivers/net/enic/libenic_avx2_lib.a
[1105/2513] Linking static target drivers/libtmp_rte_net_bnxt.a
[1106/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1107/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1108/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1109/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1110/2513] Generating rte_net_fm10k_def with a custom command
[1111/2513] Generating rte_net_fm10k_mingw with a custom command
[1112/2513] Linking static target drivers/net/e1000/base/libe1000_base.a
[1113/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1114/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1115/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1116/2513] Linking static target drivers/libtmp_rte_net_enetc.a
[1117/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1118/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1119/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1120/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1121/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1122/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1123/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1124/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1125/2513] Generating rte_net_enetc.pmd.c with a custom command
[1126/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1127/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1128/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1129/2513] Compiling C object drivers/librte_net_enetc.so.21.2.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1130/2513] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1131/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1132/2513] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1133/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1134/2513] Linking static target drivers/librte_net_enetc.a
[1135/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1136/2513] Generating rte_net_i40e_mingw with a custom command
[1137/2513] Generating rte_net_i40e_def with a custom command
[1138/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1139/2513] Generating rte_net_bnxt.pmd.c with a custom command
[1140/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1141/2513] Compiling C object drivers/librte_net_bnxt.so.21.2.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1142/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1143/2513] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1144/2513] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1145/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1146/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1147/2513] Linking static target drivers/librte_net_bnxt.a
[1148/2513] Linking target drivers/librte_net_enetc.so.21.2
[1149/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1150/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1151/2513] Linking static target drivers/libtmp_rte_net_dpaa.a
[1152/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1153/2513] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1154/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1155/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1156/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1157/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1158/2513] Linking static target drivers/libtmp_rte_net_e1000.a
[1159/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1160/2513] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1161/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1162/2513] Generating rte_net_dpaa.pmd.c with a custom command
[1163/2513] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1164/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1165/2513] Linking static target drivers/librte_net_dpaa.a
[1166/2513] Generating rte_net_cxgbe.pmd.c with a custom command
[1167/2513] Compiling C object drivers/librte_net_dpaa.so.21.2.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1168/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1169/2513] Compiling C object drivers/librte_net_cxgbe.so.21.2.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1170/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1171/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1172/2513] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1173/2513] Linking static target drivers/libtmp_rte_net_enic.a
[1174/2513] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1175/2513] Linking static target drivers/librte_net_cxgbe.a
[1176/2513] Generating rte_net_e1000.pmd.c with a custom command
[1177/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1178/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1179/2513] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1180/2513] Compiling C object drivers/librte_net_e1000.so.21.2.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1181/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1182/2513] Linking target drivers/librte_net_bnxt.so.21.2
[1183/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1184/2513] Generating rte_net_hinic_def with a custom command
[1185/2513] Linking static target drivers/librte_net_e1000.a
[1186/2513] Generating rte_net_hinic_mingw with a custom command
[1187/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1188/2513] Linking static target drivers/libtmp_rte_net_ena.a
[1189/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1190/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1191/2513] Generating rte_net_bnx2x.pmd.c with a custom command
[1192/2513] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1193/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1194/2513] Linking static target drivers/librte_net_bnx2x.a
[1195/2513] Compiling C object drivers/librte_net_bnx2x.so.21.2.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1196/2513] Generating rte_net_enic.pmd.c with a custom command
[1197/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1198/2513] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1199/2513] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1200/2513] Compiling C object drivers/librte_net_enic.so.21.2.p/meson-generated_.._rte_net_enic.pmd.c.o
[1201/2513] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1202/2513] Linking static target drivers/librte_net_enic.a
[1203/2513] Generating rte_net_ena.pmd.c with a custom command
[1204/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1205/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1206/2513] Compiling C object drivers/librte_net_ena.so.21.2.p/meson-generated_.._rte_net_ena.pmd.c.o
[1207/2513] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1208/2513] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1209/2513] Linking static target drivers/librte_net_ena.a
[1210/2513] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1211/2513] Linking target drivers/librte_net_dpaa.so.21.2
[1212/2513] Linking target drivers/librte_net_cxgbe.so.21.2
[1213/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1214/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1215/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1216/2513] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1217/2513] Generating rte_net_hns3_def with a custom command
[1218/2513] Compiling C object drivers/net/i40e/libi40e_avx2_lib.a.p/i40e_rxtx_vec_avx2.c.o
[1219/2513] Generating rte_net_hns3_mingw with a custom command
[1220/2513] Linking static target drivers/net/i40e/libi40e_avx2_lib.a
[1221/2513] Linking target drivers/librte_net_e1000.so.21.2
[1222/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1223/2513] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1224/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1225/2513] Linking static target drivers/net/hinic/base/libhinic_base.a
[1226/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1227/2513] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1228/2513] Linking static target drivers/libtmp_rte_net_fm10k.a
[1229/2513] Linking target drivers/librte_net_bnx2x.so.21.2
[1230/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1231/2513] Generating symbol file drivers/librte_net_dpaa.so.21.2.p/librte_net_dpaa.so.21.2.symbols
[1232/2513] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1233/2513] Linking target drivers/librte_net_enic.so.21.2
[1234/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1235/2513] Linking target drivers/librte_net_ena.so.21.2
[1236/2513] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1237/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1238/2513] Generating rte_net_iavf_def with a custom command
[1239/2513] Generating rte_net_iavf_mingw with a custom command
[1240/2513] Generating rte_net_fm10k.pmd.c with a custom command
[1241/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1242/2513] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1243/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1244/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1245/2513] Linking static target drivers/librte_net_fm10k.a
[1246/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1247/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1248/2513] Compiling C object drivers/librte_net_fm10k.so.21.2.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1249/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1250/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1251/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1252/2513] Linking static target drivers/net/i40e/base/libi40e_base.a
[1253/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1254/2513] Generating rte_net_dpaa2.pmd.c with a custom command
[1255/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1256/2513] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1257/2513] Linking static target drivers/librte_net_dpaa2.a
[1258/2513] Compiling C object drivers/librte_net_dpaa2.so.21.2.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1259/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1260/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1261/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1262/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1263/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1264/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1265/2513] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1266/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1267/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1268/2513] Linking target drivers/librte_net_fm10k.so.21.2
[1269/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1270/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1271/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1272/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1273/2513] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1274/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1275/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1276/2513] Generating rte_net_ice_def with a custom command
[1277/2513] Linking target drivers/librte_net_dpaa2.so.21.2
[1278/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1279/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1280/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1281/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1282/2513] Generating rte_net_ice_mingw with a custom command
[1283/2513] Compiling C object drivers/net/iavf/libiavf_avx2_lib.a.p/iavf_rxtx_vec_avx2.c.o
[1284/2513] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1285/2513] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1286/2513] Linking static target drivers/net/iavf/libiavf_avx2_lib.a
[1287/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1288/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1289/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1290/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1291/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1292/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1293/2513] Generating symbol file drivers/librte_net_dpaa2.so.21.2.p/librte_net_dpaa2.so.21.2.symbols
[1294/2513] Generating rte_net_igc_def with a custom command
[1295/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1296/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1297/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1298/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1299/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1300/2513] Generating rte_net_igc_mingw with a custom command
[1301/2513] Linking static target drivers/libtmp_rte_net_hinic.a
[1302/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1303/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1304/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1305/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1306/2513] Generating rte_net_ionic_def with a custom command
[1307/2513] Generating rte_net_ionic_mingw with a custom command
[1308/2513] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1309/2513] Linking static target drivers/net/ice/libice_avx512_lib.a
[1310/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1311/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1312/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1313/2513] Generating rte_net_hinic.pmd.c with a custom command
[1314/2513] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1315/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1316/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1317/2513] Linking static target drivers/librte_net_hinic.a
[1318/2513] Compiling C object drivers/librte_net_hinic.so.21.2.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1319/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1320/2513] Compiling C object drivers/net/ice/libice_avx2_lib.a.p/ice_rxtx_vec_avx2.c.o
[1321/2513] Linking static target drivers/net/ice/libice_avx2_lib.a
[1322/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1323/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1324/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1325/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1326/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1327/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1328/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1329/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1330/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1331/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1332/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1333/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1334/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1335/2513] Linking static target drivers/net/igc/base/libigc_base.a
[1336/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1337/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1338/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1339/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1340/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1341/2513] Generating rte_net_ixgbe_mingw with a custom command
[1342/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1343/2513] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1344/2513] Generating rte_net_ixgbe_def with a custom command
[1345/2513] Linking static target drivers/libtmp_rte_net_hns3.a
[1346/2513] Generating rte_net_kni_mingw with a custom command
[1347/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1348/2513] Generating rte_net_kni_def with a custom command
[1349/2513] Linking target drivers/librte_net_hinic.so.21.2
[1350/2513] Generating rte_net_liquidio_mingw with a custom command
[1351/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1352/2513] Generating rte_net_liquidio_def with a custom command
[1353/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1354/2513] Generating rte_net_memif_def with a custom command
[1355/2513] Generating rte_net_memif_mingw with a custom command
[1356/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1357/2513] Linking static target drivers/libtmp_rte_net_i40e.a
[1358/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1359/2513] Generating rte_net_hns3.pmd.c with a custom command
[1360/2513] Linking static target drivers/libtmp_rte_net_iavf.a
[1361/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1362/2513] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1363/2513] Compiling C object drivers/librte_net_hns3.so.21.2.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1364/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1365/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1366/2513] Linking static target drivers/librte_net_hns3.a
[1367/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1368/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1369/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1370/2513] Generating rte_net_netvsc_def with a custom command
[1371/2513] Generating rte_net_netvsc_mingw with a custom command
[1372/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1373/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1374/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1375/2513] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1376/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1377/2513] Linking static target drivers/libtmp_rte_net_kni.a
[1378/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1379/2513] Generating rte_net_iavf.pmd.c with a custom command
[1380/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1381/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1382/2513] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1383/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1384/2513] Linking static target drivers/librte_net_iavf.a
[1385/2513] Compiling C object drivers/librte_net_iavf.so.21.2.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1386/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1387/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1388/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1389/2513] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1390/2513] Generating rte_net_i40e.pmd.c with a custom command
[1391/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1392/2513] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1393/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1394/2513] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1395/2513] Compiling C object drivers/librte_net_i40e.so.21.2.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1396/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1397/2513] Linking static target drivers/libtmp_rte_net_ionic.a
[1398/2513] Generating rte_net_kni.pmd.c with a custom command
[1399/2513] Linking static target drivers/librte_net_i40e.a
[1400/2513] Generating rte_net_nfp_def with a custom command
[1401/2513] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1402/2513] Generating rte_net_nfp_mingw with a custom command
[1403/2513] Linking static target drivers/librte_net_kni.a
[1404/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1405/2513] Compiling C object drivers/librte_net_kni.so.21.2.p/meson-generated_.._rte_net_kni.pmd.c.o
[1406/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1407/2513] Linking target drivers/librte_net_hns3.so.21.2
[1408/2513] Linking static target drivers/libtmp_rte_net_igc.a
[1409/2513] Generating rte_net_null_def with a custom command
[1410/2513] Generating rte_net_null_mingw with a custom command
[1411/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1412/2513] Generating rte_net_ionic.pmd.c with a custom command
[1413/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1414/2513] Generating rte_net_igc.pmd.c with a custom command
[1415/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1416/2513] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1417/2513] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1418/2513] Compiling C object drivers/librte_net_ionic.so.21.2.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1419/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1420/2513] Linking static target drivers/librte_net_ionic.a
[1421/2513] Compiling C object drivers/librte_net_igc.so.21.2.p/meson-generated_.._rte_net_igc.pmd.c.o
[1422/2513] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1423/2513] Linking static target drivers/librte_net_igc.a
[1424/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1425/2513] Generating rte_net_octeontx_def with a custom command
[1426/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1427/2513] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1428/2513] Linking target drivers/librte_net_iavf.so.21.2
[1429/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1430/2513] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1431/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1432/2513] Generating rte_net_octeontx_mingw with a custom command
[1433/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1434/2513] Linking static target drivers/libtmp_rte_net_failsafe.a
[1435/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1436/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1437/2513] Linking target drivers/librte_net_kni.so.21.2
[1438/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1439/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1440/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1441/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1442/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1443/2513] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1444/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1445/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1446/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1447/2513] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1448/2513] Linking target drivers/librte_net_i40e.so.21.2
[1449/2513] Generating rte_net_failsafe.pmd.c with a custom command
[1450/2513] Linking static target drivers/libtmp_rte_net_ice.a
[1451/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1452/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1453/2513] Compiling C object drivers/librte_net_failsafe.so.21.2.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1454/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1455/2513] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1456/2513] Linking static target drivers/libtmp_rte_net_liquidio.a
[1457/2513] Linking target drivers/librte_net_igc.so.21.2
[1458/2513] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1459/2513] Linking static target drivers/librte_net_failsafe.a
[1460/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1461/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1462/2513] Linking target drivers/librte_net_ionic.so.21.2
[1463/2513] Generating rte_net_octeontx2_def with a custom command
[1464/2513] Generating rte_net_liquidio.pmd.c with a custom command
[1465/2513] Generating rte_net_octeontx2_mingw with a custom command
[1466/2513] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1467/2513] Compiling C object drivers/librte_net_liquidio.so.21.2.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1468/2513] Linking static target drivers/librte_net_liquidio.a
[1469/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1470/2513] Generating rte_net_ice.pmd.c with a custom command
[1471/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1472/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1473/2513] Linking static target drivers/libtmp_rte_net_memif.a
[1474/2513] Compiling C object drivers/librte_net_ice.so.21.2.p/meson-generated_.._rte_net_ice.pmd.c.o
[1475/2513] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1476/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1477/2513] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1478/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1479/2513] Generating rte_net_octeontx_ep_def with a custom command
[1480/2513] Linking target drivers/librte_net_failsafe.so.21.2
[1481/2513] Generating rte_net_octeontx_ep_mingw with a custom command
[1482/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1483/2513] Generating rte_net_pcap_def with a custom command
[1484/2513] Generating rte_net_pcap_mingw with a custom command
[1485/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1486/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1487/2513] Generating rte_net_pfe_def with a custom command
[1488/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1489/2513] Generating rte_net_pfe_mingw with a custom command
[1490/2513] Generating rte_net_memif.pmd.c with a custom command
[1491/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1492/2513] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1493/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1494/2513] Linking static target drivers/librte_net_memif.a
[1495/2513] Compiling C object drivers/librte_net_memif.so.21.2.p/meson-generated_.._rte_net_memif.pmd.c.o
[1496/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1497/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1498/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1499/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1500/2513] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1501/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1502/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1503/2513] Linking target drivers/librte_net_liquidio.so.21.2
[1504/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1505/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1506/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1507/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1508/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1509/2513] Linking static target drivers/libtmp_rte_net_octeontx.a
[1510/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1511/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1512/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1513/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1514/2513] Linking static target drivers/net/ice/base/libice_base.a
[1515/2513] Linking static target drivers/librte_net_ice.a
[1516/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1517/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1518/2513] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1519/2513] Generating rte_net_octeontx.pmd.c with a custom command
[1520/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1521/2513] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1522/2513] Linking target drivers/librte_net_memif.so.21.2
[1523/2513] Linking static target drivers/librte_net_octeontx.a
[1524/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1525/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1526/2513] Compiling C object drivers/librte_net_octeontx.so.21.2.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1527/2513] Linking static target drivers/libtmp_rte_net_netvsc.a
[1528/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1529/2513] Generating rte_net_qede_mingw with a custom command
[1530/2513] Generating rte_net_qede_def with a custom command
[1531/2513] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1532/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1533/2513] Linking static target drivers/libtmp_rte_net_nfp.a
[1534/2513] Generating rte_net_ring_mingw with a custom command
[1535/2513] Linking static target drivers/libtmp_rte_net_null.a
[1536/2513] Generating rte_net_ring_def with a custom command
[1537/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1538/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1539/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1540/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1541/2513] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1542/2513] Generating rte_net_netvsc.pmd.c with a custom command
[1543/2513] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1544/2513] Generating rte_net_null.pmd.c with a custom command
[1545/2513] Linking static target drivers/librte_net_netvsc.a
[1546/2513] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1547/2513] Compiling C object drivers/librte_net_netvsc.so.21.2.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1548/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1549/2513] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1550/2513] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1551/2513] Compiling C object drivers/librte_net_null.so.21.2.p/meson-generated_.._rte_net_null.pmd.c.o
[1552/2513] Generating rte_net_nfp.pmd.c with a custom command
[1553/2513] Linking static target drivers/librte_net_null.a
[1554/2513] Linking target drivers/librte_net_ice.so.21.2
[1555/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1556/2513] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1557/2513] Compiling C object drivers/librte_net_nfp.so.21.2.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1558/2513] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1559/2513] Linking target drivers/librte_net_octeontx.so.21.2
[1560/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1561/2513] Linking static target drivers/librte_net_nfp.a
[1562/2513] Compiling C object drivers/librte_net_octeontx_ep.so.21.2.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1563/2513] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1564/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1565/2513] Linking static target drivers/librte_net_octeontx_ep.a
[1566/2513] Linking static target drivers/libtmp_rte_net_pfe.a
[1567/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1568/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1569/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1570/2513] Generating symbol file drivers/librte_net_octeontx.so.21.2.p/librte_net_octeontx.so.21.2.symbols
[1571/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1572/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1573/2513] Generating rte_net_pfe.pmd.c with a custom command
[1574/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1575/2513] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1576/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1577/2513] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1578/2513] Compiling C object drivers/librte_net_pfe.so.21.2.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1579/2513] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1580/2513] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1581/2513] Linking static target drivers/librte_net_pfe.a
[1582/2513] Linking target drivers/librte_net_netvsc.so.21.2
[1583/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1584/2513] Linking target drivers/librte_net_null.so.21.2
[1585/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1586/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1587/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1588/2513] Linking target drivers/librte_net_nfp.so.21.2
[1589/2513] Generating rte_net_sfc_mingw with a custom command
[1590/2513] Generating rte_net_sfc_def with a custom command
[1591/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1592/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1593/2513] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1594/2513] Linking target drivers/librte_net_octeontx_ep.so.21.2
[1595/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1596/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1597/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1598/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1599/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1600/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1601/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1602/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1603/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1604/2513] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1605/2513] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1606/2513] Linking static target drivers/libtmp_rte_net_ring.a
[1607/2513] Linking target drivers/librte_net_pfe.so.21.2
[1608/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1609/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1610/2513] Generating rte_net_softnic_mingw with a custom command
[1611/2513] Generating rte_net_softnic_def with a custom command
[1612/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1613/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1614/2513] Generating rte_net_ring.pmd.c with a custom command
[1615/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1616/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1617/2513] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1618/2513] Compiling C object drivers/librte_net_ring.so.21.2.p/meson-generated_.._rte_net_ring.pmd.c.o
[1619/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1620/2513] Linking static target drivers/librte_net_ring.a
[1621/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1622/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1623/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1624/2513] Generating rte_net_tap_mingw with a custom command
[1625/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1626/2513] Generating rte_net_tap_def with a custom command
[1627/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1628/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1629/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1630/2513] Generating rte_net_thunderx_def with a custom command
[1631/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1632/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1633/2513] Generating rte_net_thunderx_mingw with a custom command
[1634/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1635/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1636/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1637/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1638/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1639/2513] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1640/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1641/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1642/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1643/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1644/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1645/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1646/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1647/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1648/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1649/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1650/2513] Generating rte_net_txgbe_def with a custom command
[1651/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1652/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1653/2513] Generating rte_net_txgbe_mingw with a custom command
[1654/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[1655/2513] Generating rte_net_vdev_netvsc_def with a custom command
[1656/2513] Generating rte_net_vhost_def with a custom command
[1657/2513] Generating rte_net_vhost_mingw with a custom command
[1658/2513] Generating rte_net_vdev_netvsc_mingw with a custom command
[1659/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1660/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1661/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1662/2513] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1663/2513] Generating rte_net_ixgbe.pmd.c with a custom command
[1664/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1665/2513] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1666/2513] Linking target drivers/librte_net_ring.so.21.2
[1667/2513] Compiling C object drivers/librte_net_ixgbe.so.21.2.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1668/2513] Linking static target drivers/librte_net_ixgbe.a
[1669/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1670/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1671/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1672/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1673/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1674/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1675/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1676/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1677/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1678/2513] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1679/2513] Generating rte_net_virtio_mingw with a custom command
[1680/2513] Generating rte_net_virtio_def with a custom command
[1681/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1682/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1683/2513] Generating rte_net_vmxnet3_mingw with a custom command
[1684/2513] Generating rte_net_vmxnet3_def with a custom command
[1685/2513] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1686/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1687/2513] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1688/2513] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1689/2513] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1690/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1691/2513] Generating rte_raw_dpaa2_qdma_def with a custom command
[1692/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1693/2513] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1694/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1695/2513] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1696/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1697/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1698/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1699/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1700/2513] Generating rte_raw_ioat_def with a custom command
[1701/2513] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1702/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1703/2513] Generating rte_raw_ioat_mingw with a custom command
[1704/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1705/2513] Linking static target drivers/net/qede/base/libqede_base.a
[1706/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1707/2513] Generating rte_raw_ntb_def with a custom command
[1708/2513] Generating rte_raw_ntb_mingw with a custom command
[1709/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1710/2513] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1711/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1712/2513] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1713/2513] Linking target drivers/librte_net_ixgbe.so.21.2
[1714/2513] Linking static target drivers/libtmp_rte_net_qede.a
[1715/2513] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1716/2513] Compiling C object drivers/librte_net_vdev_netvsc.so.21.2.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1717/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1718/2513] Linking static target drivers/librte_net_vdev_netvsc.a
[1719/2513] Generating rte_raw_octeontx2_dma_def with a custom command
[1720/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1721/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1722/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1723/2513] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1724/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1725/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1726/2513] Generating rte_raw_octeontx2_ep_def with a custom command
[1727/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1728/2513] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1729/2513] Generating rte_raw_skeleton_mingw with a custom command
[1730/2513] Generating rte_raw_skeleton_def with a custom command
[1731/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.2.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1732/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1733/2513] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1734/2513] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1735/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1736/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1737/2513] Generating rte_net_qede.pmd.c with a custom command
[1738/2513] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1739/2513] Linking static target drivers/libtmp_rte_net_sfc.a
[1740/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1741/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1742/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[1743/2513] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1744/2513] Compiling C object drivers/librte_net_qede.so.21.2.p/meson-generated_.._rte_net_qede.pmd.c.o
[1745/2513] Linking static target drivers/librte_net_qede.a
[1746/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1747/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1748/2513] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1749/2513] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1750/2513] Linking static target drivers/libtmp_rte_net_pcap.a
[1751/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1752/2513] Linking static target drivers/libtmp_rte_net_vhost.a
[1753/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1754/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1755/2513] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1756/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1757/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1758/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1759/2513] Linking target drivers/librte_net_vdev_netvsc.so.21.2
[1760/2513] Generating rte_crypto_bcmfs_mingw with a custom command
[1761/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1762/2513] Generating rte_crypto_bcmfs_def with a custom command
[1763/2513] Linking static target drivers/libtmp_rte_net_softnic.a
[1764/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1765/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1766/2513] Generating rte_net_pcap.pmd.c with a custom command
[1767/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1768/2513] Generating rte_crypto_caam_jr_def with a custom command
[1769/2513] Generating rte_crypto_caam_jr_mingw with a custom command
[1770/2513] Compiling C object drivers/librte_net_pcap.so.21.2.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1771/2513] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1772/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1773/2513] Linking static target drivers/librte_net_pcap.a
[1774/2513] Generating rte_crypto_dpaa_sec_def with a custom command
[1775/2513] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1776/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1777/2513] Linking static target drivers/libtmp_rte_net_thunderx.a
[1778/2513] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1779/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1780/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1781/2513] Generating rte_net_vhost.pmd.c with a custom command
[1782/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1783/2513] Generating rte_crypto_dpaa2_sec_def with a custom command
[1784/2513] Generating rte_net_sfc.pmd.c with a custom command
[1785/2513] Compiling C object drivers/librte_net_vhost.so.21.2.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1786/2513] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1787/2513] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1788/2513] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1789/2513] Compiling C object drivers/librte_net_sfc.so.21.2.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1790/2513] Linking static target drivers/librte_net_vhost.a
[1791/2513] Generating rte_crypto_nitrox_mingw with a custom command
[1792/2513] Linking static target drivers/librte_net_sfc.a
[1793/2513] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.2
[1794/2513] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[1795/2513] Generating rte_crypto_nitrox_def with a custom command
[1796/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1797/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1798/2513] Generating rte_crypto_null_mingw with a custom command
[1799/2513] Generating rte_net_softnic.pmd.c with a custom command
[1800/2513] Generating rte_crypto_null_def with a custom command
[1801/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1802/2513] Generating rte_net_thunderx.pmd.c with a custom command
[1803/2513] Linking target drivers/librte_net_qede.so.21.2
[1804/2513] Compiling C object drivers/librte_net_softnic.so.21.2.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1805/2513] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1806/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1807/2513] Compiling C object drivers/librte_net_thunderx.so.21.2.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1808/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1809/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1810/2513] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1811/2513] Linking static target drivers/librte_net_thunderx.a
[1812/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1813/2513] Linking static target drivers/librte_net_softnic.a
[1814/2513] Generating rte_crypto_octeontx_def with a custom command
[1815/2513] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1816/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1817/2513] Generating rte_crypto_octeontx2_mingw with a custom command
[1818/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1819/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1820/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1821/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1822/2513] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1823/2513] Generating rte_crypto_octeontx2_def with a custom command
[1824/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1825/2513] Linking target drivers/librte_net_pcap.so.21.2
[1826/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1827/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1828/2513] Generating rte_raw_skeleton.pmd.c with a custom command
[1829/2513] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1830/2513] Compiling C object drivers/librte_raw_skeleton.so.21.2.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1831/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1832/2513] Linking static target drivers/libtmp_rte_raw_ioat.a
[1833/2513] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1834/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1835/2513] Linking static target drivers/librte_raw_skeleton.a
[1836/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1837/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1838/2513] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1839/2513] Generating rte_crypto_scheduler_mingw with a custom command
[1840/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1841/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1842/2513] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1843/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1844/2513] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[1845/2513] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.2.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1846/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1847/2513] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1848/2513] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1849/2513] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1850/2513] Generating rte_crypto_scheduler_def with a custom command
[1851/2513] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1852/2513] Linking target drivers/librte_net_sfc.so.21.2
[1853/2513] Linking static target drivers/librte_raw_octeontx2_ep.a
[1854/2513] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.2.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1855/2513] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1856/2513] Linking target drivers/librte_net_thunderx.so.21.2
[1857/2513] Linking static target drivers/librte_raw_octeontx2_dma.a
[1858/2513] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[1859/2513] Generating rte_crypto_virtio_def with a custom command
[1860/2513] Generating rte_raw_ioat.pmd.c with a custom command
[1861/2513] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1862/2513] Generating rte_crypto_virtio_mingw with a custom command
[1863/2513] Compiling C object drivers/librte_raw_ioat.so.21.2.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1864/2513] Linking static target drivers/librte_raw_ioat.a
[1865/2513] Generating rte_crypto_nitrox.pmd.c with a custom command
[1866/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1867/2513] Compiling C object drivers/librte_crypto_nitrox.so.21.2.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1868/2513] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1869/2513] Generating rte_compress_octeontx_mingw with a custom command
[1870/2513] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1871/2513] Linking static target drivers/librte_crypto_nitrox.a
[1872/2513] Generating rte_compress_octeontx_def with a custom command
[1873/2513] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1874/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1875/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1876/2513] Compiling C object drivers/librte_crypto_bcmfs.so.21.2.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1877/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1878/2513] Linking static target drivers/librte_crypto_bcmfs.a
[1879/2513] Generating rte_compress_zlib_mingw with a custom command
[1880/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1881/2513] Generating rte_compress_zlib_def with a custom command
[1882/2513] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[1883/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1884/2513] Linking static target drivers/libtmp_rte_net_tap.a
[1885/2513] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1886/2513] Linking target drivers/librte_raw_skeleton.so.21.2
[1887/2513] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[1888/2513] Linking target drivers/librte_raw_octeontx2_ep.so.21.2
[1889/2513] Generating rte_regex_octeontx2_def with a custom command
[1890/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1891/2513] Linking target drivers/librte_raw_octeontx2_dma.so.21.2
[1892/2513] Generating rte_regex_octeontx2_mingw with a custom command
[1893/2513] Generating rte_vdpa_ifc_def with a custom command
[1894/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1895/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1896/2513] Generating rte_vdpa_ifc_mingw with a custom command
[1897/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1898/2513] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[1899/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1900/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1901/2513] Linking static target drivers/libtmp_rte_net_virtio.a
[1902/2513] Generating rte_net_tap.pmd.c with a custom command
[1903/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[1904/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1905/2513] Linking target drivers/librte_raw_ioat.so.21.2
[1906/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1907/2513] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[1908/2513] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1909/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1910/2513] Compiling C object drivers/librte_net_tap.so.21.2.p/meson-generated_.._rte_net_tap.pmd.c.o
[1911/2513] Linking static target drivers/librte_net_tap.a
[1912/2513] Linking target drivers/librte_crypto_bcmfs.so.21.2
[1913/2513] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1914/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1915/2513] Generating rte_event_dlb_def with a custom command
[1916/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1917/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1918/2513] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[1919/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.2.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1920/2513] Linking static target drivers/librte_raw_dpaa2_qdma.a
[1921/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1922/2513] Generating rte_event_dlb_mingw with a custom command
[1923/2513] Linking target drivers/librte_crypto_nitrox.so.21.2
[1924/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1925/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[1926/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1927/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1928/2513] Generating rte_net_virtio.pmd.c with a custom command
[1929/2513] Compiling C object drivers/librte_net_virtio.so.21.2.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1930/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1931/2513] Linking static target drivers/libtmp_rte_crypto_null.a
[1932/2513] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1933/2513] Generating rte_event_dlb2_def with a custom command
[1934/2513] Linking static target drivers/librte_net_virtio.a
[1935/2513] Generating rte_event_dlb2_mingw with a custom command
[1936/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1937/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[1938/2513] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[1939/2513] Generating rte_event_dpaa_def with a custom command
[1940/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[1941/2513] Generating rte_event_dpaa_mingw with a custom command
[1942/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1943/2513] Linking target drivers/librte_net_tap.so.21.2
[1944/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1945/2513] Generating rte_event_dpaa2_mingw with a custom command
[1946/2513] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1947/2513] Generating rte_crypto_null.pmd.c with a custom command
[1948/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1949/2513] Generating rte_event_dpaa2_def with a custom command
[1950/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1951/2513] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1952/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[1953/2513] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[1954/2513] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1955/2513] Linking static target drivers/librte_crypto_null.a
[1956/2513] Compiling C object drivers/librte_crypto_null.so.21.2.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1957/2513] Linking static target drivers/libtmp_rte_crypto_virtio.a
[1958/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1959/2513] Linking target drivers/librte_raw_dpaa2_qdma.so.21.2
[1960/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1961/2513] Generating rte_regex_octeontx2.pmd.c with a custom command
[1962/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1963/2513] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1964/2513] Generating rte_net_vmxnet3.pmd.c with a custom command
[1965/2513] Compiling C object drivers/librte_regex_octeontx2.so.21.2.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1966/2513] Linking static target drivers/librte_regex_octeontx2.a
[1967/2513] Generating rte_crypto_virtio.pmd.c with a custom command
[1968/2513] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1969/2513] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1970/2513] Compiling C object drivers/librte_net_vmxnet3.so.21.2.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1971/2513] Compiling C object drivers/librte_crypto_virtio.so.21.2.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1972/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1973/2513] Linking static target drivers/librte_net_vmxnet3.a
[1974/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1975/2513] Linking static target drivers/librte_crypto_virtio.a
[1976/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[1977/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1978/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1979/2513] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1980/2513] Linking static target drivers/libtmp_rte_compress_zlib.a
[1981/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1982/2513] Generating rte_event_octeontx2_def with a custom command
[1983/2513] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1984/2513] Generating rte_event_octeontx2_mingw with a custom command
[1985/2513] Linking target drivers/librte_net_virtio.so.21.2
[1986/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1987/2513] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[1988/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1989/2513] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1990/2513] Linking target drivers/librte_crypto_null.so.21.2
[1991/2513] Generating rte_compress_zlib.pmd.c with a custom command
[1992/2513] Generating rte_vdpa_ifc.pmd.c with a custom command
[1993/2513] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1994/2513] Compiling C object drivers/librte_compress_zlib.so.21.2.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1995/2513] Linking static target drivers/librte_compress_zlib.a
[1996/2513] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[1997/2513] Linking static target drivers/librte_vdpa_ifc.a
[1998/2513] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[1999/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[2000/2513] Compiling C object drivers/librte_vdpa_ifc.so.21.2.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2001/2513] Generating rte_event_opdl_mingw with a custom command
[2002/2513] Linking target drivers/librte_regex_octeontx2.so.21.2
[2003/2513] Generating rte_compress_octeontx.pmd.c with a custom command
[2004/2513] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2005/2513] Generating rte_event_skeleton_def with a custom command
[2006/2513] Linking static target drivers/librte_compress_octeontx.a
[2007/2513] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[2008/2513] Generating rte_event_opdl_def with a custom command
[2009/2513] Compiling C object drivers/librte_compress_octeontx.so.21.2.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2010/2513] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2011/2513] Generating rte_event_skeleton_mingw with a custom command
[2012/2513] Linking target drivers/librte_net_vmxnet3.so.21.2
[2013/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[2014/2513] Linking target drivers/librte_crypto_virtio.so.21.2
[2015/2513] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2016/2513] Linking static target drivers/libtmp_rte_event_dpaa.a
[2017/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2018/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2019/2513] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2020/2513] Generating rte_event_sw_def with a custom command
[2021/2513] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2022/2513] Generating rte_event_dpaa.pmd.c with a custom command
[2023/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2024/2513] Generating rte_event_sw_mingw with a custom command
[2025/2513] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2026/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2027/2513] Linking static target drivers/librte_event_dpaa.a
[2028/2513] Linking target drivers/librte_compress_zlib.so.21.2
[2029/2513] Compiling C object drivers/librte_event_dpaa.so.21.2.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2030/2513] Generating rte_event_dsw_def with a custom command
[2031/2513] Generating rte_event_dsw_mingw with a custom command
[2032/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2033/2513] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2034/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2035/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2036/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2037/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2038/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2039/2513] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2040/2513] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2041/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2042/2513] Linking static target drivers/libtmp_rte_net_txgbe.a
[2043/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2044/2513] Linking target drivers/librte_compress_octeontx.so.21.2
[2045/2513] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2046/2513] Generating rte_event_octeontx_mingw with a custom command
[2047/2513] Linking static target drivers/libtmp_rte_event_skeleton.a
[2048/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2049/2513] Generating rte_event_octeontx_def with a custom command
[2050/2513] Generating rte_event_dpaa2.pmd.c with a custom command
[2051/2513] Generating rte_crypto_scheduler.pmd.c with a custom command
[2052/2513] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2053/2513] Generating rte_baseband_null_def with a custom command
[2054/2513] Compiling C object drivers/librte_event_dpaa2.so.21.2.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2055/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2056/2513] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2057/2513] Compiling C object drivers/librte_crypto_scheduler.so.21.2.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2058/2513] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2059/2513] Linking static target drivers/librte_crypto_scheduler.a
[2060/2513] Generating rte_baseband_null_mingw with a custom command
[2061/2513] Linking static target drivers/librte_event_dpaa2.a
[2062/2513] Generating rte_event_skeleton.pmd.c with a custom command
[2063/2513] Generating rte_baseband_turbo_sw_def with a custom command
[2064/2513] Generating rte_baseband_turbo_sw_mingw with a custom command
[2065/2513] Compiling C object drivers/librte_event_skeleton.so.21.2.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2066/2513] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2067/2513] Generating rte_net_txgbe.pmd.c with a custom command
[2068/2513] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2069/2513] Linking static target drivers/librte_event_skeleton.a
[2070/2513] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2071/2513] Compiling C object drivers/librte_net_txgbe.so.21.2.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2072/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2073/2513] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2074/2513] Linking static target drivers/librte_net_txgbe.a
[2075/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[2076/2513] Linking static target drivers/libtmp_rte_raw_ntb.a
[2077/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[2078/2513] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2079/2513] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2080/2513] Generating rte_baseband_acc100_def with a custom command
[2081/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2082/2513] Generating rte_baseband_acc100_mingw with a custom command
[2083/2513] Generating rte_raw_ntb.pmd.c with a custom command
[2084/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2085/2513] Compiling C object drivers/librte_raw_ntb.so.21.2.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2086/2513] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2087/2513] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2088/2513] Linking static target drivers/librte_raw_ntb.a
[2089/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2090/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2091/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2092/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2093/2513] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2094/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2095/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2096/2513] Linking target drivers/librte_crypto_scheduler.so.21.2
[2097/2513] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2098/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2099/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2100/2513] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2101/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[2102/2513] Linking target drivers/librte_event_skeleton.so.21.2
[2103/2513] Linking static target drivers/libtmp_rte_event_dlb.a
[2104/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2105/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2106/2513] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2107/2513] Linking target drivers/librte_net_txgbe.so.21.2
[2108/2513] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2109/2513] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2110/2513] Compiling C object drivers/librte_crypto_caam_jr.so.21.2.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2111/2513] Generating rte_event_dlb.pmd.c with a custom command
[2112/2513] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2113/2513] Linking target drivers/librte_raw_ntb.so.21.2
[2114/2513] Linking static target drivers/librte_crypto_caam_jr.a
[2115/2513] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2116/2513] Compiling C object drivers/librte_event_dlb.so.21.2.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2117/2513] Linking static target drivers/librte_event_dlb.a
[2118/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2119/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2120/2513] Linking static target drivers/libtmp_rte_event_dlb2.a
[2121/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2122/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2123/2513] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2124/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2125/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2126/2513] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2127/2513] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2128/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2129/2513] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2130/2513] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2131/2513] Linking static target drivers/libtmp_rte_baseband_null.a
[2132/2513] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2133/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2134/2513] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2135/2513] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2136/2513] Generating rte_event_dlb2.pmd.c with a custom command
[2137/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2138/2513] Linking target drivers/librte_crypto_caam_jr.so.21.2
[2139/2513] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2140/2513] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2141/2513] Compiling C object drivers/librte_event_dlb2.so.21.2.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2142/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2143/2513] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2144/2513] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2145/2513] Linking target drivers/librte_event_dlb.so.21.2
[2146/2513] Linking static target drivers/librte_event_dlb2.a
[2147/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2148/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2149/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2150/2513] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2151/2513] Generating rte_baseband_null.pmd.c with a custom command
[2152/2513] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2153/2513] Linking static target drivers/librte_baseband_null.a
[2154/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2155/2513] Compiling C object drivers/librte_baseband_null.so.21.2.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2156/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2157/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2158/2513] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2159/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2160/2513] Linking static target drivers/libtmp_rte_event_octeontx.a
[2161/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2162/2513] Linking target drivers/librte_event_dlb2.so.21.2
[2163/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2164/2513] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2165/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2166/2513] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2167/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2168/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2169/2513] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.2
[2170/2513] Linking static target drivers/libtmp_rte_event_sw.a
[2171/2513] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.2
[2172/2513] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2173/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2174/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2175/2513] Linking target drivers/librte_baseband_null.so.21.2
[2176/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2177/2513] Generating rte_event_octeontx.pmd.c with a custom command
[2178/2513] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2179/2513] Compiling C object drivers/librte_event_octeontx.so.21.2.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2180/2513] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2181/2513] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2182/2513] Linking static target drivers/librte_event_octeontx.a
[2183/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2184/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2185/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2186/2513] Generating rte_event_sw.pmd.c with a custom command
[2187/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2188/2513] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2189/2513] Linking static target drivers/librte_event_sw.a
[2190/2513] Compiling C object drivers/librte_event_sw.so.21.2.p/meson-generated_.._rte_event_sw.pmd.c.o
[2191/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2192/2513] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2193/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2194/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2195/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2196/2513] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2197/2513] Compiling C object drivers/librte_baseband_turbo_sw.so.21.2.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2198/2513] Linking static target drivers/librte_baseband_turbo_sw.a
[2199/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2200/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2201/2513] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2202/2513] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2203/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2204/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2205/2513] Linking target drivers/librte_event_sw.so.21.2
[2206/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2207/2513] Linking static target drivers/libtmp_rte_event_dsw.a
[2208/2513] Linking target drivers/librte_event_octeontx.so.21.2
[2209/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2210/2513] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2211/2513] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2212/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2213/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2214/2513] Linking target drivers/librte_baseband_turbo_sw.so.21.2
[2215/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2216/2513] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2217/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2218/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2219/2513] Generating rte_event_dsw.pmd.c with a custom command
[2220/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2221/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2222/2513] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2223/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2224/2513] Compiling C object drivers/librte_event_dsw.so.21.2.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2225/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2226/2513] Linking static target drivers/librte_event_dsw.a
[2227/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2228/2513] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2229/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2230/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2231/2513] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2232/2513] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2233/2513] Linking static target drivers/librte_crypto_dpaa_sec.a
[2234/2513] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2235/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2236/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2237/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2238/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2239/2513] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2240/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2241/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2242/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2243/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2244/2513] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2245/2513] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2246/2513] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2247/2513] Linking target drivers/librte_crypto_dpaa_sec.so.21.2
[2248/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2249/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2250/2513] Linking target drivers/librte_event_dsw.so.21.2
[2251/2513] Compiling C object app/test/dpdk-test.p/test.c.o
[2252/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2253/2513] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2254/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2255/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2256/2513] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2257/2513] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2258/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2259/2513] Linking target drivers/librte_crypto_dpaa2_sec.so.21.2
[2260/2513] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2261/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2262/2513] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2263/2513] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2264/2513] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.2.p/librte_crypto_dpaa_sec.so.21.2.symbols
[2265/2513] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2266/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2267/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2268/2513] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2269/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2270/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2271/2513] Linking target drivers/librte_event_dpaa.so.21.2
[2272/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2273/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2274/2513] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2275/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2276/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2277/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2278/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2279/2513] Generating rte_baseband_acc100.pmd.c with a custom command
[2280/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2281/2513] Compiling C object drivers/librte_baseband_acc100.so.21.2.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2282/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2283/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2284/2513] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2285/2513] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.2.p/librte_crypto_dpaa2_sec.so.21.2.symbols
[2286/2513] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2287/2513] Linking static target drivers/librte_baseband_acc100.a
[2288/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2289/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2290/2513] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2291/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2292/2513] Compiling C object drivers/librte_crypto_octeontx2.so.21.2.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2293/2513] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2294/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2295/2513] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2296/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2297/2513] Linking target drivers/librte_event_dpaa2.so.21.2
[2298/2513] Linking static target drivers/librte_crypto_octeontx2.a
[2299/2513] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2300/2513] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2301/2513] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2302/2513] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2303/2513] Compiling C object app/test/dpdk-test.p/commands.c.o
[2304/2513] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2305/2513] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2306/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2307/2513] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2308/2513] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2309/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2310/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2311/2513] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2312/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2313/2513] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2314/2513] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2315/2513] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2316/2513] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2317/2513] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2318/2513] Linking target drivers/librte_baseband_acc100.so.21.2
[2319/2513] Generating rte_net_octeontx2.pmd.c with a custom command
[2320/2513] Generating rte_crypto_octeontx.pmd.c with a custom command
[2321/2513] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2322/2513] Linking target drivers/librte_crypto_octeontx2.so.21.2
[2323/2513] Linking static target drivers/librte_net_octeontx2.a
[2324/2513] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2325/2513] Compiling C object drivers/librte_net_octeontx2.so.21.2.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2326/2513] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2327/2513] Compiling C object drivers/librte_crypto_octeontx.so.21.2.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2328/2513] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2329/2513] Linking static target drivers/librte_crypto_octeontx.a
[2330/2513] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2331/2513] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2332/2513] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2333/2513] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2334/2513] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2335/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2336/2513] Generating symbol file drivers/librte_crypto_octeontx2.so.21.2.p/librte_crypto_octeontx2.so.21.2.symbols
[2337/2513] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2338/2513] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2339/2513] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2340/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2341/2513] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2342/2513] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2343/2513] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2344/2513] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2345/2513] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2346/2513] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2347/2513] Linking target drivers/librte_crypto_octeontx.so.21.2
[2348/2513] Linking target drivers/librte_net_octeontx2.so.21.2
[2349/2513] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2350/2513] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2351/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2352/2513] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2353/2513] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2354/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2355/2513] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2356/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2357/2513] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2358/2513] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2359/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2360/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2361/2513] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2362/2513] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2363/2513] Generating symbol file drivers/librte_net_octeontx2.so.21.2.p/librte_net_octeontx2.so.21.2.symbols
[2364/2513] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2365/2513] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2366/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2367/2513] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2368/2513] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2369/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2370/2513] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2371/2513] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2372/2513] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2373/2513] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2374/2513] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2375/2513] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2376/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2377/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2378/2513] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2379/2513] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2380/2513] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2381/2513] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2382/2513] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2383/2513] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2384/2513] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2385/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2386/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2387/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2388/2513] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2389/2513] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2390/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2391/2513] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2392/2513] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2393/2513] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2394/2513] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2395/2513] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2396/2513] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2397/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2398/2513] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2399/2513] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2400/2513] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2401/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2402/2513] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2403/2513] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2404/2513] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2405/2513] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2406/2513] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2407/2513] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2408/2513] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2409/2513] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2410/2513] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2411/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2412/2513] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2413/2513] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2414/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2415/2513] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2416/2513] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2417/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2418/2513] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2419/2513] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2420/2513] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2421/2513] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2422/2513] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2423/2513] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2424/2513] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2425/2513] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2426/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2427/2513] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2428/2513] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2429/2513] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2430/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2431/2513] Generating rte_kni_makefile with a custom command
[2432/2513] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2433/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2434/2513] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2435/2513] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2436/2513] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2437/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2438/2513] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2439/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2440/2513] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2441/2513] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2442/2513] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2443/2513] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2444/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2445/2513] Linking static target drivers/libtmp_rte_event_opdl.a
[2446/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2447/2513] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2448/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2449/2513] Generating rte_event_opdl.pmd.c with a custom command
[2450/2513] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2451/2513] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2452/2513] Compiling C object drivers/librte_event_opdl.so.21.2.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2453/2513] Linking static target drivers/librte_event_opdl.a
[2454/2513] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2455/2513] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2456/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2457/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2458/2513] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2459/2513] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2460/2513] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2461/2513] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2462/2513] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2463/2513] Linking target drivers/librte_event_opdl.so.21.2
[2464/2513] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2465/2513] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2466/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2467/2513] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2468/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2469/2513] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2470/2513] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.8.0-45-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  MODPOST /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/Module.symvers
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/linux-headers-5.8.0-45-generic'
[2471/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2472/2513] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2473/2513] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2474/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2475/2513] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2476/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2477/2513] Linking static target lib/librte_pipeline.a
[2478/2513] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2479/2513] Linking target lib/librte_pipeline.so.21.2
[2480/2513] Generating symbol file lib/librte_pipeline.so.21.2.p/librte_pipeline.so.21.2.symbols
[2481/2513] Linking target drivers/librte_net_softnic.so.21.2
[2482/2513] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2483/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2484/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2485/2513] Linking static target lib/librte_vhost.a
[2486/2513] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2487/2513] Linking target lib/librte_vhost.so.21.2
[2488/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2489/2513] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2490/2513] Generating symbol file lib/librte_vhost.so.21.2.p/librte_vhost.so.21.2.symbols
[2491/2513] Linking target drivers/librte_net_vhost.so.21.2
[2492/2513] Linking target drivers/librte_vdpa_ifc.so.21.2
[2493/2513] Generating rte_event_octeontx2.pmd.c with a custom command
[2494/2513] Compiling C object drivers/librte_event_octeontx2.so.21.2.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2495/2513] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2496/2513] Linking static target drivers/librte_event_octeontx2.a
[2497/2513] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2498/2513] Linking target drivers/librte_event_octeontx2.so.21.2
[2499/2513] Linking target app/dpdk-test-cmdline
[2500/2513] Linking target app/dpdk-test-compress-perf
[2501/2513] Linking target app/dpdk-test-eventdev
[2502/2513] Linking target app/test/dpdk-test
[2503/2513] Linking target app/dpdk-pdump
[2504/2513] Linking target app/dpdk-test-sad
[2505/2513] Linking target app/dpdk-test-regex
[2506/2513] Linking target app/dpdk-test-fib
[2507/2513] Linking target app/dpdk-proc-info
[2508/2513] Linking target app/dpdk-testpmd
[2509/2513] Linking target app/dpdk-test-acl
[2510/2513] Linking target app/dpdk-test-bbdev
[2511/2513] Linking target app/dpdk-test-pipeline
[2512/2513] Linking target app/dpdk-test-crypto-perf
[2513/2513] Linking target app/dpdk-test-flow-perf
22/03/2021 05:50:22             dut.10.240.183.145: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
22/03/2021 05:50:22             dut.10.240.183.145: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
22/03/2021 05:50:22             dut.10.240.183.145: mkdir -p x86_64-native-linuxapp-gcc/kmod
22/03/2021 05:50:22             dut.10.240.183.145: 
22/03/2021 05:50:22             dut.10.240.183.145: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
22/03/2021 05:50:22             dut.10.240.183.145: 
22/03/2021 05:50:22             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 05:50:23             dut.10.240.183.145: echo 0000:07:00.0 > /sys/bus/pci/devices/0000\:07\:00.0/driver/unbind
22/03/2021 05:50:23             dut.10.240.183.145: 
22/03/2021 05:50:23             dut.10.240.183.145: modprobe ice
22/03/2021 05:50:23             dut.10.240.183.145: 
22/03/2021 05:50:23             dut.10.240.183.145: echo 0000:07:00.0 > /sys/bus/pci/drivers/ice/bind
22/03/2021 05:50:24             dut.10.240.183.145: 
22/03/2021 05:50:24             dut.10.240.183.145: ifconfig enp7s0f0 up
22/03/2021 05:50:24             dut.10.240.183.145: 
22/03/2021 05:50:24             dut.10.240.183.145: echo 0000:07:00.1 > /sys/bus/pci/devices/0000\:07\:00.1/driver/unbind
22/03/2021 05:50:24             dut.10.240.183.145: 
22/03/2021 05:50:24             dut.10.240.183.145: modprobe ice
22/03/2021 05:50:25             dut.10.240.183.145: 
22/03/2021 05:50:25             dut.10.240.183.145: echo 0000:07:00.1 > /sys/bus/pci/drivers/ice/bind
22/03/2021 05:50:25             dut.10.240.183.145: 
22/03/2021 05:50:25             dut.10.240.183.145: ifconfig enp7s0f1 up
22/03/2021 05:50:26             dut.10.240.183.145: 
22/03/2021 05:50:27                            dts: DTS ended
22/03/2021 05:57:28                            dts: 
TEST SUITE : TestFlexibleRxd
22/03/2021 05:57:28                            dts: NIC :        columbiaville_25g
22/03/2021 05:57:28             dut.10.240.183.145: 
22/03/2021 05:57:28                         tester: 
22/03/2021 05:57:28             dut.10.240.183.145: rm -rf x86_64-native-linuxapp-gcc
22/03/2021 05:57:29             dut.10.240.183.145: 
22/03/2021 05:57:29             dut.10.240.183.145: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
22/03/2021 05:57:34             dut.10.240.183.145: The Meson build system
Version: 0.56.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.05.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:238: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" :  
Fetching value of define "__AVX512BW__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
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"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
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: YES 2.12
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__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
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 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
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"
Run-time dependency libelf found: NO (tried pkgconfig)
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: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-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 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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 "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" :  (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-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)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
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 "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-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/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-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 (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, sfc_efx, qat, 
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, ionic, 
	ixgbe, kni, liquidio, memif, netvsc, nfp, null, octeontx, 
	octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, softnic, 
	tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	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, "libAArch64crypto"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1019

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
22/03/2021 05:57:34             dut.10.240.183.145: ninja -C x86_64-native-linuxapp-gcc
22/03/2021 05:59:16             dut.10.240.183.145: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2513] Generating rte_kvargs_def with a custom command
[2/2513] Generating rte_kvargs_mingw with a custom command
[3/2513] Generating rte_telemetry_def with a custom command
[4/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[5/2513] Generating rte_telemetry_mingw with a custom command
[6/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[7/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[8/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[9/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[10/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[11/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[12/2513] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[13/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[14/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[15/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[16/2513] Linking static target lib/librte_kvargs.a
[17/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_version.c.o
[18/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[19/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[20/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[21/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[22/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[23/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[24/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[25/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[26/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[27/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[28/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_rte_thread.c.o
[29/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[30/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[31/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[32/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[33/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[34/2513] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[35/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[36/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[37/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[38/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[39/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[40/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[41/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[42/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[43/2513] Generating rte_eal_def with a custom command
[44/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[45/2513] Generating rte_eal_mingw with a custom command
[46/2513] Generating rte_rcu_def with a custom command
[47/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[48/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[49/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[50/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[51/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[52/2513] Generating rte_ring_mingw with a custom command
[53/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[54/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[55/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[56/2513] Generating rte_mempool_mingw with a custom command
[57/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[58/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[59/2513] Generating rte_rcu_mingw with a custom command
[60/2513] Generating rte_ring_def with a custom command
[61/2513] Generating rte_mempool_def with a custom command
[62/2513] Generating rte_mbuf_def with a custom command
[63/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[64/2513] Generating rte_mbuf_mingw with a custom command
[65/2513] Generating rte_net_def with a custom command
[66/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[67/2513] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[68/2513] Generating rte_net_mingw with a custom command
[69/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_power_intrinsics.c.o
[70/2513] Generating rte_meter_mingw with a custom command
[71/2513] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[72/2513] Generating rte_meter_def with a custom command
[73/2513] Linking static target lib/librte_telemetry.a
[74/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[75/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[76/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[77/2513] Generating rte_ethdev_def with a custom command
[78/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[79/2513] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[80/2513] Linking static target lib/librte_ring.a
[81/2513] Generating rte_ethdev_mingw with a custom command
[82/2513] Generating rte_pci_def with a custom command
[83/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[84/2513] Generating rte_pci_mingw with a custom command
[85/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[86/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[87/2513] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[88/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[89/2513] Linking static target lib/librte_meter.a
[90/2513] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[91/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[92/2513] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[93/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[94/2513] Linking static target lib/librte_pci.a
[95/2513] Linking target lib/librte_kvargs.so.21.2
[96/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[97/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[98/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[99/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[100/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[101/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[102/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[103/2513] Generating rte_cmdline_def with a custom command
[104/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[105/2513] Generating rte_cmdline_mingw with a custom command
[106/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[107/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[108/2513] Generating rte_metrics_def with a custom command
[109/2513] Generating rte_metrics_mingw with a custom command
[110/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[111/2513] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[112/2513] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[113/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[114/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[115/2513] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[116/2513] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[117/2513] Generating rte_hash_mingw with a custom command
[118/2513] Generating rte_timer_def with a custom command
[119/2513] Generating rte_hash_def with a custom command
[120/2513] Generating rte_timer_mingw with a custom command
[121/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[122/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[123/2513] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[124/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[125/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[126/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[127/2513] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[128/2513] Generating rte_acl_def with a custom command
[129/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[130/2513] Generating rte_acl_mingw with a custom command
[131/2513] Generating rte_bbdev_mingw with a custom command
[132/2513] Generating rte_bbdev_def with a custom command
[133/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[134/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[135/2513] Generating rte_bitratestats_def with a custom command
[136/2513] Generating rte_bitratestats_mingw with a custom command
[137/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[138/2513] Generating rte_cfgfile_def with a custom command
[139/2513] Generating rte_cfgfile_mingw with a custom command
[140/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[141/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[142/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[143/2513] Generating rte_compressdev_def with a custom command
[144/2513] Generating rte_compressdev_mingw with a custom command
[145/2513] Generating rte_cryptodev_def with a custom command
[146/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[147/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[148/2513] Generating rte_cryptodev_mingw with a custom command
[149/2513] Generating symbol file lib/librte_kvargs.so.21.2.p/librte_kvargs.so.21.2.symbols
[150/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[151/2513] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[152/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[153/2513] Generating rte_distributor_mingw with a custom command
[154/2513] Generating rte_efd_def with a custom command
[155/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[156/2513] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[157/2513] Generating rte_efd_mingw with a custom command
[158/2513] Generating rte_distributor_def with a custom command
[159/2513] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[160/2513] Linking target lib/librte_telemetry.so.21.2
[161/2513] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[162/2513] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[163/2513] Linking static target lib/librte_cmdline.a
[164/2513] Linking static target lib/librte_net.a
[165/2513] Linking static target lib/librte_rcu.a
[166/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[167/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[168/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[169/2513] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[170/2513] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[171/2513] Generating rte_eventdev_def with a custom command
[172/2513] Linking static target lib/librte_mempool.a
[173/2513] Linking static target lib/librte_cfgfile.a
[174/2513] Generating rte_eventdev_mingw with a custom command
[175/2513] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[176/2513] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[177/2513] Linking static target lib/librte_eal.a
[178/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[179/2513] Linking static target lib/librte_timer.a
[180/2513] Generating symbol file lib/librte_telemetry.so.21.2.p/librte_telemetry.so.21.2.symbols
[181/2513] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[182/2513] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[183/2513] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[184/2513] Generating rte_gro_def with a custom command
[185/2513] Linking static target lib/librte_bitratestats.a
[186/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[187/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[188/2513] Generating rte_gro_mingw with a custom command
[189/2513] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[190/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[191/2513] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[192/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[193/2513] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics_telemetry.c.o
[194/2513] Linking static target lib/librte_metrics.a
[195/2513] Generating rte_gso_def with a custom command
[196/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[197/2513] Generating rte_gso_mingw with a custom command
[198/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[199/2513] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[200/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[201/2513] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[202/2513] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[203/2513] Linking static target lib/librte_compressdev.a
[204/2513] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[205/2513] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[206/2513] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[207/2513] Generating rte_ip_frag_def with a custom command
[208/2513] Generating rte_ip_frag_mingw with a custom command
[209/2513] Linking static target lib/librte_bbdev.a
[210/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[211/2513] Generating rte_jobstats_def with a custom command
[212/2513] Generating rte_jobstats_mingw with a custom command
[213/2513] Generating rte_kni_def with a custom command
[214/2513] Generating rte_kni_mingw with a custom command
[215/2513] Generating rte_latencystats_def with a custom command
[216/2513] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[217/2513] Generating rte_latencystats_mingw with a custom command
[218/2513] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[219/2513] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[220/2513] Linking static target lib/librte_distributor.a
[221/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[222/2513] Generating rte_lpm_def with a custom command
[223/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[224/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[225/2513] Generating rte_lpm_mingw with a custom command
[226/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[227/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_udp4.c.o
[228/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[229/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[230/2513] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[231/2513] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[232/2513] Generating rte_member_def with a custom command
[233/2513] Generating rte_member_mingw with a custom command
[234/2513] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[235/2513] Linking static target lib/librte_gro.a
[236/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[237/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[238/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[239/2513] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[240/2513] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[241/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[242/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[243/2513] Generating rte_power_def with a custom command
[244/2513] Generating rte_power_mingw with a custom command
[245/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[246/2513] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[247/2513] Generating rte_pdump_mingw with a custom command
[248/2513] Generating rte_pdump_def with a custom command
[249/2513] Generating rte_rawdev_def with a custom command
[250/2513] Generating rte_rawdev_mingw with a custom command
[251/2513] Generating rte_regexdev_def with a custom command
[252/2513] Generating rte_regexdev_mingw with a custom command
[253/2513] Generating rte_rib_def with a custom command
[254/2513] Generating rte_rib_mingw with a custom command
[255/2513] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[256/2513] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[257/2513] Generating rte_reorder_def with a custom command
[258/2513] Linking static target lib/librte_jobstats.a
[259/2513] Generating rte_reorder_mingw with a custom command
[260/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[261/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[262/2513] Generating rte_sched_def with a custom command
[263/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[264/2513] Generating rte_sched_mingw with a custom command
[265/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[266/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[267/2513] Generating rte_security_def with a custom command
[268/2513] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[269/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[270/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[271/2513] Generating rte_security_mingw with a custom command
[272/2513] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[273/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[274/2513] Generating rte_stack_def with a custom command
[275/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[276/2513] Generating rte_stack_mingw with a custom command
[277/2513] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[278/2513] Linking static target lib/librte_ip_frag.a
[279/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[280/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[281/2513] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[282/2513] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[283/2513] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[284/2513] Generating rte_vhost_def with a custom command
[285/2513] Linking static target lib/librte_stack.a
[286/2513] Linking static target lib/librte_latencystats.a
[287/2513] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[288/2513] Generating rte_vhost_mingw with a custom command
[289/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[290/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[291/2513] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[292/2513] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[293/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[294/2513] Generating rte_ipsec_def with a custom command
[295/2513] Linking static target lib/librte_gso.a
[296/2513] Compiling C object lib/librte_power.a.p/librte_power_rte_power_pmd_mgmt.c.o
[297/2513] Generating rte_ipsec_mingw with a custom command
[298/2513] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[299/2513] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[300/2513] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[301/2513] Linking static target lib/librte_kni.a
[302/2513] Linking static target lib/librte_cryptodev.a
[303/2513] Linking static target lib/librte_efd.a
[304/2513] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[305/2513] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[306/2513] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[307/2513] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[308/2513] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[309/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[310/2513] Linking static target lib/librte_regexdev.a
[311/2513] Linking static target lib/librte_rawdev.a
[312/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[313/2513] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[314/2513] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[315/2513] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[316/2513] Generating rte_fib_def with a custom command
[317/2513] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[318/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[319/2513] Compiling C object lib/librte_acl/libavx2_tmp.a.p/acl_run_avx2.c.o
[320/2513] Generating rte_fib_mingw with a custom command
[321/2513] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[322/2513] Linking static target lib/librte_reorder.a
[323/2513] Linking static target lib/librte_acl/libavx2_tmp.a
[324/2513] Linking static target lib/librte_mbuf.a
[325/2513] Linking static target lib/librte_lpm.a
[326/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[327/2513] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[328/2513] Linking static target lib/librte_security.a
[329/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[330/2513] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[331/2513] Linking static target lib/librte_power.a
[332/2513] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[333/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[334/2513] Linking static target lib/librte_pdump.a
[335/2513] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[336/2513] Compiling C object lib/librte_fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[337/2513] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[338/2513] Linking static target lib/librte_fib/libtrie_avx512_tmp.a
[339/2513] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[340/2513] Linking static target lib/librte_eventdev.a
[341/2513] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[342/2513] Compiling C object lib/librte_fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[343/2513] Linking static target lib/librte_member.a
[344/2513] Linking static target lib/librte_fib/libdir24_8_avx512_tmp.a
[345/2513] Compiling C object lib/librte_acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[346/2513] Linking static target lib/librte_acl/libavx512_tmp.a
[347/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[348/2513] Linking static target lib/librte_acl.a
[349/2513] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[350/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[351/2513] Linking static target lib/librte_ethdev.a
[352/2513] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[353/2513] Generating rte_port_def with a custom command
[354/2513] Generating rte_port_mingw with a custom command
[355/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[356/2513] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[357/2513] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[358/2513] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[359/2513] Linking static target lib/librte_rib.a
[360/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[361/2513] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[362/2513] Linking static target lib/librte_hash.a
[363/2513] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[364/2513] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[365/2513] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[366/2513] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[367/2513] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[368/2513] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[369/2513] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[370/2513] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[371/2513] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[372/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[373/2513] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[374/2513] Generating rte_table_def with a custom command
[375/2513] Generating rte_table_mingw with a custom command
[376/2513] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[377/2513] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[378/2513] Linking target lib/librte_eal.so.21.2
[379/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[380/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[381/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[382/2513] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[383/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[384/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[385/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[386/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[387/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[388/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[389/2513] Generating rte_flow_classify_def with a custom command
[390/2513] Generating rte_pipeline_def with a custom command
[391/2513] Generating rte_pipeline_mingw with a custom command
[392/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[393/2513] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[394/2513] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[395/2513] Generating rte_flow_classify_mingw with a custom command
[396/2513] Linking static target lib/librte_sched.a
[397/2513] Linking static target lib/librte_fib.a
[398/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[399/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[400/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[401/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[402/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[403/2513] Generating rte_bpf_def with a custom command
[404/2513] Generating rte_bpf_mingw with a custom command
[405/2513] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[406/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[407/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[408/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[409/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[410/2513] Generating rte_graph_def with a custom command
[411/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[412/2513] Generating rte_graph_mingw with a custom command
[413/2513] Generating symbol file lib/librte_eal.so.21.2.p/librte_eal.so.21.2.symbols
[414/2513] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[415/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[416/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[417/2513] Linking target lib/librte_ring.so.21.2
[418/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[419/2513] Linking target lib/librte_cfgfile.so.21.2
[420/2513] Linking target lib/librte_meter.so.21.2
[421/2513] Linking target lib/librte_pci.so.21.2
[422/2513] Linking target lib/librte_timer.so.21.2
[423/2513] Linking target lib/librte_acl.so.21.2
[424/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[425/2513] Linking target lib/librte_jobstats.so.21.2
[426/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[427/2513] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[428/2513] Linking target lib/librte_rawdev.so.21.2
[429/2513] Linking target lib/librte_stack.so.21.2
[430/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[431/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[432/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[433/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[434/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[435/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[436/2513] Generating rte_node_def with a custom command
[437/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[438/2513] Generating symbol file lib/librte_ring.so.21.2.p/librte_ring.so.21.2.symbols
[439/2513] Generating rte_common_cpt_mingw with a custom command
[440/2513] Generating rte_node_mingw with a custom command
[441/2513] Generating symbol file lib/librte_meter.so.21.2.p/librte_meter.so.21.2.symbols
[442/2513] Generating symbol file lib/librte_acl.so.21.2.p/librte_acl.so.21.2.symbols
[443/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[444/2513] Linking target lib/librte_rcu.so.21.2
[445/2513] Generating symbol file lib/librte_timer.so.21.2.p/librte_timer.so.21.2.symbols
[446/2513] Linking target lib/librte_mempool.so.21.2
[447/2513] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[448/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[449/2513] Linking static target lib/librte_table.a
[450/2513] Generating symbol file lib/librte_pci.so.21.2.p/librte_pci.so.21.2.symbols
[451/2513] Generating rte_common_cpt_def with a custom command
[452/2513] Generating rte_common_dpaax_mingw with a custom command
[453/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[454/2513] Generating rte_common_dpaax_def with a custom command
[455/2513] Generating symbol file lib/librte_rawdev.so.21.2.p/librte_rawdev.so.21.2.symbols
[456/2513] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[457/2513] Generating rte_common_iavf_def with a custom command
[458/2513] Generating symbol file lib/librte_stack.so.21.2.p/librte_stack.so.21.2.symbols
[459/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[460/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[461/2513] Generating rte_common_iavf_mingw with a custom command
[462/2513] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[463/2513] Generating rte_common_octeontx_def with a custom command
[464/2513] Generating rte_common_octeontx_mingw with a custom command
[465/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[466/2513] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[467/2513] Generating rte_common_octeontx2_mingw with a custom command
[468/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[469/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[470/2513] Generating rte_common_octeontx2_def with a custom command
[471/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[472/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[473/2513] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[474/2513] Linking static target drivers/libtmp_rte_common_octeontx.a
[475/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[476/2513] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[477/2513] Linking static target drivers/libtmp_rte_common_dpaax.a
[478/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[479/2513] Generating symbol file lib/librte_mempool.so.21.2.p/librte_mempool.so.21.2.symbols
[480/2513] Generating symbol file lib/librte_rcu.so.21.2.p/librte_rcu.so.21.2.symbols
[481/2513] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[482/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[483/2513] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[484/2513] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[485/2513] Linking target lib/librte_mbuf.so.21.2
[486/2513] Linking static target lib/librte_flow_classify.a
[487/2513] Generating rte_common_octeontx.pmd.c with a custom command
[488/2513] Linking target lib/librte_rib.so.21.2
[489/2513] Linking target lib/librte_hash.so.21.2
[490/2513] Linking static target lib/librte_port.a
[491/2513] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[492/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[493/2513] Generating rte_common_dpaax.pmd.c with a custom command
[494/2513] Linking static target drivers/librte_common_octeontx.a
[495/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[496/2513] Compiling C object drivers/librte_common_octeontx.so.21.2.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[497/2513] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[498/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[499/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[500/2513] Linking static target drivers/librte_common_dpaax.a
[501/2513] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[502/2513] Compiling C object drivers/librte_common_dpaax.so.21.2.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[503/2513] Linking static target lib/librte_graph.a
[504/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[505/2513] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[506/2513] Linking static target drivers/libtmp_rte_common_cpt.a
[507/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[508/2513] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[509/2513] Linking static target lib/librte_bpf.a
[510/2513] Generating rte_common_cpt.pmd.c with a custom command
[511/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[512/2513] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[513/2513] Generating symbol file lib/librte_mbuf.so.21.2.p/librte_mbuf.so.21.2.symbols
[514/2513] Compiling C object drivers/librte_common_cpt.so.21.2.p/meson-generated_.._rte_common_cpt.pmd.c.o
[515/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[516/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[517/2513] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[518/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[519/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[520/2513] Generating symbol file lib/librte_hash.so.21.2.p/librte_hash.so.21.2.symbols
[521/2513] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[522/2513] Generating symbol file lib/librte_rib.so.21.2.p/librte_rib.so.21.2.symbols
[523/2513] Linking target lib/librte_cryptodev.so.21.2
[524/2513] Linking target lib/librte_bbdev.so.21.2
[525/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[526/2513] Linking target lib/librte_compressdev.so.21.2
[527/2513] Linking target lib/librte_net.so.21.2
[528/2513] Linking target lib/librte_distributor.so.21.2
[529/2513] Linking target lib/librte_regexdev.so.21.2
[530/2513] Linking target lib/librte_reorder.so.21.2
[531/2513] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[532/2513] Linking static target drivers/librte_common_cpt.a
[533/2513] Linking target lib/librte_lpm.so.21.2
[534/2513] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[535/2513] Linking target lib/librte_member.so.21.2
[536/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[537/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[538/2513] Linking target lib/librte_efd.so.21.2
[539/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[540/2513] Linking target lib/librte_sched.so.21.2
[541/2513] Linking target lib/librte_fib.so.21.2
[542/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[543/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[544/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[545/2513] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[546/2513] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[547/2513] Linking target drivers/librte_common_octeontx.so.21.2
[548/2513] Linking static target lib/librte_ipsec.a
[549/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[550/2513] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[551/2513] Linking static target drivers/libtmp_rte_common_octeontx2.a
[552/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[553/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[554/2513] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[555/2513] Generating symbol file lib/librte_cryptodev.so.21.2.p/librte_cryptodev.so.21.2.symbols
[556/2513] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[557/2513] Generating symbol file lib/librte_reorder.so.21.2.p/librte_reorder.so.21.2.symbols
[558/2513] Generating symbol file lib/librte_regexdev.so.21.2.p/librte_regexdev.so.21.2.symbols
[559/2513] Generating symbol file lib/librte_net.so.21.2.p/librte_net.so.21.2.symbols
[560/2513] Generating symbol file lib/librte_compressdev.so.21.2.p/librte_compressdev.so.21.2.symbols
[561/2513] Generating symbol file lib/librte_bbdev.so.21.2.p/librte_bbdev.so.21.2.symbols
[562/2513] Generating symbol file lib/librte_lpm.so.21.2.p/librte_lpm.so.21.2.symbols
[563/2513] Linking target lib/librte_security.so.21.2
[564/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[565/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[566/2513] Linking target drivers/librte_common_dpaax.so.21.2
[567/2513] Generating symbol file lib/librte_sched.so.21.2.p/librte_sched.so.21.2.symbols
[568/2513] Linking target lib/librte_ethdev.so.21.2
[569/2513] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[570/2513] Linking target lib/librte_cmdline.so.21.2
[571/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[572/2513] Generating rte_common_octeontx2.pmd.c with a custom command
[573/2513] Generating symbol file drivers/librte_common_octeontx.so.21.2.p/librte_common_octeontx.so.21.2.symbols
[574/2513] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[575/2513] Linking target drivers/librte_common_cpt.so.21.2
[576/2513] Compiling C object drivers/librte_common_octeontx2.so.21.2.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[577/2513] Linking static target drivers/librte_common_octeontx2.a
[578/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[579/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[580/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[581/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[582/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[583/2513] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[584/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[585/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[586/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[587/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[588/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[589/2513] Generating symbol file drivers/librte_common_dpaax.so.21.2.p/librte_common_dpaax.so.21.2.symbols
[590/2513] Generating symbol file lib/librte_security.so.21.2.p/librte_security.so.21.2.symbols
[591/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[592/2513] Generating symbol file lib/librte_ethdev.so.21.2.p/librte_ethdev.so.21.2.symbols
[593/2513] Generating symbol file drivers/librte_common_cpt.so.21.2.p/librte_common_cpt.so.21.2.symbols
[594/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[595/2513] Linking target lib/librte_ipsec.so.21.2
[596/2513] Linking target lib/librte_metrics.so.21.2
[597/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[598/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[599/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[600/2513] Linking target lib/librte_eventdev.so.21.2
[601/2513] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[602/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[603/2513] Linking target lib/librte_gro.so.21.2
[604/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[605/2513] Linking target lib/librte_gso.so.21.2
[606/2513] Linking target lib/librte_kni.so.21.2
[607/2513] Linking target lib/librte_power.so.21.2
[608/2513] Linking target lib/librte_pdump.so.21.2
[609/2513] Linking target lib/librte_ip_frag.so.21.2
[610/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[611/2513] Linking target lib/librte_bpf.so.21.2
[612/2513] Linking target lib/librte_graph.so.21.2
[613/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[614/2513] Generating rte_common_sfc_efx_mingw with a custom command
[615/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[616/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[617/2513] Generating rte_common_sfc_efx_def with a custom command
[618/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[619/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[620/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[621/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[622/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[623/2513] Generating symbol file lib/librte_metrics.so.21.2.p/librte_metrics.so.21.2.symbols
[624/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[625/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[626/2513] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[627/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[628/2513] Generating symbol file lib/librte_gso.so.21.2.p/librte_gso.so.21.2.symbols
[629/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[630/2513] Linking target lib/librte_latencystats.so.21.2
[631/2513] Linking static target drivers/libtmp_rte_common_iavf.a
[632/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[633/2513] Generating symbol file lib/librte_kni.so.21.2.p/librte_kni.so.21.2.symbols
[634/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[635/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[636/2513] Linking target lib/librte_bitratestats.so.21.2
[637/2513] Generating rte_bus_dpaa_mingw with a custom command
[638/2513] Generating symbol file lib/librte_ip_frag.so.21.2.p/librte_ip_frag.so.21.2.symbols
[639/2513] Generating symbol file lib/librte_eventdev.so.21.2.p/librte_eventdev.so.21.2.symbols
[640/2513] Generating rte_bus_dpaa_def with a custom command
[641/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[642/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[643/2513] Generating symbol file lib/librte_graph.so.21.2.p/librte_graph.so.21.2.symbols
[644/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[645/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[646/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[647/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[648/2513] Linking target lib/librte_port.so.21.2
[649/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[650/2513] Generating rte_bus_fslmc_def with a custom command
[651/2513] Generating rte_bus_fslmc_mingw with a custom command
[652/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[653/2513] Generating rte_common_iavf.pmd.c with a custom command
[654/2513] Generating rte_bus_ifpga_def with a custom command
[655/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[656/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[657/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[658/2513] Compiling C object drivers/librte_common_iavf.so.21.2.p/meson-generated_.._rte_common_iavf.pmd.c.o
[659/2513] Generating rte_bus_ifpga_mingw with a custom command
[660/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[661/2513] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[662/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[663/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[664/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[665/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[666/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[667/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[668/2513] Generating rte_bus_pci_def with a custom command
[669/2513] Generating rte_bus_pci_mingw with a custom command
[670/2513] Generating rte_bus_vdev_def with a custom command
[671/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[672/2513] Generating rte_bus_vdev_mingw with a custom command
[673/2513] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[674/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[675/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[676/2513] Linking static target drivers/librte_common_iavf.a
[677/2513] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[678/2513] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[679/2513] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[680/2513] Generating rte_bus_vmbus_def with a custom command
[681/2513] Generating rte_bus_vmbus_mingw with a custom command
[682/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[683/2513] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[684/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[685/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[686/2513] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[687/2513] Linking static target drivers/libtmp_rte_bus_ifpga.a
[688/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[689/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[690/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[691/2513] Generating symbol file lib/librte_port.so.21.2.p/librte_port.so.21.2.symbols
[692/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[693/2513] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[694/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[695/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[696/2513] Linking target drivers/librte_common_octeontx2.so.21.2
[697/2513] Generating rte_common_qat_mingw with a custom command
[698/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[699/2513] Generating rte_common_qat_def with a custom command
[700/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[701/2513] Generating rte_mempool_bucket_mingw with a custom command
[702/2513] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[703/2513] Generating rte_mempool_bucket_def with a custom command
[704/2513] Generating rte_mempool_dpaa_def with a custom command
[705/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[706/2513] Linking target lib/librte_table.so.21.2
[707/2513] Generating rte_mempool_dpaa_mingw with a custom command
[708/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[709/2513] Generating rte_common_sfc_efx.pmd.c with a custom command
[710/2513] Generating rte_mempool_dpaa2_def with a custom command
[711/2513] Generating rte_mempool_dpaa2_mingw with a custom command
[712/2513] Linking static target drivers/libtmp_rte_bus_vdev.a
[713/2513] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[714/2513] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[715/2513] Compiling C object drivers/librte_common_sfc_efx.so.21.2.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[716/2513] Linking static target drivers/libtmp_rte_bus_vmbus.a
[717/2513] Generating rte_crypto_octeontx_mingw with a custom command
[718/2513] Generating rte_mempool_octeontx_def with a custom command
[719/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[720/2513] Linking static target drivers/librte_common_sfc_efx.a
[721/2513] Generating rte_mempool_octeontx_mingw with a custom command
[722/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[723/2513] Generating rte_bus_ifpga.pmd.c with a custom command
[724/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[725/2513] Compiling C object drivers/librte_bus_ifpga.so.21.2.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[726/2513] Generating rte_mempool_octeontx2_mingw with a custom command
[727/2513] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[728/2513] Generating rte_mempool_octeontx2_def with a custom command
[729/2513] Linking static target drivers/librte_bus_ifpga.a
[730/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[731/2513] Generating rte_mempool_ring_def with a custom command
[732/2513] Generating rte_mempool_ring_mingw with a custom command
[733/2513] Generating rte_mempool_stack_def with a custom command
[734/2513] Generating rte_mempool_stack_mingw with a custom command
[735/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[736/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[737/2513] Generating rte_net_af_packet_def with a custom command
[738/2513] Generating rte_bus_vdev.pmd.c with a custom command
[739/2513] Generating rte_net_af_packet_mingw with a custom command
[740/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[741/2513] Compiling C object drivers/librte_bus_vdev.so.21.2.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[742/2513] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[743/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[744/2513] Generating rte_bus_vmbus.pmd.c with a custom command
[745/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[746/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[747/2513] Linking static target drivers/librte_bus_vdev.a
[748/2513] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[749/2513] Compiling C object drivers/librte_bus_vmbus.so.21.2.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[750/2513] Linking static target drivers/librte_bus_vmbus.a
[751/2513] Generating symbol file lib/librte_table.so.21.2.p/librte_table.so.21.2.symbols
[752/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[753/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[754/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[755/2513] Generating symbol file drivers/librte_common_octeontx2.so.21.2.p/librte_common_octeontx2.so.21.2.symbols
[756/2513] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[757/2513] Linking static target drivers/libtmp_rte_bus_pci.a
[758/2513] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[759/2513] Linking target lib/librte_flow_classify.so.21.2
[760/2513] Generating rte_net_ark_def with a custom command
[761/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[762/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[763/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[764/2513] Linking target drivers/librte_common_iavf.so.21.2
[765/2513] Generating rte_net_ark_mingw with a custom command
[766/2513] Generating rte_net_atlantic_mingw with a custom command
[767/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[768/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[769/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[770/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[771/2513] Generating rte_net_atlantic_def with a custom command
[772/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[773/2513] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[774/2513] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[775/2513] Linking static target drivers/libtmp_rte_bus_fslmc.a
[776/2513] Generating rte_net_avp_def with a custom command
[777/2513] Generating rte_bus_pci.pmd.c with a custom command
[778/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[779/2513] Generating rte_net_avp_mingw with a custom command
[780/2513] Linking target drivers/librte_bus_ifpga.so.21.2
[781/2513] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[782/2513] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[783/2513] Compiling C object drivers/librte_bus_pci.so.21.2.p/meson-generated_.._rte_bus_pci.pmd.c.o
[784/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[785/2513] Linking static target drivers/librte_bus_pci.a
[786/2513] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[787/2513] Linking target drivers/librte_bus_vdev.so.21.2
[788/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[789/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[790/2513] Linking target drivers/librte_bus_vmbus.so.21.2
[791/2513] Generating symbol file drivers/librte_common_iavf.so.21.2.p/librte_common_iavf.so.21.2.symbols
[792/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[793/2513] Generating rte_net_axgbe_def with a custom command
[794/2513] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[795/2513] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[796/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[797/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[798/2513] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[799/2513] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[800/2513] Linking static target drivers/libtmp_rte_mempool_stack.a
[801/2513] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[802/2513] Generating rte_net_axgbe_mingw with a custom command
[803/2513] Generating rte_bus_fslmc.pmd.c with a custom command
[804/2513] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[805/2513] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[806/2513] Linking static target drivers/librte_bus_fslmc.a
[807/2513] Compiling C object drivers/librte_bus_fslmc.so.21.2.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[808/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[809/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[810/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[811/2513] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[812/2513] Generating rte_mempool_octeontx.pmd.c with a custom command
[813/2513] Generating rte_mempool_stack.pmd.c with a custom command
[814/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[815/2513] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[816/2513] Compiling C object drivers/librte_mempool_octeontx.so.21.2.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[817/2513] Linking static target drivers/librte_mempool_octeontx.a
[818/2513] Generating rte_mempool_dpaa.pmd.c with a custom command
[819/2513] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[820/2513] Generating rte_mempool_dpaa2.pmd.c with a custom command
[821/2513] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[822/2513] Compiling C object drivers/librte_mempool_dpaa.so.21.2.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[823/2513] Compiling C object drivers/librte_mempool_stack.so.21.2.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[824/2513] Linking static target drivers/librte_mempool_dpaa.a
[825/2513] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[826/2513] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[827/2513] Linking static target drivers/librte_mempool_stack.a
[828/2513] Linking static target drivers/librte_mempool_dpaa2.a
[829/2513] Compiling C object drivers/librte_mempool_dpaa2.so.21.2.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[830/2513] Generating symbol file drivers/librte_bus_vmbus.so.21.2.p/librte_bus_vmbus.so.21.2.symbols
[831/2513] Generating symbol file drivers/librte_bus_vdev.so.21.2.p/librte_bus_vdev.so.21.2.symbols
[832/2513] Linking target drivers/librte_bus_pci.so.21.2
[833/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[834/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[835/2513] Generating rte_mempool_octeontx2.pmd.c with a custom command
[836/2513] Generating rte_net_bond_mingw with a custom command
[837/2513] Generating rte_net_bond_def with a custom command
[838/2513] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[839/2513] Linking static target drivers/librte_mempool_octeontx2.a
[840/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[841/2513] Compiling C object drivers/librte_mempool_octeontx2.so.21.2.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[842/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[843/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[844/2513] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[845/2513] Linking static target drivers/libtmp_rte_net_ark.a
[846/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[847/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[848/2513] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[849/2513] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[850/2513] Generating rte_net_bnx2x_def with a custom command
[851/2513] Linking static target drivers/libtmp_rte_mempool_ring.a
[852/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[853/2513] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[854/2513] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[855/2513] Linking target drivers/librte_mempool_stack.so.21.2
[856/2513] Generating rte_net_bnx2x_mingw with a custom command
[857/2513] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[858/2513] Linking static target drivers/libtmp_rte_net_af_packet.a
[859/2513] Generating symbol file drivers/librte_bus_pci.so.21.2.p/librte_bus_pci.so.21.2.symbols
[860/2513] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[861/2513] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[862/2513] Linking static target drivers/libtmp_rte_bus_dpaa.a
[863/2513] Linking target drivers/librte_mempool_octeontx.so.21.2
[864/2513] Generating rte_mempool_ring.pmd.c with a custom command
[865/2513] Generating rte_net_ark.pmd.c with a custom command
[866/2513] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[867/2513] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[868/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[869/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[870/2513] Compiling C object drivers/librte_mempool_ring.so.21.2.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[871/2513] Linking static target drivers/librte_mempool_ring.a
[872/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[873/2513] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[874/2513] Compiling C object drivers/librte_net_ark.so.21.2.p/meson-generated_.._rte_net_ark.pmd.c.o
[875/2513] Generating rte_net_af_packet.pmd.c with a custom command
[876/2513] Linking static target drivers/librte_net_ark.a
[877/2513] Linking target drivers/librte_mempool_octeontx2.so.21.2
[878/2513] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[879/2513] Linking static target drivers/librte_net_af_packet.a
[880/2513] Compiling C object drivers/librte_net_af_packet.so.21.2.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[881/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[882/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[883/2513] Generating rte_bus_dpaa.pmd.c with a custom command
[884/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[885/2513] Compiling C object drivers/librte_bus_dpaa.so.21.2.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[886/2513] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[887/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[888/2513] Linking static target drivers/librte_bus_dpaa.a
[889/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[890/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[891/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[892/2513] Generating symbol file drivers/librte_mempool_octeontx.so.21.2.p/librte_mempool_octeontx.so.21.2.symbols
[893/2513] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[894/2513] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[895/2513] Generating symbol file drivers/librte_mempool_octeontx2.so.21.2.p/librte_mempool_octeontx2.so.21.2.symbols
[896/2513] Linking static target drivers/libtmp_rte_net_atlantic.a
[897/2513] Linking target drivers/librte_mempool_ring.so.21.2
[898/2513] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[899/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[900/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[901/2513] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[902/2513] Linking target drivers/librte_net_af_packet.so.21.2
[903/2513] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[904/2513] Linking static target drivers/libtmp_rte_net_axgbe.a
[905/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[906/2513] Linking target drivers/librte_net_ark.so.21.2
[907/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[908/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[909/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[910/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[911/2513] Generating rte_net_atlantic.pmd.c with a custom command
[912/2513] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[913/2513] Compiling C object drivers/librte_net_atlantic.so.21.2.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[914/2513] Linking static target drivers/librte_net_atlantic.a
[915/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[916/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[917/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[918/2513] Generating rte_net_axgbe.pmd.c with a custom command
[919/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[920/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[921/2513] Compiling C object drivers/librte_net_axgbe.so.21.2.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[922/2513] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[923/2513] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[924/2513] Linking static target drivers/librte_net_axgbe.a
[925/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[926/2513] Linking static target drivers/libtmp_rte_mempool_bucket.a
[927/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[928/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[929/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[930/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[931/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[932/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[933/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[934/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[935/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[936/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[937/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[938/2513] Generating rte_mempool_bucket.pmd.c with a custom command
[939/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[940/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[941/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[942/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[943/2513] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[944/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[945/2513] Compiling C object drivers/librte_mempool_bucket.so.21.2.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[946/2513] Linking static target drivers/librte_mempool_bucket.a
[947/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[948/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[949/2513] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[950/2513] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[951/2513] Linking static target drivers/libtmp_rte_common_qat.a
[952/2513] Linking target drivers/librte_net_atlantic.so.21.2
[953/2513] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[954/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[955/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[956/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[957/2513] Linking target drivers/librte_net_axgbe.so.21.2
[958/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[959/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[960/2513] Generating rte_common_qat.pmd.c with a custom command
[961/2513] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[962/2513] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[963/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[964/2513] Linking static target drivers/librte_common_qat.a
[965/2513] Compiling C object drivers/librte_common_qat.so.21.2.p/meson-generated_.._rte_common_qat.pmd.c.o
[966/2513] Linking target drivers/librte_mempool_bucket.so.21.2
[967/2513] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[968/2513] Generating rte_net_bnxt_mingw with a custom command
[969/2513] Linking target drivers/librte_bus_fslmc.so.21.2
[970/2513] Generating rte_net_bnxt_def with a custom command
[971/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[972/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[973/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[974/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[975/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[976/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[977/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[978/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[979/2513] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[980/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[981/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[982/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[983/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[984/2513] Linking target drivers/librte_common_qat.so.21.2
[985/2513] Generating rte_net_cxgbe_def with a custom command
[986/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[987/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[988/2513] Generating rte_net_cxgbe_mingw with a custom command
[989/2513] Generating symbol file drivers/librte_bus_fslmc.so.21.2.p/librte_bus_fslmc.so.21.2.symbols
[990/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[991/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[992/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[993/2513] Linking target drivers/librte_mempool_dpaa2.so.21.2
[994/2513] Generating rte_net_dpaa_def with a custom command
[995/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[996/2513] Generating rte_net_dpaa_mingw with a custom command
[997/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[998/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[999/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[1000/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1001/2513] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1002/2513] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1003/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1004/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1005/2513] Generating symbol file drivers/librte_mempool_dpaa2.so.21.2.p/librte_mempool_dpaa2.so.21.2.symbols
[1006/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[1007/2513] Linking target drivers/librte_bus_dpaa.so.21.2
[1008/2513] Linking target drivers/librte_common_sfc_efx.so.21.2
[1009/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1010/2513] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[1011/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[1012/2513] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1013/2513] Linking static target drivers/libtmp_rte_net_bond.a
[1014/2513] Linking static target lib/librte_node.a
[1015/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1016/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1017/2513] Generating rte_net_dpaa2_def with a custom command
[1018/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1019/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1020/2513] Generating rte_net_dpaa2_mingw with a custom command
[1021/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1022/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1023/2513] Generating rte_net_bond.pmd.c with a custom command
[1024/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1025/2513] Compiling C object drivers/librte_net_bond.so.21.2.p/meson-generated_.._rte_net_bond.pmd.c.o
[1026/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1027/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1028/2513] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1029/2513] Generating symbol file drivers/librte_common_sfc_efx.so.21.2.p/librte_common_sfc_efx.so.21.2.symbols
[1030/2513] Linking static target drivers/librte_net_bond.a
[1031/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1032/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1033/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1034/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1035/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1036/2513] Generating symbol file drivers/librte_bus_dpaa.so.21.2.p/librte_bus_dpaa.so.21.2.symbols
[1037/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1038/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1039/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1040/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1041/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1042/2513] Linking target drivers/librte_mempool_dpaa.so.21.2
[1043/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1044/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1045/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1046/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1047/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1048/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1049/2513] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[1050/2513] Linking static target drivers/libtmp_rte_net_avp.a
[1051/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1052/2513] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[1053/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1054/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1055/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1056/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1057/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1058/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1059/2513] Generating rte_net_e1000_def with a custom command
[1060/2513] Generating rte_net_e1000_mingw with a custom command
[1061/2513] Generating rte_net_ena_def with a custom command
[1062/2513] Generating rte_net_ena_mingw with a custom command
[1063/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1064/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1065/2513] Linking target lib/librte_node.so.21.2
[1066/2513] Generating rte_net_enetc_def with a custom command
[1067/2513] Generating rte_net_enetc_mingw with a custom command
[1068/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1069/2513] Generating rte_net_avp.pmd.c with a custom command
[1070/2513] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[1071/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1072/2513] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1073/2513] Linking static target drivers/librte_net_avp.a
[1074/2513] Generating symbol file drivers/librte_mempool_dpaa.so.21.2.p/librte_mempool_dpaa.so.21.2.symbols
[1075/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1076/2513] Compiling C object drivers/librte_net_avp.so.21.2.p/meson-generated_.._rte_net_avp.pmd.c.o
[1077/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1078/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1079/2513] Linking target drivers/librte_net_bond.so.21.2
[1080/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1081/2513] Generating rte_net_enic_def with a custom command
[1082/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1083/2513] Generating rte_net_enic_mingw with a custom command
[1084/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1085/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1086/2513] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1087/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1088/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1089/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1090/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1091/2513] Linking target drivers/librte_net_avp.so.21.2
[1092/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1093/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1094/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1095/2513] Generating rte_net_failsafe_mingw with a custom command
[1096/2513] Generating rte_net_failsafe_def with a custom command
[1097/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1098/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1099/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1100/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1101/2513] Compiling C object drivers/net/enic/libenic_avx2_lib.a.p/enic_rxtx_vec_avx2.c.o
[1102/2513] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1103/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1104/2513] Linking static target drivers/net/enic/libenic_avx2_lib.a
[1105/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1106/2513] Linking static target drivers/libtmp_rte_net_bnxt.a
[1107/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1108/2513] Generating rte_net_fm10k_def with a custom command
[1109/2513] Generating rte_net_fm10k_mingw with a custom command
[1110/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1111/2513] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1112/2513] Linking static target drivers/net/e1000/base/libe1000_base.a
[1113/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1114/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1115/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1116/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1117/2513] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1118/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1119/2513] Linking static target drivers/libtmp_rte_net_enetc.a
[1120/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1121/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1122/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1123/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1124/2513] Generating rte_net_enetc.pmd.c with a custom command
[1125/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1126/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1127/2513] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1128/2513] Compiling C object drivers/librte_net_enetc.so.21.2.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1129/2513] Linking static target drivers/librte_net_enetc.a
[1130/2513] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1131/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1132/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1133/2513] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1134/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1135/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1136/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1137/2513] Generating rte_net_i40e_mingw with a custom command
[1138/2513] Generating rte_net_i40e_def with a custom command
[1139/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1140/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1141/2513] Generating rte_net_bnxt.pmd.c with a custom command
[1142/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1143/2513] Compiling C object drivers/librte_net_bnxt.so.21.2.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1144/2513] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1145/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1146/2513] Linking static target drivers/librte_net_bnxt.a
[1147/2513] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1148/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1149/2513] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1150/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1151/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1152/2513] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1153/2513] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1154/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1155/2513] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1156/2513] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1157/2513] Linking target drivers/librte_net_enetc.so.21.2
[1158/2513] Linking static target drivers/libtmp_rte_net_e1000.a
[1159/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1160/2513] Generating rte_net_cxgbe.pmd.c with a custom command
[1161/2513] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1162/2513] Linking static target drivers/librte_net_cxgbe.a
[1163/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1164/2513] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1165/2513] Compiling C object drivers/librte_net_cxgbe.so.21.2.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1166/2513] Linking static target drivers/libtmp_rte_net_dpaa.a
[1167/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1168/2513] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1169/2513] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1170/2513] Linking static target drivers/libtmp_rte_net_ena.a
[1171/2513] Generating rte_net_e1000.pmd.c with a custom command
[1172/2513] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1173/2513] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1174/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1175/2513] Linking static target drivers/librte_net_e1000.a
[1176/2513] Compiling C object drivers/librte_net_e1000.so.21.2.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1177/2513] Linking static target drivers/libtmp_rte_net_enic.a
[1178/2513] Generating rte_net_bnx2x.pmd.c with a custom command
[1179/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1180/2513] Linking target drivers/librte_net_bnxt.so.21.2
[1181/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1182/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1183/2513] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1184/2513] Compiling C object drivers/librte_net_bnx2x.so.21.2.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1185/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1186/2513] Linking static target drivers/librte_net_bnx2x.a
[1187/2513] Generating rte_net_hinic_mingw with a custom command
[1188/2513] Generating rte_net_hinic_def with a custom command
[1189/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1190/2513] Generating rte_net_dpaa.pmd.c with a custom command
[1191/2513] Generating rte_net_ena.pmd.c with a custom command
[1192/2513] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1193/2513] Linking static target drivers/librte_net_dpaa.a
[1194/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1195/2513] Compiling C object drivers/librte_net_dpaa.so.21.2.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1196/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1197/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1198/2513] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1199/2513] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1200/2513] Compiling C object drivers/librte_net_ena.so.21.2.p/meson-generated_.._rte_net_ena.pmd.c.o
[1201/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1202/2513] Linking static target drivers/librte_net_ena.a
[1203/2513] Linking target drivers/librte_net_cxgbe.so.21.2
[1204/2513] Compiling C object drivers/net/i40e/libi40e_avx2_lib.a.p/i40e_rxtx_vec_avx2.c.o
[1205/2513] Linking static target drivers/net/i40e/libi40e_avx2_lib.a
[1206/2513] Generating rte_net_enic.pmd.c with a custom command
[1207/2513] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1208/2513] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1209/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1210/2513] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1211/2513] Compiling C object drivers/librte_net_enic.so.21.2.p/meson-generated_.._rte_net_enic.pmd.c.o
[1212/2513] Linking static target drivers/librte_net_enic.a
[1213/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1214/2513] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1215/2513] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1216/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1217/2513] Linking target drivers/librte_net_e1000.so.21.2
[1218/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1219/2513] Generating rte_net_hns3_def with a custom command
[1220/2513] Generating rte_net_hns3_mingw with a custom command
[1221/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1222/2513] Linking target drivers/librte_net_bnx2x.so.21.2
[1223/2513] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1224/2513] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1225/2513] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1226/2513] Linking static target drivers/libtmp_rte_net_fm10k.a
[1227/2513] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1228/2513] Linking target drivers/librte_net_ena.so.21.2
[1229/2513] Linking target drivers/librte_net_dpaa.so.21.2
[1230/2513] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1231/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1232/2513] Linking static target drivers/net/hinic/base/libhinic_base.a
[1233/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1234/2513] Linking target drivers/librte_net_enic.so.21.2
[1235/2513] Generating rte_net_fm10k.pmd.c with a custom command
[1236/2513] Generating rte_net_iavf_mingw with a custom command
[1237/2513] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1238/2513] Generating rte_net_iavf_def with a custom command
[1239/2513] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1240/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1241/2513] Compiling C object drivers/librte_net_fm10k.so.21.2.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1242/2513] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1243/2513] Linking static target drivers/librte_net_fm10k.a
[1244/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1245/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1246/2513] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1247/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1248/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1249/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1250/2513] Linking static target drivers/net/i40e/base/libi40e_base.a
[1251/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1252/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1253/2513] Generating symbol file drivers/librte_net_dpaa.so.21.2.p/librte_net_dpaa.so.21.2.symbols
[1254/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1255/2513] Generating rte_net_dpaa2.pmd.c with a custom command
[1256/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1257/2513] Compiling C object drivers/librte_net_dpaa2.so.21.2.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1258/2513] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1259/2513] Linking static target drivers/librte_net_dpaa2.a
[1260/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1261/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1262/2513] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1263/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1264/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1265/2513] Linking target drivers/librte_net_fm10k.so.21.2
[1266/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1267/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1268/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1269/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1270/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1271/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1272/2513] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1273/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1274/2513] Linking target drivers/librte_net_dpaa2.so.21.2
[1275/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1276/2513] Generating rte_net_ice_def with a custom command
[1277/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1278/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1279/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1280/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1281/2513] Generating rte_net_ice_mingw with a custom command
[1282/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1283/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1284/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1285/2513] Compiling C object drivers/net/iavf/libiavf_avx2_lib.a.p/iavf_rxtx_vec_avx2.c.o
[1286/2513] Generating symbol file drivers/librte_net_dpaa2.so.21.2.p/librte_net_dpaa2.so.21.2.symbols
[1287/2513] Linking static target drivers/net/iavf/libiavf_avx2_lib.a
[1288/2513] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1289/2513] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1290/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1291/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1292/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1293/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1294/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1295/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1296/2513] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1297/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1298/2513] Generating rte_net_igc_def with a custom command
[1299/2513] Linking static target drivers/net/ice/libice_avx512_lib.a
[1300/2513] Generating rte_net_igc_mingw with a custom command
[1301/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1302/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1303/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1304/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1305/2513] Generating rte_net_ionic_def with a custom command
[1306/2513] Generating rte_net_ionic_mingw with a custom command
[1307/2513] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1308/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1309/2513] Linking static target drivers/libtmp_rte_net_hinic.a
[1310/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1311/2513] Compiling C object drivers/net/ice/libice_avx2_lib.a.p/ice_rxtx_vec_avx2.c.o
[1312/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1313/2513] Linking static target drivers/net/ice/libice_avx2_lib.a
[1314/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1315/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1316/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1317/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1318/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1319/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1320/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1321/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1322/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1323/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1324/2513] Generating rte_net_hinic.pmd.c with a custom command
[1325/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1326/2513] Compiling C object drivers/librte_net_hinic.so.21.2.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1327/2513] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1328/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1329/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1330/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1331/2513] Linking static target drivers/librte_net_hinic.a
[1332/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1333/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1334/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1335/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1336/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1337/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1338/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1339/2513] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1340/2513] Generating rte_net_ixgbe_mingw with a custom command
[1341/2513] Generating rte_net_kni_def with a custom command
[1342/2513] Generating rte_net_ixgbe_def with a custom command
[1343/2513] Linking static target drivers/net/igc/base/libigc_base.a
[1344/2513] Generating rte_net_kni_mingw with a custom command
[1345/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1346/2513] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1347/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1348/2513] Linking static target drivers/libtmp_rte_net_hns3.a
[1349/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1350/2513] Generating rte_net_liquidio_mingw with a custom command
[1351/2513] Generating rte_net_liquidio_def with a custom command
[1352/2513] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1353/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1354/2513] Linking static target drivers/libtmp_rte_net_iavf.a
[1355/2513] Generating rte_net_memif_def with a custom command
[1356/2513] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1357/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1358/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1359/2513] Generating rte_net_memif_mingw with a custom command
[1360/2513] Linking target drivers/librte_net_hinic.so.21.2
[1361/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1362/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1363/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1364/2513] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1365/2513] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1366/2513] Linking static target drivers/libtmp_rte_net_i40e.a
[1367/2513] Generating rte_net_hns3.pmd.c with a custom command
[1368/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1369/2513] Generating rte_net_netvsc_mingw with a custom command
[1370/2513] Linking static target drivers/libtmp_rte_net_ionic.a
[1371/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1372/2513] Generating rte_net_netvsc_def with a custom command
[1373/2513] Compiling C object drivers/librte_net_hns3.so.21.2.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1374/2513] Generating rte_net_iavf.pmd.c with a custom command
[1375/2513] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1376/2513] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1377/2513] Linking static target drivers/librte_net_hns3.a
[1378/2513] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1379/2513] Linking static target drivers/librte_net_iavf.a
[1380/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1381/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1382/2513] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1383/2513] Linking static target drivers/libtmp_rte_net_kni.a
[1384/2513] Compiling C object drivers/librte_net_iavf.so.21.2.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1385/2513] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1386/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1387/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1388/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1389/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1390/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1391/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1392/2513] Generating rte_net_ionic.pmd.c with a custom command
[1393/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1394/2513] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1395/2513] Generating rte_net_kni.pmd.c with a custom command
[1396/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1397/2513] Compiling C object drivers/librte_net_ionic.so.21.2.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1398/2513] Linking static target drivers/librte_net_ionic.a
[1399/2513] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1400/2513] Compiling C object drivers/librte_net_kni.so.21.2.p/meson-generated_.._rte_net_kni.pmd.c.o
[1401/2513] Generating rte_net_nfp_def with a custom command
[1402/2513] Generating rte_net_nfp_mingw with a custom command
[1403/2513] Linking static target drivers/librte_net_kni.a
[1404/2513] Generating rte_net_null_mingw with a custom command
[1405/2513] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1406/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1407/2513] Generating rte_net_null_def with a custom command
[1408/2513] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1409/2513] Linking static target drivers/libtmp_rte_net_igc.a
[1410/2513] Generating rte_net_i40e.pmd.c with a custom command
[1411/2513] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1412/2513] Linking static target drivers/librte_net_i40e.a
[1413/2513] Linking target drivers/librte_net_hns3.so.21.2
[1414/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1415/2513] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1416/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1417/2513] Compiling C object drivers/librte_net_i40e.so.21.2.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1418/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1419/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1420/2513] Generating rte_net_octeontx_def with a custom command
[1421/2513] Linking target drivers/librte_net_iavf.so.21.2
[1422/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1423/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1424/2513] Generating rte_net_igc.pmd.c with a custom command
[1425/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1426/2513] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1427/2513] Generating rte_net_octeontx_mingw with a custom command
[1428/2513] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1429/2513] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1430/2513] Compiling C object drivers/librte_net_igc.so.21.2.p/meson-generated_.._rte_net_igc.pmd.c.o
[1431/2513] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1432/2513] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1433/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1434/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1435/2513] Linking static target drivers/librte_net_igc.a
[1436/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1437/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1438/2513] Linking static target drivers/libtmp_rte_net_failsafe.a
[1439/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1440/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1441/2513] Linking target drivers/librte_net_ionic.so.21.2
[1442/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1443/2513] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1444/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1445/2513] Linking static target drivers/libtmp_rte_net_ice.a
[1446/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1447/2513] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1448/2513] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1449/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1450/2513] Linking static target drivers/libtmp_rte_net_liquidio.a
[1451/2513] Linking target drivers/librte_net_kni.so.21.2
[1452/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1453/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1454/2513] Generating rte_net_failsafe.pmd.c with a custom command
[1455/2513] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1456/2513] Compiling C object drivers/librte_net_failsafe.so.21.2.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1457/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1458/2513] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1459/2513] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1460/2513] Linking static target drivers/librte_net_failsafe.a
[1461/2513] Linking target drivers/librte_net_i40e.so.21.2
[1462/2513] Generating rte_net_liquidio.pmd.c with a custom command
[1463/2513] Linking target drivers/librte_net_igc.so.21.2
[1464/2513] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1465/2513] Compiling C object drivers/librte_net_liquidio.so.21.2.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1466/2513] Linking static target drivers/librte_net_liquidio.a
[1467/2513] Generating rte_net_octeontx2_def with a custom command
[1468/2513] Generating rte_net_octeontx2_mingw with a custom command
[1469/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1470/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1471/2513] Generating rte_net_ice.pmd.c with a custom command
[1472/2513] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1473/2513] Compiling C object drivers/librte_net_ice.so.21.2.p/meson-generated_.._rte_net_ice.pmd.c.o
[1474/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1475/2513] Generating rte_net_octeontx_ep_def with a custom command
[1476/2513] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1477/2513] Linking static target drivers/libtmp_rte_net_memif.a
[1478/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1479/2513] Generating rte_net_octeontx_ep_mingw with a custom command
[1480/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1481/2513] Generating rte_net_pcap_def with a custom command
[1482/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1483/2513] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1484/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1485/2513] Generating rte_net_pcap_mingw with a custom command
[1486/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1487/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1488/2513] Linking target drivers/librte_net_failsafe.so.21.2
[1489/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1490/2513] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1491/2513] Generating rte_net_pfe_def with a custom command
[1492/2513] Generating rte_net_pfe_mingw with a custom command
[1493/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1494/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1495/2513] Generating rte_net_memif.pmd.c with a custom command
[1496/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1497/2513] Linking target drivers/librte_net_liquidio.so.21.2
[1498/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1499/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1500/2513] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1501/2513] Linking static target drivers/librte_net_memif.a
[1502/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1503/2513] Compiling C object drivers/librte_net_memif.so.21.2.p/meson-generated_.._rte_net_memif.pmd.c.o
[1504/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1505/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1506/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1507/2513] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1508/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1509/2513] Linking static target drivers/librte_net_ice.a
[1510/2513] Linking static target drivers/net/ice/base/libice_base.a
[1511/2513] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1512/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1513/2513] Linking static target drivers/libtmp_rte_net_octeontx.a
[1514/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1515/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1516/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1517/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1518/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1519/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1520/2513] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1521/2513] Generating rte_net_qede_def with a custom command
[1522/2513] Generating rte_net_qede_mingw with a custom command
[1523/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1524/2513] Linking target drivers/librte_net_memif.so.21.2
[1525/2513] Generating rte_net_octeontx.pmd.c with a custom command
[1526/2513] Generating rte_net_ring_mingw with a custom command
[1527/2513] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1528/2513] Generating rte_net_ring_def with a custom command
[1529/2513] Compiling C object drivers/librte_net_octeontx.so.21.2.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1530/2513] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1531/2513] Linking static target drivers/librte_net_octeontx.a
[1532/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1533/2513] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1534/2513] Linking static target drivers/libtmp_rte_net_null.a
[1535/2513] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1536/2513] Linking static target drivers/libtmp_rte_net_nfp.a
[1537/2513] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1538/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1539/2513] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1540/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1541/2513] Linking static target drivers/libtmp_rte_net_netvsc.a
[1542/2513] Linking target drivers/librte_net_ice.so.21.2
[1543/2513] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1544/2513] Generating rte_net_null.pmd.c with a custom command
[1545/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1546/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1547/2513] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1548/2513] Compiling C object drivers/librte_net_null.so.21.2.p/meson-generated_.._rte_net_null.pmd.c.o
[1549/2513] Linking static target drivers/librte_net_null.a
[1550/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1551/2513] Generating rte_net_nfp.pmd.c with a custom command
[1552/2513] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1553/2513] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1554/2513] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1555/2513] Linking static target drivers/librte_net_nfp.a
[1556/2513] Compiling C object drivers/librte_net_nfp.so.21.2.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1557/2513] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1558/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1559/2513] Generating rte_net_netvsc.pmd.c with a custom command
[1560/2513] Linking static target drivers/libtmp_rte_net_pfe.a
[1561/2513] Compiling C object drivers/librte_net_octeontx_ep.so.21.2.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1562/2513] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1563/2513] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1564/2513] Compiling C object drivers/librte_net_netvsc.so.21.2.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1565/2513] Linking static target drivers/librte_net_octeontx_ep.a
[1566/2513] Linking target drivers/librte_net_octeontx.so.21.2
[1567/2513] Linking static target drivers/librte_net_netvsc.a
[1568/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1569/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1570/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1571/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1572/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1573/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1574/2513] Generating rte_net_pfe.pmd.c with a custom command
[1575/2513] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1576/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1577/2513] Linking static target drivers/librte_net_pfe.a
[1578/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1579/2513] Compiling C object drivers/librte_net_pfe.so.21.2.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1580/2513] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1581/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1582/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1583/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1584/2513] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1585/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1586/2513] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1587/2513] Linking target drivers/librte_net_null.so.21.2
[1588/2513] Generating rte_net_sfc_def with a custom command
[1589/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1590/2513] Generating symbol file drivers/librte_net_octeontx.so.21.2.p/librte_net_octeontx.so.21.2.symbols
[1591/2513] Linking target drivers/librte_net_octeontx_ep.so.21.2
[1592/2513] Linking target drivers/librte_net_nfp.so.21.2
[1593/2513] Generating rte_net_sfc_mingw with a custom command
[1594/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1595/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1596/2513] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1597/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1598/2513] Linking target drivers/librte_net_netvsc.so.21.2
[1599/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1600/2513] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1601/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1602/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1603/2513] Linking target drivers/librte_net_pfe.so.21.2
[1604/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1605/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1606/2513] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1607/2513] Linking static target drivers/libtmp_rte_net_ring.a
[1608/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1609/2513] Generating rte_net_softnic_mingw with a custom command
[1610/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1611/2513] Generating rte_net_softnic_def with a custom command
[1612/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1613/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1614/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1615/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1616/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1617/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1618/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1619/2513] Generating rte_net_ring.pmd.c with a custom command
[1620/2513] Generating rte_net_tap_def with a custom command
[1621/2513] Generating rte_net_tap_mingw with a custom command
[1622/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1623/2513] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1624/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1625/2513] Compiling C object drivers/librte_net_ring.so.21.2.p/meson-generated_.._rte_net_ring.pmd.c.o
[1626/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1627/2513] Linking static target drivers/librte_net_ring.a
[1628/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1629/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1630/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1631/2513] Generating rte_net_thunderx_def with a custom command
[1632/2513] Generating rte_net_thunderx_mingw with a custom command
[1633/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1634/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1635/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1636/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1637/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1638/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1639/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1640/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1641/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1642/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1643/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1644/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1645/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1646/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1647/2513] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1648/2513] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1649/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1650/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1651/2513] Generating rte_net_txgbe_def with a custom command
[1652/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1653/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[1654/2513] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1655/2513] Generating rte_net_txgbe_mingw with a custom command
[1656/2513] Generating rte_net_vdev_netvsc_def with a custom command
[1657/2513] Linking target drivers/librte_net_ring.so.21.2
[1658/2513] Generating rte_net_vhost_mingw with a custom command
[1659/2513] Generating rte_net_vdev_netvsc_mingw with a custom command
[1660/2513] Generating rte_net_vhost_def with a custom command
[1661/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1662/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1663/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1664/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1665/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1666/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1667/2513] Generating rte_net_ixgbe.pmd.c with a custom command
[1668/2513] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1669/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1670/2513] Compiling C object drivers/librte_net_ixgbe.so.21.2.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1671/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1672/2513] Linking static target drivers/librte_net_ixgbe.a
[1673/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1674/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1675/2513] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1676/2513] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1677/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1678/2513] Generating rte_net_virtio_mingw with a custom command
[1679/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1680/2513] Generating rte_net_virtio_def with a custom command
[1681/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1682/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1683/2513] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1684/2513] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1685/2513] Generating rte_net_vmxnet3_mingw with a custom command
[1686/2513] Generating rte_net_vmxnet3_def with a custom command
[1687/2513] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1688/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1689/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1690/2513] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1691/2513] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1692/2513] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1693/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1694/2513] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1695/2513] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1696/2513] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1697/2513] Linking static target drivers/libtmp_rte_net_qede.a
[1698/2513] Generating rte_raw_dpaa2_qdma_def with a custom command
[1699/2513] Linking static target drivers/net/qede/base/libqede_base.a
[1700/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1701/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1702/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1703/2513] Generating rte_raw_ioat_mingw with a custom command
[1704/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1705/2513] Generating rte_raw_ioat_def with a custom command
[1706/2513] Generating rte_raw_ntb_def with a custom command
[1707/2513] Generating rte_raw_ntb_mingw with a custom command
[1708/2513] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1709/2513] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1710/2513] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1711/2513] Compiling C object drivers/librte_net_vdev_netvsc.so.21.2.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1712/2513] Linking static target drivers/librte_net_vdev_netvsc.a
[1713/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1714/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1715/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1716/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1717/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1718/2513] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1719/2513] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1720/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1721/2513] Generating rte_raw_octeontx2_dma_def with a custom command
[1722/2513] Linking static target drivers/libtmp_rte_net_pcap.a
[1723/2513] Generating rte_net_qede.pmd.c with a custom command
[1724/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1725/2513] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1726/2513] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1727/2513] Compiling C object drivers/librte_net_qede.so.21.2.p/meson-generated_.._rte_net_qede.pmd.c.o
[1728/2513] Linking static target drivers/librte_net_qede.a
[1729/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1730/2513] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.2.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1731/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1732/2513] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1733/2513] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1734/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1735/2513] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1736/2513] Linking target drivers/librte_net_ixgbe.so.21.2
[1737/2513] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1738/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1739/2513] Generating rte_raw_octeontx2_ep_def with a custom command
[1740/2513] Generating rte_raw_skeleton_mingw with a custom command
[1741/2513] Generating rte_raw_skeleton_def with a custom command
[1742/2513] Generating rte_net_pcap.pmd.c with a custom command
[1743/2513] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1744/2513] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1745/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1746/2513] Linking static target drivers/librte_net_pcap.a
[1747/2513] Compiling C object drivers/librte_net_pcap.so.21.2.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1748/2513] Linking static target drivers/libtmp_rte_net_sfc.a
[1749/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1750/2513] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1751/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1752/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1753/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1754/2513] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1755/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[1756/2513] Linking static target drivers/libtmp_rte_net_vhost.a
[1757/2513] Linking target drivers/librte_net_vdev_netvsc.so.21.2
[1758/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1759/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1760/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1761/2513] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1762/2513] Linking static target drivers/libtmp_rte_net_softnic.a
[1763/2513] Generating rte_crypto_bcmfs_mingw with a custom command
[1764/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1765/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1766/2513] Generating rte_crypto_bcmfs_def with a custom command
[1767/2513] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1768/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1769/2513] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[1770/2513] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1771/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1772/2513] Generating rte_net_vhost.pmd.c with a custom command
[1773/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1774/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1775/2513] Linking static target drivers/libtmp_rte_net_thunderx.a
[1776/2513] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.2
[1777/2513] Generating rte_crypto_caam_jr_mingw with a custom command
[1778/2513] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1779/2513] Compiling C object drivers/librte_net_vhost.so.21.2.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1780/2513] Generating rte_crypto_caam_jr_def with a custom command
[1781/2513] Linking static target drivers/librte_net_vhost.a
[1782/2513] Linking target drivers/librte_net_qede.so.21.2
[1783/2513] Generating rte_crypto_dpaa_sec_def with a custom command
[1784/2513] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1785/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1786/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1787/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1788/2513] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1789/2513] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1790/2513] Generating rte_crypto_dpaa2_sec_def with a custom command
[1791/2513] Generating rte_crypto_nitrox_mingw with a custom command
[1792/2513] Generating rte_net_sfc.pmd.c with a custom command
[1793/2513] Generating rte_net_softnic.pmd.c with a custom command
[1794/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1795/2513] Generating rte_crypto_nitrox_def with a custom command
[1796/2513] Linking target drivers/librte_net_pcap.so.21.2
[1797/2513] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1798/2513] Linking static target drivers/librte_net_sfc.a
[1799/2513] Compiling C object drivers/librte_net_softnic.so.21.2.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1800/2513] Compiling C object drivers/librte_net_sfc.so.21.2.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1801/2513] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1802/2513] Generating rte_crypto_null_mingw with a custom command
[1803/2513] Generating rte_crypto_null_def with a custom command
[1804/2513] Generating rte_net_thunderx.pmd.c with a custom command
[1805/2513] Linking static target drivers/librte_net_softnic.a
[1806/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1807/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1808/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1809/2513] Compiling C object drivers/librte_net_thunderx.so.21.2.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1810/2513] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1811/2513] Generating rte_crypto_octeontx_def with a custom command
[1812/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1813/2513] Linking static target drivers/librte_net_thunderx.a
[1814/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1815/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1816/2513] Generating rte_crypto_octeontx2_mingw with a custom command
[1817/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1818/2513] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1819/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1820/2513] Generating rte_crypto_octeontx2_def with a custom command
[1821/2513] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1822/2513] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1823/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1824/2513] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1825/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1826/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1827/2513] Linking static target drivers/libtmp_rte_raw_ioat.a
[1828/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1829/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1830/2513] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1831/2513] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1832/2513] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1833/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1834/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1835/2513] Generating rte_raw_skeleton.pmd.c with a custom command
[1836/2513] Compiling C object drivers/librte_raw_skeleton.so.21.2.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1837/2513] Linking target drivers/librte_net_sfc.so.21.2
[1838/2513] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[1839/2513] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1840/2513] Linking static target drivers/librte_raw_skeleton.a
[1841/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1842/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1843/2513] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1844/2513] Generating rte_crypto_scheduler_mingw with a custom command
[1845/2513] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1846/2513] Generating rte_crypto_scheduler_def with a custom command
[1847/2513] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1848/2513] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[1849/2513] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1850/2513] Generating rte_crypto_virtio_mingw with a custom command
[1851/2513] Generating rte_crypto_virtio_def with a custom command
[1852/2513] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1853/2513] Linking target drivers/librte_net_thunderx.so.21.2
[1854/2513] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.2.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1855/2513] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1856/2513] Generating rte_raw_ioat.pmd.c with a custom command
[1857/2513] Linking static target drivers/librte_raw_octeontx2_ep.a
[1858/2513] Compiling C object drivers/librte_raw_ioat.so.21.2.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1859/2513] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1860/2513] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1861/2513] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.2.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1862/2513] Linking static target drivers/librte_raw_ioat.a
[1863/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1864/2513] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1865/2513] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1866/2513] Generating rte_compress_octeontx_mingw with a custom command
[1867/2513] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1868/2513] Generating rte_crypto_nitrox.pmd.c with a custom command
[1869/2513] Linking static target drivers/librte_raw_octeontx2_dma.a
[1870/2513] Compiling C object drivers/librte_crypto_bcmfs.so.21.2.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1871/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1872/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1873/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1874/2513] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1875/2513] Linking static target drivers/librte_crypto_bcmfs.a
[1876/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1877/2513] Compiling C object drivers/librte_crypto_nitrox.so.21.2.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1878/2513] Generating rte_compress_octeontx_def with a custom command
[1879/2513] Linking static target drivers/librte_crypto_nitrox.a
[1880/2513] Generating rte_compress_zlib_mingw with a custom command
[1881/2513] Generating rte_compress_zlib_def with a custom command
[1882/2513] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1883/2513] Linking static target drivers/libtmp_rte_net_tap.a
[1884/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1885/2513] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[1886/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1887/2513] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[1888/2513] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1889/2513] Generating rte_regex_octeontx2_def with a custom command
[1890/2513] Linking target drivers/librte_raw_skeleton.so.21.2
[1891/2513] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1892/2513] Generating rte_regex_octeontx2_mingw with a custom command
[1893/2513] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1894/2513] Linking target drivers/librte_raw_ioat.so.21.2
[1895/2513] Linking target drivers/librte_raw_octeontx2_ep.so.21.2
[1896/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1897/2513] Generating rte_vdpa_ifc_def with a custom command
[1898/2513] Generating rte_net_tap.pmd.c with a custom command
[1899/2513] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1900/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1901/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1902/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[1903/2513] Compiling C object drivers/librte_net_tap.so.21.2.p/meson-generated_.._rte_net_tap.pmd.c.o
[1904/2513] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[1905/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1906/2513] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1907/2513] Generating rte_vdpa_ifc_mingw with a custom command
[1908/2513] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[1909/2513] Linking static target drivers/librte_net_tap.a
[1910/2513] Linking static target drivers/libtmp_rte_net_virtio.a
[1911/2513] Linking target drivers/librte_crypto_bcmfs.so.21.2
[1912/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1913/2513] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[1914/2513] Linking target drivers/librte_raw_octeontx2_dma.so.21.2
[1915/2513] Generating rte_event_dlb_def with a custom command
[1916/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1917/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1918/2513] Generating rte_event_dlb_mingw with a custom command
[1919/2513] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1920/2513] Linking target drivers/librte_crypto_nitrox.so.21.2
[1921/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1922/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[1923/2513] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.2.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1924/2513] Linking static target drivers/librte_raw_dpaa2_qdma.a
[1925/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1926/2513] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1927/2513] Linking static target drivers/libtmp_rte_crypto_null.a
[1928/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1929/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1930/2513] Generating rte_net_virtio.pmd.c with a custom command
[1931/2513] Generating rte_event_dlb2_def with a custom command
[1932/2513] Compiling C object drivers/librte_net_virtio.so.21.2.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1933/2513] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[1934/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1935/2513] Linking static target drivers/librte_net_virtio.a
[1936/2513] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[1937/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[1938/2513] Generating rte_event_dlb2_mingw with a custom command
[1939/2513] Generating rte_crypto_null.pmd.c with a custom command
[1940/2513] Generating rte_event_dpaa_mingw with a custom command
[1941/2513] Linking target drivers/librte_net_tap.so.21.2
[1942/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[1943/2513] Compiling C object drivers/librte_crypto_null.so.21.2.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1944/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1945/2513] Generating rte_event_dpaa_def with a custom command
[1946/2513] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1947/2513] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1948/2513] Generating rte_event_dpaa2_mingw with a custom command
[1949/2513] Generating rte_event_dpaa2_def with a custom command
[1950/2513] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1951/2513] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1952/2513] Linking static target drivers/librte_crypto_null.a
[1953/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1954/2513] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1955/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1956/2513] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[1957/2513] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[1958/2513] Linking static target drivers/libtmp_rte_crypto_virtio.a
[1959/2513] Generating rte_net_vmxnet3.pmd.c with a custom command
[1960/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1961/2513] Compiling C object drivers/librte_net_vmxnet3.so.21.2.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1962/2513] Linking target drivers/librte_raw_dpaa2_qdma.so.21.2
[1963/2513] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1964/2513] Linking static target drivers/librte_net_vmxnet3.a
[1965/2513] Generating rte_regex_octeontx2.pmd.c with a custom command
[1966/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1967/2513] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1968/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1969/2513] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1970/2513] Compiling C object drivers/librte_regex_octeontx2.so.21.2.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1971/2513] Linking static target drivers/librte_regex_octeontx2.a
[1972/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1973/2513] Linking target drivers/librte_net_virtio.so.21.2
[1974/2513] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[1975/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1976/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1977/2513] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1978/2513] Linking static target drivers/libtmp_rte_compress_zlib.a
[1979/2513] Generating rte_event_octeontx2_def with a custom command
[1980/2513] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1981/2513] Generating rte_event_octeontx2_mingw with a custom command
[1982/2513] Generating rte_crypto_virtio.pmd.c with a custom command
[1983/2513] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[1984/2513] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1985/2513] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1986/2513] Linking static target drivers/librte_crypto_virtio.a
[1987/2513] Compiling C object drivers/librte_crypto_virtio.so.21.2.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[1988/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1989/2513] Linking target drivers/librte_crypto_null.so.21.2
[1990/2513] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1991/2513] Generating rte_compress_zlib.pmd.c with a custom command
[1992/2513] Generating rte_vdpa_ifc.pmd.c with a custom command
[1993/2513] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1994/2513] Compiling C object drivers/librte_compress_zlib.so.21.2.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1995/2513] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[1996/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1997/2513] Generating rte_compress_octeontx.pmd.c with a custom command
[1998/2513] Linking static target drivers/librte_compress_zlib.a
[1999/2513] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2000/2513] Compiling C object drivers/librte_vdpa_ifc.so.21.2.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2001/2513] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2002/2513] Linking target drivers/librte_net_vmxnet3.so.21.2
[2003/2513] Compiling C object drivers/librte_compress_octeontx.so.21.2.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2004/2513] Linking static target drivers/librte_vdpa_ifc.a
[2005/2513] Linking static target drivers/librte_compress_octeontx.a
[2006/2513] Generating rte_event_opdl_mingw with a custom command
[2007/2513] Generating rte_event_opdl_def with a custom command
[2008/2513] Generating rte_event_skeleton_def with a custom command
[2009/2513] Generating rte_event_skeleton_mingw with a custom command
[2010/2513] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2011/2513] Linking target drivers/librte_regex_octeontx2.so.21.2
[2012/2513] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2013/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[2014/2513] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2015/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2016/2513] Linking static target drivers/libtmp_rte_event_dpaa.a
[2017/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2018/2513] Linking target drivers/librte_crypto_virtio.so.21.2
[2019/2513] Generating rte_event_sw_def with a custom command
[2020/2513] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2021/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2022/2513] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2023/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2024/2513] Generating rte_event_sw_mingw with a custom command
[2025/2513] Linking target drivers/librte_compress_octeontx.so.21.2
[2026/2513] Generating rte_event_dpaa.pmd.c with a custom command
[2027/2513] Linking target drivers/librte_compress_zlib.so.21.2
[2028/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2029/2513] Compiling C object drivers/librte_event_dpaa.so.21.2.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2030/2513] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2031/2513] Linking static target drivers/librte_event_dpaa.a
[2032/2513] Generating rte_event_dsw_mingw with a custom command
[2033/2513] Generating rte_event_dsw_def with a custom command
[2034/2513] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2035/2513] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2036/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2037/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2038/2513] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2039/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2040/2513] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2041/2513] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2042/2513] Linking static target drivers/libtmp_rte_net_txgbe.a
[2043/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2044/2513] Generating rte_event_octeontx_mingw with a custom command
[2045/2513] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2046/2513] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2047/2513] Generating rte_event_octeontx_def with a custom command
[2048/2513] Linking static target drivers/libtmp_rte_event_skeleton.a
[2049/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2050/2513] Generating rte_event_dpaa2.pmd.c with a custom command
[2051/2513] Generating rte_baseband_null_def with a custom command
[2052/2513] Compiling C object drivers/librte_event_dpaa2.so.21.2.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2053/2513] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2054/2513] Generating rte_baseband_null_mingw with a custom command
[2055/2513] Linking static target drivers/librte_event_dpaa2.a
[2056/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2057/2513] Generating rte_event_skeleton.pmd.c with a custom command
[2058/2513] Generating rte_baseband_turbo_sw_def with a custom command
[2059/2513] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2060/2513] Linking static target drivers/librte_event_skeleton.a
[2061/2513] Compiling C object drivers/librte_event_skeleton.so.21.2.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2062/2513] Generating rte_crypto_scheduler.pmd.c with a custom command
[2063/2513] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2064/2513] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2065/2513] Compiling C object drivers/librte_crypto_scheduler.so.21.2.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2066/2513] Generating rte_baseband_turbo_sw_mingw with a custom command
[2067/2513] Generating rte_net_txgbe.pmd.c with a custom command
[2068/2513] Linking static target drivers/librte_crypto_scheduler.a
[2069/2513] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2070/2513] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2071/2513] Compiling C object drivers/librte_net_txgbe.so.21.2.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2072/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[2073/2513] Linking static target drivers/librte_net_txgbe.a
[2074/2513] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2075/2513] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[2076/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2077/2513] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2078/2513] Linking static target drivers/libtmp_rte_raw_ntb.a
[2079/2513] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2080/2513] Generating rte_baseband_acc100_def with a custom command
[2081/2513] Generating rte_baseband_acc100_mingw with a custom command
[2082/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2083/2513] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2084/2513] Generating rte_raw_ntb.pmd.c with a custom command
[2085/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2086/2513] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2087/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2088/2513] Linking static target drivers/librte_raw_ntb.a
[2089/2513] Compiling C object drivers/librte_raw_ntb.so.21.2.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[2090/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2091/2513] Linking target drivers/librte_event_skeleton.so.21.2
[2092/2513] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2093/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2094/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2095/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2096/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2097/2513] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2098/2513] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[2099/2513] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2100/2513] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2101/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2102/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2103/2513] Linking static target drivers/libtmp_rte_event_dlb.a
[2104/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2105/2513] Linking target drivers/librte_crypto_scheduler.so.21.2
[2106/2513] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2107/2513] Linking target drivers/librte_net_txgbe.so.21.2
[2108/2513] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2109/2513] Generating rte_event_dlb.pmd.c with a custom command
[2110/2513] Linking target drivers/librte_raw_ntb.so.21.2
[2111/2513] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2112/2513] Compiling C object drivers/librte_event_dlb.so.21.2.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2113/2513] Linking static target drivers/librte_event_dlb.a
[2114/2513] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2115/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2116/2513] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2117/2513] Compiling C object drivers/librte_crypto_caam_jr.so.21.2.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2118/2513] Linking static target drivers/libtmp_rte_event_dlb2.a
[2119/2513] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2120/2513] Linking static target drivers/librte_crypto_caam_jr.a
[2121/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2122/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2123/2513] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2124/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2125/2513] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2126/2513] Generating rte_event_dlb2.pmd.c with a custom command
[2127/2513] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2128/2513] Compiling C object drivers/librte_event_dlb2.so.21.2.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2129/2513] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2130/2513] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2131/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2132/2513] Linking static target drivers/librte_event_dlb2.a
[2133/2513] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2134/2513] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2135/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2136/2513] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2137/2513] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2138/2513] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2139/2513] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2140/2513] Linking target drivers/librte_event_dlb.so.21.2
[2141/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2142/2513] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2143/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2144/2513] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2145/2513] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2146/2513] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.2.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2147/2513] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2148/2513] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2149/2513] Linking target drivers/librte_crypto_caam_jr.so.21.2
[2150/2513] Linking static target drivers/libtmp_rte_baseband_null.a
[2151/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2152/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2153/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2154/2513] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2155/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2156/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2157/2513] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2158/2513] Generating rte_baseband_null.pmd.c with a custom command
[2159/2513] Linking target drivers/librte_event_dlb2.so.21.2
[2160/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2161/2513] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2162/2513] Linking static target drivers/librte_baseband_null.a
[2163/2513] Compiling C object drivers/librte_baseband_null.so.21.2.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2164/2513] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.2
[2165/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2166/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2167/2513] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2168/2513] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2169/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2170/2513] Linking static target drivers/libtmp_rte_event_octeontx.a
[2171/2513] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.2
[2172/2513] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2173/2513] Linking static target drivers/libtmp_rte_event_sw.a
[2174/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2175/2513] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2176/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2177/2513] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2178/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2179/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2180/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2181/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2182/2513] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2183/2513] Generating rte_event_sw.pmd.c with a custom command
[2184/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2185/2513] Linking target drivers/librte_baseband_null.so.21.2
[2186/2513] Compiling C object drivers/librte_event_sw.so.21.2.p/meson-generated_.._rte_event_sw.pmd.c.o
[2187/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2188/2513] Generating rte_event_octeontx.pmd.c with a custom command
[2189/2513] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2190/2513] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2191/2513] Linking static target drivers/librte_event_sw.a
[2192/2513] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2193/2513] Linking static target drivers/librte_event_octeontx.a
[2194/2513] Compiling C object drivers/librte_event_octeontx.so.21.2.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2195/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2196/2513] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2197/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2198/2513] Compiling C object drivers/librte_baseband_turbo_sw.so.21.2.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2199/2513] Linking static target drivers/librte_baseband_turbo_sw.a
[2200/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2201/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2202/2513] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2203/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2204/2513] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2205/2513] Linking static target drivers/libtmp_rte_event_dsw.a
[2206/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2207/2513] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2208/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2209/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2210/2513] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2211/2513] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2212/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2213/2513] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2214/2513] Linking target drivers/librte_event_sw.so.21.2
[2215/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2216/2513] Linking target drivers/librte_baseband_turbo_sw.so.21.2
[2217/2513] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2218/2513] Linking target drivers/librte_event_octeontx.so.21.2
[2219/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2220/2513] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2221/2513] Generating rte_event_dsw.pmd.c with a custom command
[2222/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2223/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2224/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2225/2513] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2226/2513] Compiling C object drivers/librte_event_dsw.so.21.2.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2227/2513] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2228/2513] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2229/2513] Linking static target drivers/librte_event_dsw.a
[2230/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2231/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2232/2513] Linking static target drivers/librte_crypto_dpaa_sec.a
[2233/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2234/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2235/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2236/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2237/2513] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2238/2513] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2239/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2240/2513] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2241/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2242/2513] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.2.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2243/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2244/2513] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2245/2513] Linking target drivers/librte_event_dsw.so.21.2
[2246/2513] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2247/2513] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2248/2513] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2249/2513] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2250/2513] Linking target drivers/librte_crypto_dpaa_sec.so.21.2
[2251/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2252/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2253/2513] Compiling C object app/test/dpdk-test.p/test.c.o
[2254/2513] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2255/2513] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2256/2513] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2257/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2258/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2259/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2260/2513] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2261/2513] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2262/2513] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2263/2513] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2264/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2265/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2266/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2267/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2268/2513] Linking target drivers/librte_crypto_dpaa2_sec.so.21.2
[2269/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2270/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2271/2513] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2272/2513] Generating rte_baseband_acc100.pmd.c with a custom command
[2273/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2274/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2275/2513] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.2.p/librte_crypto_dpaa_sec.so.21.2.symbols
[2276/2513] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2277/2513] Compiling C object drivers/librte_baseband_acc100.so.21.2.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2278/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2279/2513] Linking static target drivers/librte_baseband_acc100.a
[2280/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2281/2513] Linking target drivers/librte_event_dpaa.so.21.2
[2282/2513] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2283/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2284/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2285/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2286/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2287/2513] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2288/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2289/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2290/2513] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2291/2513] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2292/2513] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2293/2513] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2294/2513] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2295/2513] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2296/2513] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2297/2513] Compiling C object app/test/dpdk-test.p/commands.c.o
[2298/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2299/2513] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2300/2513] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2301/2513] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2302/2513] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.2.p/librte_crypto_dpaa2_sec.so.21.2.symbols
[2303/2513] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2304/2513] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2305/2513] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2306/2513] Compiling C object drivers/librte_crypto_octeontx2.so.21.2.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2307/2513] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2308/2513] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2309/2513] Linking static target drivers/librte_crypto_octeontx2.a
[2310/2513] Linking target drivers/librte_event_dpaa2.so.21.2
[2311/2513] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2312/2513] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2313/2513] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2314/2513] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2315/2513] Linking target drivers/librte_baseband_acc100.so.21.2
[2316/2513] Generating rte_crypto_octeontx.pmd.c with a custom command
[2317/2513] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2318/2513] Linking static target drivers/librte_crypto_octeontx.a
[2319/2513] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2320/2513] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2321/2513] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2322/2513] Generating rte_net_octeontx2.pmd.c with a custom command
[2323/2513] Compiling C object drivers/librte_crypto_octeontx.so.21.2.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2324/2513] Compiling C object drivers/librte_net_octeontx2.so.21.2.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2325/2513] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2326/2513] Linking static target drivers/librte_net_octeontx2.a
[2327/2513] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2328/2513] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2329/2513] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2330/2513] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2331/2513] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2332/2513] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2333/2513] Linking target drivers/librte_crypto_octeontx2.so.21.2
[2334/2513] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2335/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2336/2513] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2337/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2338/2513] Linking target drivers/librte_crypto_octeontx.so.21.2
[2339/2513] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2340/2513] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2341/2513] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2342/2513] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2343/2513] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2344/2513] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2345/2513] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2346/2513] Generating symbol file drivers/librte_crypto_octeontx2.so.21.2.p/librte_crypto_octeontx2.so.21.2.symbols
[2347/2513] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2348/2513] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2349/2513] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2350/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2351/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2352/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2353/2513] Linking target drivers/librte_net_octeontx2.so.21.2
[2354/2513] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2355/2513] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2356/2513] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2357/2513] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2358/2513] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2359/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2360/2513] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2361/2513] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2362/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2363/2513] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2364/2513] Generating symbol file drivers/librte_net_octeontx2.so.21.2.p/librte_net_octeontx2.so.21.2.symbols
[2365/2513] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2366/2513] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2367/2513] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2368/2513] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2369/2513] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2370/2513] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2371/2513] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2372/2513] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2373/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2374/2513] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2375/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2376/2513] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2377/2513] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2378/2513] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2379/2513] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2380/2513] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2381/2513] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2382/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2383/2513] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2384/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2385/2513] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2386/2513] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2387/2513] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2388/2513] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2389/2513] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2390/2513] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2391/2513] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2392/2513] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2393/2513] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2394/2513] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2395/2513] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2396/2513] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2397/2513] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2398/2513] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2399/2513] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2400/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2401/2513] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2402/2513] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2403/2513] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2404/2513] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2405/2513] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2406/2513] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2407/2513] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2408/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2409/2513] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2410/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2411/2513] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2412/2513] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2413/2513] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2414/2513] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2415/2513] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2416/2513] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2417/2513] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2418/2513] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2419/2513] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2420/2513] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2421/2513] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2422/2513] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2423/2513] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2424/2513] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2425/2513] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2426/2513] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2427/2513] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2428/2513] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2429/2513] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2430/2513] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2431/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2432/2513] Generating rte_kni_makefile with a custom command
[2433/2513] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2434/2513] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2435/2513] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2436/2513] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2437/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2438/2513] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2439/2513] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2440/2513] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2441/2513] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2442/2513] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2443/2513] Linking static target drivers/libtmp_rte_event_opdl.a
[2444/2513] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2445/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2446/2513] Generating rte_event_opdl.pmd.c with a custom command
[2447/2513] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2448/2513] Compiling C object drivers/librte_event_opdl.so.21.2.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2449/2513] Linking static target drivers/librte_event_opdl.a
[2450/2513] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2451/2513] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2452/2513] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2453/2513] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2454/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2455/2513] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2456/2513] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2457/2513] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2458/2513] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2459/2513] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2460/2513] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2461/2513] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2462/2513] Linking target drivers/librte_event_opdl.so.21.2
[2463/2513] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2464/2513] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2465/2513] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2466/2513] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2467/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2468/2513] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2469/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2470/2513] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.8.0-45-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  MODPOST /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/Module.symvers
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/linux-headers-5.8.0-45-generic'
[2471/2513] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2472/2513] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2473/2513] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2474/2513] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2475/2513] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2476/2513] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2477/2513] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2478/2513] Linking static target lib/librte_pipeline.a
[2479/2513] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2480/2513] Linking target lib/librte_pipeline.so.21.2
[2481/2513] Generating symbol file lib/librte_pipeline.so.21.2.p/librte_pipeline.so.21.2.symbols
[2482/2513] Linking target drivers/librte_net_softnic.so.21.2
[2483/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2484/2513] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2485/2513] Linking static target lib/librte_vhost.a
[2486/2513] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2487/2513] Linking target lib/librte_vhost.so.21.2
[2488/2513] Generating symbol file lib/librte_vhost.so.21.2.p/librte_vhost.so.21.2.symbols
[2489/2513] Linking target drivers/librte_net_vhost.so.21.2
[2490/2513] Linking target drivers/librte_vdpa_ifc.so.21.2
[2491/2513] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2492/2513] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2493/2513] Generating rte_event_octeontx2.pmd.c with a custom command
[2494/2513] Compiling C object drivers/librte_event_octeontx2.so.21.2.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2495/2513] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2496/2513] Linking static target drivers/librte_event_octeontx2.a
[2497/2513] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2498/2513] Linking target drivers/librte_event_octeontx2.so.21.2
[2499/2513] Linking target app/dpdk-proc-info
[2500/2513] Linking target app/test/dpdk-test
[2501/2513] Linking target app/dpdk-test-crypto-perf
[2502/2513] Linking target app/dpdk-test-compress-perf
[2503/2513] Linking target app/dpdk-test-bbdev
[2504/2513] Linking target app/dpdk-test-fib
[2505/2513] Linking target app/dpdk-test-flow-perf
[2506/2513] Linking target app/dpdk-test-cmdline
[2507/2513] Linking target app/dpdk-test-acl
[2508/2513] Linking target app/dpdk-test-pipeline
[2509/2513] Linking target app/dpdk-testpmd
[2510/2513] Linking target app/dpdk-pdump
[2511/2513] Linking target app/dpdk-test-regex
[2512/2513] Linking target app/dpdk-test-eventdev
[2513/2513] Linking target app/dpdk-test-sad
22/03/2021 05:59:16             dut.10.240.183.145: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
22/03/2021 05:59:16             dut.10.240.183.145: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
22/03/2021 05:59:16             dut.10.240.183.145: mkdir -p x86_64-native-linuxapp-gcc/kmod
22/03/2021 05:59:16             dut.10.240.183.145: 
22/03/2021 05:59:16             dut.10.240.183.145: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
22/03/2021 05:59:16             dut.10.240.183.145: 
22/03/2021 05:59:16                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Begin
22/03/2021 05:59:16             dut.10.240.183.145: 
22/03/2021 05:59:16                         tester: 
22/03/2021 05:59:16                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues N/A: 
22/03/2021 05:59:18             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:19                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
22/03/2021 05:59:19             dut.10.240.183.145: 
22/03/2021 05:59:19                         tester: 
22/03/2021 05:59:19                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD N/A: 
22/03/2021 05:59:21             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:22                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
22/03/2021 05:59:22             dut.10.240.183.145: 
22/03/2021 05:59:22                         tester: 
22/03/2021 05:59:22                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD N/A: 
22/03/2021 05:59:24             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:25                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
22/03/2021 05:59:25             dut.10.240.183.145: 
22/03/2021 05:59:25                         tester: 
22/03/2021 05:59:25                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD N/A: 
22/03/2021 05:59:27             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:28                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
22/03/2021 05:59:28             dut.10.240.183.145: 
22/03/2021 05:59:28                         tester: 
22/03/2021 05:59:28                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD N/A: 
22/03/2021 05:59:30             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:31                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
22/03/2021 05:59:31             dut.10.240.183.145: 
22/03/2021 05:59:31                         tester: 
22/03/2021 05:59:31                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD N/A: 
22/03/2021 05:59:33             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:33                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
22/03/2021 05:59:34             dut.10.240.183.145: 
22/03/2021 05:59:34                         tester: 
22/03/2021 05:59:34                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag N/A: 
22/03/2021 05:59:36             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:36                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Begin
22/03/2021 05:59:36             dut.10.240.183.145: 
22/03/2021 05:59:37                         tester: 
22/03/2021 05:59:37                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag N/A: 
22/03/2021 05:59:39             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:39                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Begin
22/03/2021 05:59:39             dut.10.240.183.145: 
22/03/2021 05:59:39                         tester: 
22/03/2021 05:59:39                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad N/A: 
22/03/2021 05:59:41             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 05:59:42                TestFlexibleRxd: Test Case test_check_effect_replace_pkg_RXID_22_to_RXID_16 Result SKIPPED:
22/03/2021 05:59:42                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
22/03/2021 05:59:42             dut.10.240.183.145: 
22/03/2021 05:59:42                         tester: 
22/03/2021 05:59:42             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 05:59:43             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_15045976957209904653 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_18022653283502611652 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_5993555520077449391 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_8704916305080104569 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_16985060479654566985 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_3741979693915285169 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_17860315866464575328 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_16935803809899035862 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_3069265285276725973 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_3136983394019458379 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_13891220193681910201 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_8310746893240268801 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_15113146053877835331 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_15376212444380424252 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_8922219932320762951 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_14319539812184472427 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_2291378321517950164 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_6088700626589347250 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_17702011320817517039 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_9875604256101955066 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_12281459117996816876 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_4007957031856231854 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_10266219577059184927 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_165750247107626418 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_17014381461225959719 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_3508049541365525833 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_8427295332474863483 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_1797238073558632103 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_8345444684100507884 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_3259349871228797716 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_3297444804708665279 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_12261834394541557893 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_3085996547124695405 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_659114396911054200 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_17319742611457391324 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_3323084110870803139 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_16543775883622590053 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_10527275580675433525 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_6887442174468115054 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_6483682010624713300 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_5802907573642849279 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_5709752110600993641 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_13600958266294696448 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_2922146672603909994 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_11427635643787742834 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_14976267694106729393 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_351553720511061428 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_3459441461931408163 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_10400691109312611933 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_17341548947559088923 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_14661082253117055014 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_7798885444728803619 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_16834006707097815638 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_12999554490867950445 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_13111663969608607169 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_6719841696779316350 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_16251513778007169083 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_13187033885204297018 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_13158096938244635475 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_8304754026996232176 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_15633287624763620642 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_10223938898405822745 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_8937675358542044325 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_10998134840820951623 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_4813267713400686394 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_10302776075774514527 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_9222570916552981672 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_6261780870899735483 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_13804295106302739655 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_205251124410325138 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_9629179926848866204 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_14791887656994818963 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_6458971298198792997 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_4231481799307936789 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_3324197836998707246 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_800410822186712532 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_7949232855727708982 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_13274835652994425883 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_8945461409241931527 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_1599894357828028809 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_203416503059180884 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_14266891577628916049 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_9862951352597525183 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_16975304387833721337 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_18364381615248568170 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_8745948136843693437 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_151482914450998999 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_18119759082872955523 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_12799583096873282333 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_7758015874638231755 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_16580062736032498752 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_12958078024820862347 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_10727467566713940604 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_7624628494334259550 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_9230181058285219669 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_10525927339820971750 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_13506660764154511089 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_1048147660348306713 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_13570090558452147222 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_6443753980617205285 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_1622805315166794468 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_7846402223545928894 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_474931743525517386 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_14017642511626347102 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_6621735430985682984 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_1732437597123906908 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_7263891995134001603 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_10003967062130310734 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_3102419009801502483 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_3163799612590124159 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_11484926592371684390 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_156385650323806707 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_11336569476218925262 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_4667391566405218186 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_2473291988764025556 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_2641829015352912936 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_6306705717087608084 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_12194953861657503172 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_3407511533193138200 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_7239656341679068810 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_13091974756239758049 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_3980721657625204856 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_11165615403610166471 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_8380701607075382782 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_2507123349820644887 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_8835218863208014927 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_2277933357681011037 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_10239934459049401249 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_11523802953221568810 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_2253237232414900729 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_1442371904472952203 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_1827855096530897922 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 05:59:53             dut.10.240.183.145: set verbose 1
22/03/2021 05:59:53             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 05:59:53             dut.10.240.183.145: start
22/03/2021 05:59:54             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 05:59:57             dut.10.240.183.145:  - Protocol Offset:ip_offset=18port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:01             dut.10.240.183.145:  - Protocol Offset:ip_offset=18port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:01                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result PASSED:
22/03/2021 06:00:01             dut.10.240.183.145: quit
22/03/2021 06:00:02             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            120
ice_update_vsi_stats(): rx_unicast:          2
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           2
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	120
ice_stats_get(): rx_unicast:	2
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		2
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 2             TX-total: 2
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_18022653283502611652 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_5993555520077449391 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_8704916305080104569 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_16985060479654566985 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_3741979693915285169 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_17860315866464575328 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_16935803809899035862 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_3069265285276725973 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_3136983394019458379 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_13891220193681910201 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_8310746893240268801 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_15113146053877835331 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_15376212444380424252 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_8922219932320762951 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_14319539812184472427 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_2291378321517950164 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_6088700626589347250 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_17702011320817517039 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_9875604256101955066 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_12281459117996816876 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_4007957031856231854 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_10266219577059184927 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_165750247107626418 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_17014381461225959719 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_3508049541365525833 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_8427295332474863483 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_1797238073558632103 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_8345444684100507884 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_3259349871228797716 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_3297444804708665279 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_12261834394541557893 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_3085996547124695405 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_15045976957209904653 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_17319742611457391324 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_3323084110870803139 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_16543775883622590053 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_10527275580675433525 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_6887442174468115054 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_6483682010624713300 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_5802907573642849279 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_5709752110600993641 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_13600958266294696448 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_2922146672603909994 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_11427635643787742834 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_14976267694106729393 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_351553720511061428 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_3459441461931408163 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_10400691109312611933 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_17341548947559088923 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_14661082253117055014 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_7798885444728803619 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_16834006707097815638 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_12999554490867950445 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_13111663969608607169 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_6719841696779316350 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_16251513778007169083 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_13187033885204297018 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_13158096938244635475 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_8304754026996232176 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_15633287624763620642 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_10223938898405822745 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_8937675358542044325 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_10998134840820951623 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_4813267713400686394 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_10302776075774514527 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_659114396911054200 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_6261780870899735483 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_13804295106302739655 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_205251124410325138 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_9629179926848866204 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_14791887656994818963 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_6458971298198792997 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_4231481799307936789 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_3324197836998707246 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_800410822186712532 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_7949232855727708982 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_13274835652994425883 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_8945461409241931527 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_1599894357828028809 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_203416503059180884 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_14266891577628916049 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_9862951352597525183 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_16975304387833721337 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_18364381615248568170 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_8745948136843693437 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_151482914450998999 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_18119759082872955523 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_12799583096873282333 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_7758015874638231755 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_16580062736032498752 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_12958078024820862347 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_10727467566713940604 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_7624628494334259550 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_9230181058285219669 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_10525927339820971750 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_13506660764154511089 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_1048147660348306713 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_13570090558452147222 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_9222570916552981672 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_1622805315166794468 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_7846402223545928894 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_474931743525517386 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_14017642511626347102 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_6621735430985682984 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_1732437597123906908 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_7263891995134001603 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_10003967062130310734 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_3102419009801502483 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_3163799612590124159 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_11484926592371684390 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_156385650323806707 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_11336569476218925262 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_4667391566405218186 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_2473291988764025556 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_2641829015352912936 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_6306705717087608084 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_12194953861657503172 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_3407511533193138200 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_7239656341679068810 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_13091974756239758049 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_3980721657625204856 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_11165615403610166471 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_8380701607075382782 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_2507123349820644887 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_8835218863208014927 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_2277933357681011037 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_10239934459049401249 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_11523802953221568810 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_2253237232414900729 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_1442371904472952203 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_1827855096530897922 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_6443753980617205285 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:00:04             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:00:04                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Begin
22/03/2021 06:00:04             dut.10.240.183.145: 
22/03/2021 06:00:04                         tester: 
22/03/2021 06:00:04             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 06:00:06             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_16862245500173333665 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_18045823934571063421 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_12763520330433608226 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_10947576203513136068 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_8480056609239675960 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_4197364350862535777 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_14711276764556262952 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_2610684595422097780 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_2928820641891311914 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_17986149143836872451 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_18334335185968661922 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_9886167082307792501 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_8127082033845507353 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_14323199134641044244 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_8521334028640136532 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_15440329142112652200 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_17360578530391995496 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_15417953807842772151 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_16881710069488371113 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_14524385628680948886 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_8813620124303443668 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_15363242996981674299 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_10656056604002560384 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_15938721975209797936 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_16577125925805417760 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_2733474465695400042 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_11655754734628404210 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_10771643983466033617 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_9168348615175419270 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_6752540590013065134 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_5141075346443284111 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_14718036505696636742 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_14804305730732482565 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_5293742860327066346 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_5253103798004516910 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_13124712252280689043 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_3230040725408998128 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_8708941509832738770 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_2742899743024514510 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_4371967962990755146 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_2359804870195223698 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_4386940094493102670 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_1567649431976583643 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_3779322366118342640 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_4710216638833794119 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_404439420735354578 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_12714586025016608820 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_18190851665211708715 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_8038260396580919390 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_2846132663308047421 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_12322739767042655549 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_13202668297704223744 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_11533071986199830582 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_3809448207941300570 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_2787343297523388456 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_4471405009909180370 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_10994800744114579246 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_15407754234627020843 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_3511869085525065933 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_5921706207034444936 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_13508006139371998577 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_2700758584172119341 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_1444820961180901061 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_12012702108935499975 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_10002720704175681577 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_9105239735396373085 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_15347189621955967799 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_17165561816326398099 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_2583080880719336269 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_13354264259186970467 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_5628670727288043894 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_3251709636351178287 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_523475430122800243 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_7850156933514943206 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_7247098113857967172 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_11115681350402683070 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_13815099308557964445 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_4908874092358036728 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_11678065432874309133 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_4707034303486808303 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_4582934636232690199 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_13374133582174170484 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_15144330043368643273 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_3915566990664198088 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_5994267191272757995 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_7178648171246314514 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_6165530661759617542 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_8561768241527976882 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_8438111574406006789 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10712361475640617715 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_18442779101851889156 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_18313606824189978055 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_12941661205956328941 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_17463283454875642099 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_14691914162910814035 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_1837273849200110292 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_1983041733847566489 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_17817048860612448539 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14680265583412221608 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_13460893580538737023 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_1287310125788294335 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_2220340633858127940 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_5399562436519682982 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_15117682657093208239 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_15440722448881515774 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_13144899188377396294 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_15116380636724675055 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_15790314163967048205 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_7503817414298365160 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_11915342822853486702 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_11075633010186741530 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_2189831678688974010 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_7704238801104614966 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_5434079186323758615 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_10057957637623506184 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_14095756306765080865 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_14534175759742769248 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_3089832163145779679 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_17077946634395963604 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_12211822869920980788 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_552355479472890020 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_8005509322237483250 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_15402039260190375781 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_7478810044444333385 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_10871176545516243031 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_2996606091099599131 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_10360602298200008636 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_10379931828451321573 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_8237233043479840996 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_9515323057425668482 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_12607384912093342762 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_2448772027513739723 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:00:16             dut.10.240.183.145: set verbose 1
22/03/2021 06:00:16             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 06:00:16             dut.10.240.183.145: start
22/03/2021 06:00:16             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 06:00:19             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:23             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:23                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Result PASSED:
22/03/2021 06:00:23             dut.10.240.183.145: quit
22/03/2021 06:00:24             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            126
ice_update_vsi_stats(): rx_unicast:          2
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           2
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	126
ice_stats_get(): rx_unicast:	2
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		1
ice_stats_get(): rx_size_127:	1
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 2             TX-total: 2
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_18045823934571063421 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_12763520330433608226 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_10947576203513136068 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_8480056609239675960 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_4197364350862535777 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_14711276764556262952 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_2610684595422097780 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_2928820641891311914 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_17986149143836872451 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_18334335185968661922 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_9886167082307792501 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_8127082033845507353 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_14323199134641044244 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_8521334028640136532 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_15440329142112652200 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_17360578530391995496 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_15417953807842772151 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_16881710069488371113 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_14524385628680948886 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_8813620124303443668 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_15363242996981674299 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_10656056604002560384 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_15938721975209797936 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_16577125925805417760 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_2733474465695400042 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_11655754734628404210 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_10771643983466033617 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_9168348615175419270 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_6752540590013065134 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_5141075346443284111 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_14718036505696636742 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_14804305730732482565 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_16862245500173333665 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_5253103798004516910 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_13124712252280689043 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_3230040725408998128 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_8708941509832738770 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_2742899743024514510 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_4371967962990755146 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_2359804870195223698 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_4386940094493102670 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_1567649431976583643 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_3779322366118342640 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_4710216638833794119 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_404439420735354578 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_12714586025016608820 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_18190851665211708715 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_8038260396580919390 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_2846132663308047421 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_12322739767042655549 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_13202668297704223744 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_11533071986199830582 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_3809448207941300570 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_2787343297523388456 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_4471405009909180370 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_10994800744114579246 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_15407754234627020843 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_3511869085525065933 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_5921706207034444936 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_13508006139371998577 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_2700758584172119341 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_1444820961180901061 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_12012702108935499975 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_10002720704175681577 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_9105239735396373085 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_5293742860327066346 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_17165561816326398099 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_2583080880719336269 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_13354264259186970467 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_5628670727288043894 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_3251709636351178287 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_523475430122800243 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_7850156933514943206 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_7247098113857967172 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_11115681350402683070 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_13815099308557964445 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_4908874092358036728 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_11678065432874309133 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_4707034303486808303 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_4582934636232690199 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_13374133582174170484 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_15144330043368643273 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_3915566990664198088 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_5994267191272757995 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_7178648171246314514 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_6165530661759617542 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_8561768241527976882 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_8438111574406006789 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10712361475640617715 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_18442779101851889156 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_18313606824189978055 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_12941661205956328941 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_17463283454875642099 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_14691914162910814035 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_1837273849200110292 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_1983041733847566489 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_17817048860612448539 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14680265583412221608 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_15347189621955967799 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_1287310125788294335 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_2220340633858127940 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_5399562436519682982 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_15117682657093208239 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_15440722448881515774 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_13144899188377396294 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_15116380636724675055 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_15790314163967048205 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_7503817414298365160 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_11915342822853486702 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_11075633010186741530 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_2189831678688974010 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_7704238801104614966 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_5434079186323758615 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_10057957637623506184 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_14095756306765080865 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_14534175759742769248 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_3089832163145779679 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_17077946634395963604 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_12211822869920980788 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_552355479472890020 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_8005509322237483250 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_15402039260190375781 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_7478810044444333385 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_10871176545516243031 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_2996606091099599131 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_10360602298200008636 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_10379931828451321573 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_8237233043479840996 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_9515323057425668482 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_12607384912093342762 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_2448772027513739723 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_13460893580538737023 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:00:26             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:00:26                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Begin
22/03/2021 06:00:26             dut.10.240.183.145: 
22/03/2021 06:00:27                         tester: 
22/03/2021 06:00:27             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 06:00:28             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_12827689237708949877 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_16712468443980223600 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_11983693196214859428 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_2284332626811573408 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_5280374255123494698 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_6536301758172850017 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_7653787790864125162 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_15697349562053588317 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_13149302984227157782 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_4605614418856445897 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_3965237374527613339 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_16504828774223701308 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_8896574005965904436 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_4913189281462076972 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_8725129214769659137 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_7924567782726340544 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_1385829601720889000 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_11909124162995741959 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_2892486447193000360 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_11622702606882334147 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_872862048460369181 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_16545736754178608255 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_9260043539563726340 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_8313955552990984587 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_4491083720548292425 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_17394323231910101984 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_16181608845095309045 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_17095420872097033778 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_7912249542894509968 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_1226833771288947390 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_2126926142257071267 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_12591987498318714477 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_17022926691705836604 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_5016107953491451246 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_12174358566448020846 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_8520487794850348131 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_14712446481239695028 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_17289574535769430201 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_10379296859149711023 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_2272747661526124285 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_12307402623412928606 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_15854251629955429113 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_1120976598495772962 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_1270077432348299023 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_16985891778371829932 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_15807545370668874643 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_1121316355622456698 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_17363803421607375462 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_8822373435369285165 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_3858699817992990329 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_10131182385281661033 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_12509802171695875387 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_9257039286760025545 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_13620186113318714107 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_2065253207016066417 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_15913958019713664751 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_11293266912276166375 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_928932349102971153 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_8781382289820417715 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_10009547405118349547 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_17254055286156187261 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_9046356504914791733 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_16840039275517508934 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_6017193977814372581 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_14768355928226174736 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_14636513068982480694 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_11605950700278947317 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_14077709636203057550 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_10196415507563419903 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_1516772946716497624 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_8119709637547204281 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_13869743126413576413 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_1515904936587715679 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_12356963834916833787 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_14828632576760052184 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_10432116277686929636 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_15782574317125608806 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_8591562135623891205 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_7830310801732972897 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_11614249442165283570 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_9784567946624022707 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_7285978674387030552 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_13584156708872114122 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_389600836694322554 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_12369070727044590200 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_6834045158907173904 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_7204042220137354325 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_6451694530812067402 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_1313700426509053817 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_17971245490685112990 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_7738195423828110850 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_16801775708877322624 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_6325906489914667553 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_9560120152982089284 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_15807484374035677426 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_8210742878172990980 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_7263877817572254620 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_17093057060351156428 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_10598017445605389942 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_12921783177348031123 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_2920241030079762885 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_13570183262493961146 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_854959984209137906 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_17046058336819465562 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_8086906732087179829 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_17996587614101427476 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_18149412432437973331 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_17666150344050984390 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_5801027753939110873 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_1473014064842332764 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_7955253547885383921 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_7254493569368529002 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_14742900378493249545 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_5067392519758528905 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_11378039940813762614 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_3537679175164949171 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_13521937867249438683 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_18015815893675086150 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_1369933304864837248 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_14934315077972942258 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_16030055486401955237 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_5096975407624620993 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_9751372182982901180 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_280695057118787777 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_18400861407622560414 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_16849957882193840672 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_2987417621511356882 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_15785133683606930545 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_567222710786755360 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_7116207357132768669 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_4827487933470938167 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_1803196313143311566 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:00:38             dut.10.240.183.145: set verbose 1
22/03/2021 06:00:38             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 06:00:38             dut.10.240.183.145: start
22/03/2021 06:00:38             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 06:00:41             dut.10.240.183.145:  - Protocol Offset:ip_offset=18port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:45             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:49             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:52             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:56             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:00:59             dut.10.240.183.145:  - Protocol Offset:ip_offset=18port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:03             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=62 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:07             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:10             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:14             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8847 - length=74 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:14                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Result PASSED:
22/03/2021 06:01:14             dut.10.240.183.145: quit
22/03/2021 06:01:15             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            632
ice_update_vsi_stats(): rx_unicast:          10
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           10
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	632
ice_stats_get(): rx_unicast:	10
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		6
ice_stats_get(): rx_size_127:	4
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 10            TX-total: 10
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_16712468443980223600 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_11983693196214859428 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_2284332626811573408 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_5280374255123494698 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_6536301758172850017 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_7653787790864125162 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_15697349562053588317 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_13149302984227157782 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_4605614418856445897 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_3965237374527613339 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_16504828774223701308 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_8896574005965904436 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_4913189281462076972 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_8725129214769659137 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_7924567782726340544 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_1385829601720889000 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_11909124162995741959 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_2892486447193000360 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_11622702606882334147 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_872862048460369181 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_16545736754178608255 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_9260043539563726340 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_8313955552990984587 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_4491083720548292425 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_17394323231910101984 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_16181608845095309045 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_17095420872097033778 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_7912249542894509968 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_1226833771288947390 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_2126926142257071267 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_12591987498318714477 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_17022926691705836604 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_12827689237708949877 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_12174358566448020846 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_8520487794850348131 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_14712446481239695028 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_17289574535769430201 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_10379296859149711023 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_2272747661526124285 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_12307402623412928606 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_15854251629955429113 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_1120976598495772962 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_1270077432348299023 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_16985891778371829932 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_15807545370668874643 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_1121316355622456698 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_17363803421607375462 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_8822373435369285165 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_3858699817992990329 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_10131182385281661033 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_12509802171695875387 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_9257039286760025545 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_13620186113318714107 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_2065253207016066417 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_15913958019713664751 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_11293266912276166375 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_928932349102971153 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_8781382289820417715 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_10009547405118349547 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_17254055286156187261 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_9046356504914791733 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_16840039275517508934 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_6017193977814372581 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_14768355928226174736 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_14636513068982480694 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_5016107953491451246 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_14077709636203057550 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_10196415507563419903 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_1516772946716497624 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_8119709637547204281 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_13869743126413576413 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_1515904936587715679 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_12356963834916833787 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_14828632576760052184 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_10432116277686929636 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_15782574317125608806 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_8591562135623891205 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_7830310801732972897 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_11614249442165283570 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_9784567946624022707 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_7285978674387030552 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_13584156708872114122 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_389600836694322554 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_12369070727044590200 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_6834045158907173904 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_7204042220137354325 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_6451694530812067402 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_1313700426509053817 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_17971245490685112990 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_7738195423828110850 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_16801775708877322624 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_6325906489914667553 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_9560120152982089284 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_15807484374035677426 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_8210742878172990980 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_7263877817572254620 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_17093057060351156428 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_10598017445605389942 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_11605950700278947317 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_2920241030079762885 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_13570183262493961146 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_854959984209137906 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_17046058336819465562 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_8086906732087179829 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_17996587614101427476 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_18149412432437973331 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_17666150344050984390 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_5801027753939110873 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_1473014064842332764 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_7955253547885383921 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_7254493569368529002 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_14742900378493249545 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_5067392519758528905 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_11378039940813762614 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_3537679175164949171 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_13521937867249438683 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_18015815893675086150 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_1369933304864837248 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_14934315077972942258 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_16030055486401955237 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_5096975407624620993 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_9751372182982901180 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_280695057118787777 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_18400861407622560414 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_16849957882193840672 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_2987417621511356882 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_15785133683606930545 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_567222710786755360 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_7116207357132768669 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_4827487933470938167 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_1803196313143311566 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_12921783177348031123 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:01:17             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:01:17                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
22/03/2021 06:01:17             dut.10.240.183.145: 
22/03/2021 06:01:17                         tester: 
22/03/2021 06:01:17             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 06:01:19             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_11190035430291648081 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_9824728223314858641 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_361337372004100126 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_15601170623581084509 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_7873498857629743967 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_8273073938261114674 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_4439584136302024190 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_18167161384333616108 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_17174558752548942894 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_1145687662258017691 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_6436274386695840070 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_15533228559144158179 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_13254522666282159418 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_16085626901645350463 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_5906742015829728899 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_2884281746956035303 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_11218959942873675820 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_16116137011702589369 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_8036684218927432909 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_3995642312827606336 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_2133574565751190026 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_4004242673875559548 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_1884899827355058102 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_28561925097960619 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_16447005616847491917 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_4589277809704016902 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_760225853840436784 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_10368702498972342176 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_1082178851828174905 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_6081595195950133039 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_14052212996344045146 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_11082626415243603350 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_11830040748340959091 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_6062254984773186074 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_9412612609166175312 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_14138532075776546197 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_18152044751559405411 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_14260170618952594993 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_16970815426306086868 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_14253339299564172736 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_12880789183876565053 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_3235312855464554607 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_7883754182861844019 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_18339439468837197675 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_16990244761689427454 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_14648622339882232824 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_11936440485738025202 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_225930193683422574 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_4374641805580066921 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_5481527052589371468 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_6185978021549681706 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_10669363879877870712 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_12319789776278422616 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_3246534798019524079 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_16143659036335121605 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_11184037963450864235 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_1828814166416272544 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_5522498945396258143 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_14198108850790854583 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_5517592834753131410 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_4171343831422822574 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_6782886009320367210 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_5226608675708019171 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_6102463180401899514 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_4123158362426063808 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_9578636347856618824 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_4891522816583293164 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_8083049808018450006 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_141546795969860452 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_1583698577480501540 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_11125475015565987642 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_296872100413891205 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_9398463793579899756 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_16559467747137512948 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_17615619057873794763 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_17911650600194418573 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_16149350496833432467 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_12835540103883410900 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_12800916239970359890 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_14046279073198670740 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_17312868023686592597 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_11323484053273095924 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_16278297583040787981 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_4253220872375408066 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_13296642584746723559 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_1464952073141195483 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_6168913554367064468 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_15907194957548731221 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_3940781695410800176 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_17949323723635223549 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_11475834555558783806 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_11198944663561674318 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_4718694486639740929 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_1725868279077953109 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_16115349788213480661 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_8033897340453565474 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_17991200355375960183 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_5398820162753504792 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14031556568903988128 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_11787138297309381021 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_12456009747209819841 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_5272133718167220483 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_13102929291517120462 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_11268130468514212736 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_6725594486433205743 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_4344209393389595125 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_18059402283445817392 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_10496833582254970954 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_16209291316804254882 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_14071267763878065656 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_11185956199525744397 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_5820100370513781701 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_4594017893485871650 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_8549374836047695136 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_14301941675333512353 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_16644520966332485714 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_7597518685239986366 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_15329438022198865646 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_16199603017727690981 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_13870436757937043921 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_17243753690331750114 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_9027218399887071817 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_9013043307270612373 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_7489845937317128393 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_7956118859905652607 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_3514260514595030660 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_14158464634387063498 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_1274018492674140906 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_2834023205344937031 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_15040428993333454637 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_15468255619607737140 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_4762050909615595232 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:01:29             dut.10.240.183.145: set verbose 1
22/03/2021 06:01:29             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 06:01:29             dut.10.240.183.145: start
22/03/2021 06:01:29             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 06:01:32             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:36             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:39             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:43             dut.10.240.183.145:  - Protocol Offset:ip_offset=38port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:47             dut.10.240.183.145:  - Protocol Offset:ip_offset=42port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=62 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:50             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:54             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:01:58             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=74 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:01             dut.10.240.183.145:  - Protocol Offset:ip_offset=38port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:05             dut.10.240.183.145:  - Protocol Offset:ip_offset=42port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x88a8 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_QINQ  - l2_len=22 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:05                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Result PASSED:
22/03/2021 06:02:05             dut.10.240.183.145: quit
22/03/2021 06:02:06             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            672
ice_update_vsi_stats(): rx_unicast:          10
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           10
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	672
ice_stats_get(): rx_unicast:	10
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		4
ice_stats_get(): rx_size_127:	6
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 10            TX-total: 10
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_9824728223314858641 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_361337372004100126 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_15601170623581084509 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_7873498857629743967 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_8273073938261114674 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_4439584136302024190 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_18167161384333616108 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_17174558752548942894 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_1145687662258017691 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_6436274386695840070 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_15533228559144158179 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_13254522666282159418 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_16085626901645350463 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_5906742015829728899 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_2884281746956035303 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_11218959942873675820 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_16116137011702589369 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_8036684218927432909 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_3995642312827606336 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_2133574565751190026 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_4004242673875559548 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_1884899827355058102 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_28561925097960619 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_16447005616847491917 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_4589277809704016902 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_760225853840436784 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_10368702498972342176 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_1082178851828174905 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_6081595195950133039 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_14052212996344045146 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_11082626415243603350 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_11830040748340959091 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_11190035430291648081 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_9412612609166175312 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_14138532075776546197 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_18152044751559405411 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_14260170618952594993 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_16970815426306086868 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_14253339299564172736 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_12880789183876565053 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_3235312855464554607 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_7883754182861844019 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_18339439468837197675 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_16990244761689427454 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_14648622339882232824 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_11936440485738025202 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_225930193683422574 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_4374641805580066921 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_5481527052589371468 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_6185978021549681706 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_10669363879877870712 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_12319789776278422616 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_3246534798019524079 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_16143659036335121605 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_11184037963450864235 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_1828814166416272544 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_5522498945396258143 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_14198108850790854583 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_5517592834753131410 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_4171343831422822574 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_6782886009320367210 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_5226608675708019171 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_6102463180401899514 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_4123158362426063808 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_9578636347856618824 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_6062254984773186074 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_8083049808018450006 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_141546795969860452 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_1583698577480501540 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_11125475015565987642 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_296872100413891205 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_9398463793579899756 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_16559467747137512948 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_17615619057873794763 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_17911650600194418573 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_16149350496833432467 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_12835540103883410900 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_12800916239970359890 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_14046279073198670740 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_17312868023686592597 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_11323484053273095924 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_16278297583040787981 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_4253220872375408066 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_13296642584746723559 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_1464952073141195483 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_6168913554367064468 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_15907194957548731221 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_3940781695410800176 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_17949323723635223549 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_11475834555558783806 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_11198944663561674318 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_4718694486639740929 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_1725868279077953109 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_16115349788213480661 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_8033897340453565474 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_17991200355375960183 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_5398820162753504792 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14031556568903988128 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_4891522816583293164 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_12456009747209819841 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_5272133718167220483 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_13102929291517120462 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_11268130468514212736 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_6725594486433205743 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_4344209393389595125 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_18059402283445817392 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_10496833582254970954 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_16209291316804254882 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_14071267763878065656 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_11185956199525744397 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_5820100370513781701 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_4594017893485871650 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_8549374836047695136 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_14301941675333512353 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_16644520966332485714 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_7597518685239986366 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_15329438022198865646 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_16199603017727690981 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_13870436757937043921 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_17243753690331750114 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_9027218399887071817 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_9013043307270612373 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_7489845937317128393 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_7956118859905652607 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_3514260514595030660 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_14158464634387063498 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_1274018492674140906 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_2834023205344937031 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_15040428993333454637 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_15468255619607737140 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_4762050909615595232 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_11787138297309381021 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:02:08             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:02:08                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
22/03/2021 06:02:08             dut.10.240.183.145: 
22/03/2021 06:02:08                         tester: 
22/03/2021 06:02:08             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 06:02:10             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_6728724807407769980 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_12486788127483746917 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_9753637185940649988 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_11100760447461967563 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_14972079102237263482 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_5969396903529488910 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_5373994839992035214 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_12372867012991513527 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_14123664635563350892 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_18012006091505103730 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_11003195350200167567 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_6394937613351945356 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_805733883773349660 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_13698954688133143431 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_16895180856932801912 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_10103046879498560155 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_5916222196703708850 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_13265157113946033360 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_2297281494662288892 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_11335058759172096241 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_16305369619209536159 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_9237076035662505193 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_12690772292380178176 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_7596701952821689858 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_13456608639965880599 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_12246792587638209079 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_748899891813910601 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_16092015271508094268 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_2479349725993766106 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_5062815644050840436 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_16690540417480377646 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_15428962764920406595 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_12087430324734423751 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_14116696094583451164 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_2124021912288775720 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_7361573216263940950 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_13593782793309856338 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_8871748321483859687 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_5288594276355151752 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_4283797907961397620 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_5626151713000139855 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_5670558870325738846 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_468246504275245559 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_2698767346422899645 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_6505175680433597728 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_13259344507432447140 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_13073539740415549004 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_7026124544848141251 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_1058436666895375306 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_1309438947678139756 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_7036437431505836278 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_4041416879103398542 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_11831399659756467045 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_18008907256543003703 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_4339589309555598576 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_1981050679102902561 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_14970963718747028178 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_6264410050008659079 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_11721530959802604321 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_11722775374444970155 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_6416708469487798926 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_13343760908938386190 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_15350313372818022564 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_594036287433633878 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_9551334559903484438 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_7344709845348864813 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_12631518999270708926 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_8846699239765312908 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_10036398545162474171 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_10710196679916667340 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_11219149555552334892 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_17472330664921687203 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_8493717701932318872 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_17939559712666088039 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_6305959491447770968 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_1263293359216190857 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_5973558681494170027 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_2426043810149005910 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_4411150027356008171 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_5746999705567770427 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_17974194166177996703 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_11466763695811355053 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_4906354110285408742 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_5341045075636446069 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_5234646295989946477 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_5235630413041372341 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_8626214310521719246 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_2925423453257253798 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_4125740036270587560 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_5119229487469744316 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_7239231154235640770 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_8419023721084748438 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_167106585450029668 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_6569090769165696784 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_9066792780489199039 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_13348167319541447565 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_15577881014123164063 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_16480350381875353507 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_14575846248451347694 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_6611590129597888809 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_13406983198608122798 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_1855932398221933055 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_8064053911161383607 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_8173040521170951037 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_17573819341882327142 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_12705063874516863917 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_14686313580480729215 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_3519529918616770703 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_3676897405231792101 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_6998804933269171105 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_12047809044469115509 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_3462706441088624587 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_11150833434817734825 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12579951325026327196 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_15374050108202126048 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_6959367634535137272 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_15930389428801061642 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_9109657253425015233 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_15459334639529138385 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_3771417844799481679 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_3496477708240002558 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_6072844165395560015 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_12361565178938748356 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_15209967843544157772 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_11886686589257126020 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_1462300512480246668 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_14219487294598395746 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_6724940967067880368 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_18117344086722471713 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_14851476520858197675 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_18007058078932002997 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_17331760524182526140 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:02:20             dut.10.240.183.145: set verbose 1
22/03/2021 06:02:20             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 06:02:20             dut.10.240.183.145: start
22/03/2021 06:02:20             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 06:02:23             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:27             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:30             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:34             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:38             dut.10.240.183.145:  - Protocol Offset:ip_offset=38port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:41             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=62 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:45             dut.10.240.183.145:  - Protocol Offset:ip_offset=26port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:49             dut.10.240.183.145:  - Protocol Offset:ip_offset=30port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:52             dut.10.240.183.145:  - Protocol Offset:ip_offset=34port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=74 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:56             dut.10.240.183.145:  - Protocol Offset:ip_offset=38port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:02:56                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Result PASSED:
22/03/2021 06:02:56             dut.10.240.183.145: quit
22/03/2021 06:02:57             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            650
ice_update_vsi_stats(): rx_unicast:          10
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           10
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	650
ice_stats_get(): rx_unicast:	10
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		5
ice_stats_get(): rx_size_127:	5
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 10             RX-dropped: 0             RX-total: 10
  TX-packets: 0              TX-dropped: 10            TX-total: 10
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_12486788127483746917 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_9753637185940649988 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_11100760447461967563 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_14972079102237263482 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_5969396903529488910 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_5373994839992035214 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_12372867012991513527 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_14123664635563350892 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_18012006091505103730 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_11003195350200167567 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_6394937613351945356 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_805733883773349660 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_13698954688133143431 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_16895180856932801912 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_10103046879498560155 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_5916222196703708850 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_13265157113946033360 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_2297281494662288892 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_11335058759172096241 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_16305369619209536159 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_9237076035662505193 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_12690772292380178176 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_7596701952821689858 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_13456608639965880599 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_12246792587638209079 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_748899891813910601 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_16092015271508094268 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_2479349725993766106 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_5062815644050840436 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_16690540417480377646 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_15428962764920406595 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_12087430324734423751 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_6728724807407769980 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_2124021912288775720 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_7361573216263940950 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_13593782793309856338 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_8871748321483859687 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_5288594276355151752 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_4283797907961397620 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_5626151713000139855 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_5670558870325738846 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_468246504275245559 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_2698767346422899645 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_6505175680433597728 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_13259344507432447140 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_13073539740415549004 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_7026124544848141251 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_1058436666895375306 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_1309438947678139756 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_7036437431505836278 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_4041416879103398542 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_11831399659756467045 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_18008907256543003703 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_4339589309555598576 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_1981050679102902561 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_14970963718747028178 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_6264410050008659079 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_11721530959802604321 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_11722775374444970155 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_6416708469487798926 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_13343760908938386190 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_15350313372818022564 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_594036287433633878 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_9551334559903484438 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_7344709845348864813 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_14116696094583451164 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_8846699239765312908 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_10036398545162474171 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_10710196679916667340 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_11219149555552334892 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_17472330664921687203 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_8493717701932318872 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_17939559712666088039 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_6305959491447770968 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_1263293359216190857 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_5973558681494170027 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_2426043810149005910 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_4411150027356008171 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_5746999705567770427 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_17974194166177996703 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_11466763695811355053 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_4906354110285408742 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_5341045075636446069 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_5234646295989946477 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_5235630413041372341 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_8626214310521719246 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_2925423453257253798 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_4125740036270587560 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_5119229487469744316 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_7239231154235640770 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_8419023721084748438 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_167106585450029668 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_6569090769165696784 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_9066792780489199039 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_13348167319541447565 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_15577881014123164063 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_16480350381875353507 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_14575846248451347694 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_12631518999270708926 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_13406983198608122798 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_1855932398221933055 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_8064053911161383607 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_8173040521170951037 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_17573819341882327142 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_12705063874516863917 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_14686313580480729215 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_3519529918616770703 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_3676897405231792101 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_6998804933269171105 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_12047809044469115509 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_3462706441088624587 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_11150833434817734825 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12579951325026327196 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_15374050108202126048 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_6959367634535137272 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_15930389428801061642 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_9109657253425015233 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_15459334639529138385 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_3771417844799481679 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_3496477708240002558 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_6072844165395560015 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_12361565178938748356 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_15209967843544157772 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_11886686589257126020 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_1462300512480246668 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_14219487294598395746 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_6724940967067880368 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_18117344086722471713 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_14851476520858197675 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_18007058078932002997 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_17331760524182526140 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_6611590129597888809 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:02:59             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:02:59                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Begin
22/03/2021 06:02:59             dut.10.240.183.145: 
22/03/2021 06:02:59                         tester: 
22/03/2021 06:02:59             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -a 0000:07:00.0,proto_xtr=ip_offset --file-prefix=dpdk_18700_20210322055708  --log-level="ice,8" -- -i --portmask=0x1 --nb-cores=2
22/03/2021 06:03:01             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_18700_20210322055708/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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_10190421315980738637 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_11835212977188528453 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_18355272694709259076 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_13863655137976647790 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_11734458404380795382 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_4045178641887997757 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_1850864225551976261 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_10947831274575493483 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_17216280746889079183 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_2747158677901534453 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_8099438184711294723 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_12697105482627872566 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_17563671868154388137 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_3100260269930567427 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_12829754463964606630 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_16323770071479327271 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_15762724043867659636 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_17052596286378752122 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_348524828183353643 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_15443015620280018814 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_4568145034264883105 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_2526526949579647185 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_8450305913550230033 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_11047869511684704249 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_10091965819189503838 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_9219595404762099727 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_11765479640641531979 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_1480371505272836960 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_14837652966712477062 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_11558258053719907942 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_11228148945591216036 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_11634738457362652474 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_1186009336990008686 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_17785635137525342464 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_4393150725397129624 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_6886235038646948236 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_11313298400441220466 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_15327849933075246636 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_5843141030239349351 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_8615883642382338348 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_15443622788751740945 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_15954395608035857773 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_8572113979045519761 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_13078221477214357565 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_9126145487472048914 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_12664882784289622124 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_8694866620774091784 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_8786116193510835745 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_3564764467463976949 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_14227114863394737262 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_5044477121366659683 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_15737053888636399818 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_3916357284870792817 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_718769508673775831 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_5503481245233728145 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_7951247336486483681 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_4550640632959949999 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_4164382221595022920 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_17213196301654998180 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_16148923362249714127 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_8412296091130825065 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_3225104855404705133 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_14013650691224262794 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_15667875153515170304 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_5823031034017311545 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_490404584186735769 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_9637580237294385343 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_12277446413958955445 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_15656364992069477761 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_16688552213747368394 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_16926842347082751262 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_14731842088722948046 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_11903788476232143126 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_16554512423238344572 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_6249474190071750013 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_15016394055707336290 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_14254573890774898309 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_7012937956975870035 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_6417157616896485281 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_13911784246462187872 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_5060731921149070014 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_18080553598677410225 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_11259789690862324228 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_8537121080660201455 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_11838998701989275756 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_2036375549663369912 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_663634099857318565 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_7870186472166791230 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_1753401374897999920 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_1158850318430224234 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_9627557220271939784 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_2799546765678111966 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_7014956217292523310 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_16494038156471039495 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_4625774743971139418 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_4877839073137163961 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_4682077333333146211 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_14225604962212610702 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_8318338393826641730 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_465731337016296738 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_5277621595813993384 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_3723007849673256060 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_12334782327238214322 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_5548031956590485636 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_6400763885683609573 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_10264624089210548586 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_13891437292677148153 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_13733389436823249908 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_17919991249400165217 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_2060115283825304198 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_17855783196043968580 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_6269393017761075415 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_11694024465500427275 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_17481171987007825197 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_8590372858984876947 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_1101979436915722098 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_9850416842796546158 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_13111251579055122838 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_7657884249442704204 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_11792756565036820838 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_17167523884122704628 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_14584869250473635620 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_8471630298320255306 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_2001680238771431964 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_7861963446629513298 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_2204870104676586151 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_13273298308723715046 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_14950634433028854968 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_1482185985044228967 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_2958959366216728045 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_11292735399373189612 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_15652292725159616335 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 92
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ip_offset' offset in mbuf is : 23
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:03:11             dut.10.240.183.145: set verbose 1
22/03/2021 06:03:11             dut.10.240.183.145: 
Change verbose level from 0 to 1
22/03/2021 06:03:11             dut.10.240.183.145: start
22/03/2021 06:03:11             dut.10.240.183.145: 
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=2 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=1024 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
ice_update_vsi_stats(): ************** VSI[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
22/03/2021 06:03:14             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:03:18             dut.10.240.183.145:  - Protocol Offset:ip_offset=22port 0/queue 0: received 1 packets
  src=68:05:CA:A3:12:D0 - dst=68:05:CA:BB:27:E4 - type=0x8100 - length=62 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

22/03/2021 06:03:18                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Result PASSED:
22/03/2021 06:03:18             dut.10.240.183.145: quit
22/03/2021 06:03:19             dut.10.240.183.145: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            122
ice_update_vsi_stats(): rx_unicast:          2
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           2
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	122
ice_stats_get(): rx_unicast:	2
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		1
ice_stats_get(): rx_size_127:	1
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 2              RX-dropped: 0             RX-total: 2
  TX-packets: 0              TX-dropped: 2             TX-total: 2
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_11835212977188528453 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_18355272694709259076 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_13863655137976647790 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_11734458404380795382 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_4045178641887997757 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_1850864225551976261 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_10947831274575493483 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_17216280746889079183 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_2747158677901534453 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_8099438184711294723 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_12697105482627872566 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_17563671868154388137 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_3100260269930567427 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_12829754463964606630 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_16323770071479327271 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_15762724043867659636 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_17052596286378752122 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_348524828183353643 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_15443015620280018814 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_4568145034264883105 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_2526526949579647185 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_8450305913550230033 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_11047869511684704249 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_10091965819189503838 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_9219595404762099727 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_11765479640641531979 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_1480371505272836960 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_14837652966712477062 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_11558258053719907942 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_11228148945591216036 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_11634738457362652474 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_1186009336990008686 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_10190421315980738637 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_4393150725397129624 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_6886235038646948236 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_11313298400441220466 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_15327849933075246636 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_5843141030239349351 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_8615883642382338348 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_15443622788751740945 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_15954395608035857773 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_8572113979045519761 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_13078221477214357565 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_9126145487472048914 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_12664882784289622124 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_8694866620774091784 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_8786116193510835745 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_3564764467463976949 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_14227114863394737262 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_5044477121366659683 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_15737053888636399818 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_3916357284870792817 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_718769508673775831 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_5503481245233728145 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_7951247336486483681 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_4550640632959949999 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_4164382221595022920 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_17213196301654998180 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_16148923362249714127 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_8412296091130825065 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_3225104855404705133 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_14013650691224262794 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_15667875153515170304 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_5823031034017311545 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_490404584186735769 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_17785635137525342464 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_12277446413958955445 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_15656364992069477761 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_16688552213747368394 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_16926842347082751262 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_14731842088722948046 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_11903788476232143126 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_16554512423238344572 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_6249474190071750013 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_15016394055707336290 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_14254573890774898309 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_7012937956975870035 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_6417157616896485281 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_13911784246462187872 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_5060731921149070014 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_18080553598677410225 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_11259789690862324228 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_8537121080660201455 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_11838998701989275756 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_2036375549663369912 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_663634099857318565 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_7870186472166791230 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_1753401374897999920 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_1158850318430224234 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_9627557220271939784 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_2799546765678111966 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_7014956217292523310 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_16494038156471039495 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_4625774743971139418 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_4877839073137163961 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_4682077333333146211 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_14225604962212610702 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_8318338393826641730 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_9637580237294385343 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_5277621595813993384 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_3723007849673256060 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_12334782327238214322 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_5548031956590485636 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_6400763885683609573 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_10264624089210548586 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_13891437292677148153 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_13733389436823249908 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_17919991249400165217 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_2060115283825304198 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_17855783196043968580 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_6269393017761075415 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_11694024465500427275 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_17481171987007825197 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_8590372858984876947 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_1101979436915722098 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_9850416842796546158 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_13111251579055122838 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_7657884249442704204 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_11792756565036820838 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_17167523884122704628 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_14584869250473635620 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_8471630298320255306 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_2001680238771431964 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_7861963446629513298 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_2204870104676586151 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_13273298308723715046 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_14950634433028854968 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_1482185985044228967 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_2958959366216728045 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_11292735399373189612 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_15652292725159616335 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_465731337016296738 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:03:21             dut.10.240.183.145: kill_all: called by dut and prefix list has value.
22/03/2021 06:03:21                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
22/03/2021 06:03:22             dut.10.240.183.145: 
22/03/2021 06:03:22                         tester: 
22/03/2021 06:03:22                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q N/A: 
22/03/2021 06:03:24             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 06:03:24                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Begin
22/03/2021 06:03:24             dut.10.240.183.145: 
22/03/2021 06:03:24                         tester: 
22/03/2021 06:03:24             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:07:00.0,proto_xtr=vxlan -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
22/03/2021 06:03:25             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
Option -w, --pci-whitelist is deprecated, use -a, --allow option instead
EAL: Detected static linkage of DPDK
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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
handle_proto_xtr_arg(): The protocol extraction parameter is wrong : 'vxlan'
ice_dev_init(): Failed to parse devargs
EAL: Releasing pci mapped resource for 0000:07:00.0
EAL: Calling pci_unmap_resource for 0000:07:00.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:07:00.0 at 0x2202000000
EAL: Requested device 0000:07:00.0 cannot be used
EAL: Bus (pci) probe failed.
testpmd: No probed ethernet devices
Interactive-mode selected
Fail: input rxq (32) can't be greater than max_rx_queues (0) of port 0
EAL: Error - exiting with code: 1
  Cause: rxq 32 invalid - must be >= 0 && <= 0
22/03/2021 06:03:25             dut.10.240.183.145: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:07:00.0 --log-level='ice,8' -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
22/03/2021 06:03:26             dut.10.240.183.145: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
Option -w, --pci-whitelist is deprecated, use -a, --allow option instead
EAL: Detected static linkage of DPDK
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_ice (8086:1593) device: 0000:07:00.0 (socket 0)
ice_alloc_dma_mem(): memzone ice_dma_5140986781978558016 allocated with physical address: 6442103744
ice_alloc_dma_mem(): memzone ice_dma_1754587324287332753 allocated with physical address: 6442098112
ice_alloc_dma_mem(): memzone ice_dma_16120549924326204477 allocated with physical address: 6442093888
ice_alloc_dma_mem(): memzone ice_dma_3552725766991620146 allocated with physical address: 6442089664
ice_alloc_dma_mem(): memzone ice_dma_8243309284643377046 allocated with physical address: 6442085440
ice_alloc_dma_mem(): memzone ice_dma_7484203275350068305 allocated with physical address: 6442081216
ice_alloc_dma_mem(): memzone ice_dma_14917976355807776594 allocated with physical address: 6442076992
ice_alloc_dma_mem(): memzone ice_dma_11031211701209933577 allocated with physical address: 6442072768
ice_alloc_dma_mem(): memzone ice_dma_11434595327850552243 allocated with physical address: 6442068544
ice_alloc_dma_mem(): memzone ice_dma_2749673777442492209 allocated with physical address: 6442064320
ice_alloc_dma_mem(): memzone ice_dma_11241698607589580836 allocated with physical address: 6442060096
ice_alloc_dma_mem(): memzone ice_dma_9402793806615813084 allocated with physical address: 6442055872
ice_alloc_dma_mem(): memzone ice_dma_10920003439541875390 allocated with physical address: 6442051648
ice_alloc_dma_mem(): memzone ice_dma_5621221821753889508 allocated with physical address: 6442047424
ice_alloc_dma_mem(): memzone ice_dma_8663425540959337116 allocated with physical address: 6442043200
ice_alloc_dma_mem(): memzone ice_dma_4157489552612566406 allocated with physical address: 6442038976
ice_alloc_dma_mem(): memzone ice_dma_10864210015259267671 allocated with physical address: 6442034752
ice_alloc_dma_mem(): memzone ice_dma_6331568163153984236 allocated with physical address: 6442030528
ice_alloc_dma_mem(): memzone ice_dma_10214555208449136869 allocated with physical address: 6442026304
ice_alloc_dma_mem(): memzone ice_dma_15521561654271044115 allocated with physical address: 6442022080
ice_alloc_dma_mem(): memzone ice_dma_2707195842349103921 allocated with physical address: 6442017856
ice_alloc_dma_mem(): memzone ice_dma_8730252934011801548 allocated with physical address: 6442013632
ice_alloc_dma_mem(): memzone ice_dma_3017445156390660164 allocated with physical address: 6442009408
ice_alloc_dma_mem(): memzone ice_dma_1888264672338476983 allocated with physical address: 6442005184
ice_alloc_dma_mem(): memzone ice_dma_3208168513765406059 allocated with physical address: 6442000960
ice_alloc_dma_mem(): memzone ice_dma_11087901075144763348 allocated with physical address: 6441996736
ice_alloc_dma_mem(): memzone ice_dma_16633409296927961006 allocated with physical address: 6441992512
ice_alloc_dma_mem(): memzone ice_dma_1154419662215305564 allocated with physical address: 6441988288
ice_alloc_dma_mem(): memzone ice_dma_4046312770681434161 allocated with physical address: 6441984064
ice_alloc_dma_mem(): memzone ice_dma_3420454183216295240 allocated with physical address: 6441979840
ice_alloc_dma_mem(): memzone ice_dma_17792605879539383307 allocated with physical address: 6441975616
ice_alloc_dma_mem(): memzone ice_dma_13181562260643887576 allocated with physical address: 6441971392
ice_alloc_dma_mem(): memzone ice_dma_17988112496770031766 allocated with physical address: 6441967168
ice_alloc_dma_mem(): memzone ice_dma_17433581486830596529 allocated with physical address: 6441966016
ice_alloc_dma_mem(): memzone ice_dma_3113965078526090928 allocated with physical address: 6441960768
ice_alloc_dma_mem(): memzone ice_dma_10902440988420557376 allocated with physical address: 6441956544
ice_alloc_dma_mem(): memzone ice_dma_246884979093866138 allocated with physical address: 6441952320
ice_alloc_dma_mem(): memzone ice_dma_11195527753848892639 allocated with physical address: 6441948096
ice_alloc_dma_mem(): memzone ice_dma_16886747898492731157 allocated with physical address: 6441943872
ice_alloc_dma_mem(): memzone ice_dma_3080795190563916780 allocated with physical address: 6441939648
ice_alloc_dma_mem(): memzone ice_dma_6488577045961319360 allocated with physical address: 6441935424
ice_alloc_dma_mem(): memzone ice_dma_3484064345513493355 allocated with physical address: 6441931200
ice_alloc_dma_mem(): memzone ice_dma_15076490073660955612 allocated with physical address: 6441926976
ice_alloc_dma_mem(): memzone ice_dma_15657222130731966145 allocated with physical address: 6441922752
ice_alloc_dma_mem(): memzone ice_dma_3440459982884733209 allocated with physical address: 6441918528
ice_alloc_dma_mem(): memzone ice_dma_7265424176592958696 allocated with physical address: 6441914304
ice_alloc_dma_mem(): memzone ice_dma_2741239692768720756 allocated with physical address: 6441910080
ice_alloc_dma_mem(): memzone ice_dma_6113074463396192680 allocated with physical address: 6441905856
ice_alloc_dma_mem(): memzone ice_dma_5618512869495788058 allocated with physical address: 6441901632
ice_alloc_dma_mem(): memzone ice_dma_18442203697087461307 allocated with physical address: 6441897408
ice_alloc_dma_mem(): memzone ice_dma_10060654969369796535 allocated with physical address: 6441893184
ice_alloc_dma_mem(): memzone ice_dma_6479098320206285270 allocated with physical address: 6441888960
ice_alloc_dma_mem(): memzone ice_dma_6865984276888284866 allocated with physical address: 6441884736
ice_alloc_dma_mem(): memzone ice_dma_4775271330282576301 allocated with physical address: 6441880512
ice_alloc_dma_mem(): memzone ice_dma_9878412305202864430 allocated with physical address: 6441876288
ice_alloc_dma_mem(): memzone ice_dma_17815423838275327987 allocated with physical address: 6441872064
ice_alloc_dma_mem(): memzone ice_dma_18101489558877123639 allocated with physical address: 6441867840
ice_alloc_dma_mem(): memzone ice_dma_1843294921553716391 allocated with physical address: 6441863616
ice_alloc_dma_mem(): memzone ice_dma_10771650126348919179 allocated with physical address: 6441859392
ice_alloc_dma_mem(): memzone ice_dma_7291371737306477413 allocated with physical address: 6441855168
ice_alloc_dma_mem(): memzone ice_dma_8079734898414970443 allocated with physical address: 6441850944
ice_alloc_dma_mem(): memzone ice_dma_11863189483990690959 allocated with physical address: 6441846720
ice_alloc_dma_mem(): memzone ice_dma_8578309721178270889 allocated with physical address: 6441842496
ice_alloc_dma_mem(): memzone ice_dma_9624724917544807376 allocated with physical address: 6441838272
ice_alloc_dma_mem(): memzone ice_dma_8387836840063056462 allocated with physical address: 6441834048
ice_alloc_dma_mem(): memzone ice_dma_1041971644230783236 allocated with physical address: 6441829824
ice_alloc_dma_mem(): memzone ice_dma_1290174370734769800 allocated with physical address: 6441828672
ice_alloc_dma_mem(): memzone ice_dma_1038658258978284763 allocated with physical address: 6441823040
ice_alloc_dma_mem(): memzone ice_dma_13130654571480426426 allocated with physical address: 6441818816
ice_alloc_dma_mem(): memzone ice_dma_1679459301482753263 allocated with physical address: 6441814592
ice_alloc_dma_mem(): memzone ice_dma_4425412736596161000 allocated with physical address: 6441810368
ice_alloc_dma_mem(): memzone ice_dma_4256212674106689699 allocated with physical address: 6441806144
ice_alloc_dma_mem(): memzone ice_dma_13659551808036446605 allocated with physical address: 6441801920
ice_alloc_dma_mem(): memzone ice_dma_13622912495765266903 allocated with physical address: 6441797696
ice_alloc_dma_mem(): memzone ice_dma_8370413892779663346 allocated with physical address: 6441793472
ice_alloc_dma_mem(): memzone ice_dma_14958138154067832751 allocated with physical address: 6441789248
ice_alloc_dma_mem(): memzone ice_dma_2724516056540772536 allocated with physical address: 6441785024
ice_alloc_dma_mem(): memzone ice_dma_5817517004329094838 allocated with physical address: 6441780800
ice_alloc_dma_mem(): memzone ice_dma_5383640995823823989 allocated with physical address: 6441776576
ice_alloc_dma_mem(): memzone ice_dma_8040804298649716153 allocated with physical address: 6441772352
ice_alloc_dma_mem(): memzone ice_dma_6061689785907547294 allocated with physical address: 6441768128
ice_alloc_dma_mem(): memzone ice_dma_13619360381580625191 allocated with physical address: 6441763904
ice_alloc_dma_mem(): memzone ice_dma_3363803071889481898 allocated with physical address: 6441759680
ice_alloc_dma_mem(): memzone ice_dma_8237416404792555052 allocated with physical address: 6441755456
ice_alloc_dma_mem(): memzone ice_dma_1926024863863446878 allocated with physical address: 6441751232
ice_alloc_dma_mem(): memzone ice_dma_17662060413381376218 allocated with physical address: 6441747008
ice_alloc_dma_mem(): memzone ice_dma_2180726932627576841 allocated with physical address: 6441742784
ice_alloc_dma_mem(): memzone ice_dma_7037813258806673541 allocated with physical address: 6441738560
ice_alloc_dma_mem(): memzone ice_dma_8218804952340744493 allocated with physical address: 6441734336
ice_alloc_dma_mem(): memzone ice_dma_10015431102515473082 allocated with physical address: 6441730112
ice_alloc_dma_mem(): memzone ice_dma_10878497827597805498 allocated with physical address: 6441725888
ice_alloc_dma_mem(): memzone ice_dma_15018370470704853960 allocated with physical address: 6441721664
ice_alloc_dma_mem(): memzone ice_dma_275567260806208287 allocated with physical address: 6441717440
ice_alloc_dma_mem(): memzone ice_dma_1551290663179877911 allocated with physical address: 6441713216
ice_alloc_dma_mem(): memzone ice_dma_4294483253546513765 allocated with physical address: 6441708992
ice_alloc_dma_mem(): memzone ice_dma_356208673286132194 allocated with physical address: 6441704768
ice_alloc_dma_mem(): memzone ice_dma_16432545124205074453 allocated with physical address: 6441700544
ice_alloc_dma_mem(): memzone ice_dma_3956591636409453006 allocated with physical address: 6441696320
ice_alloc_dma_mem(): memzone ice_dma_1144663246963348999 allocated with physical address: 6441692096
ice_alloc_dma_mem(): memzone ice_dma_6547695477757465364 allocated with physical address: 6441690944
ice_alloc_dma_mem(): memzone ice_dma_18255000418148824689 allocated with physical address: 6441685696
ice_alloc_dma_mem(): memzone ice_dma_8122686329101229506 allocated with physical address: 6441681472
ice_alloc_dma_mem(): memzone ice_dma_10006814586030737298 allocated with physical address: 6441677248
ice_alloc_dma_mem(): memzone ice_dma_11716721095828691796 allocated with physical address: 6441673024
ice_alloc_dma_mem(): memzone ice_dma_13475549647553379463 allocated with physical address: 6441668800
ice_alloc_dma_mem(): memzone ice_dma_1601445134487358038 allocated with physical address: 6441664576
ice_alloc_dma_mem(): memzone ice_dma_14360680765204230542 allocated with physical address: 6441660352
ice_alloc_dma_mem(): memzone ice_dma_16919573909913990732 allocated with physical address: 6441656128
ice_alloc_dma_mem(): memzone ice_dma_13729699747937774266 allocated with physical address: 6441651904
ice_alloc_dma_mem(): memzone ice_dma_2344936612764646177 allocated with physical address: 6441647680
ice_alloc_dma_mem(): memzone ice_dma_5217217680171794335 allocated with physical address: 6441643456
ice_alloc_dma_mem(): memzone ice_dma_3880840510332553699 allocated with physical address: 6441639232
ice_alloc_dma_mem(): memzone ice_dma_5377494650834275727 allocated with physical address: 6441635008
ice_alloc_dma_mem(): memzone ice_dma_12423288900504005130 allocated with physical address: 6441630784
ice_alloc_dma_mem(): memzone ice_dma_2061380813347556392 allocated with physical address: 6441626560
ice_alloc_dma_mem(): memzone ice_dma_10944763920999361021 allocated with physical address: 6441622336
ice_alloc_dma_mem(): memzone ice_dma_17562298250591234824 allocated with physical address: 6441618112
ice_alloc_dma_mem(): memzone ice_dma_8563172540640536769 allocated with physical address: 6441613888
ice_alloc_dma_mem(): memzone ice_dma_11735956050288738885 allocated with physical address: 6441609664
ice_alloc_dma_mem(): memzone ice_dma_16135665349135093752 allocated with physical address: 6441605440
ice_alloc_dma_mem(): memzone ice_dma_15831485968935749280 allocated with physical address: 6441601216
ice_alloc_dma_mem(): memzone ice_dma_14607801100363268777 allocated with physical address: 6441596992
ice_alloc_dma_mem(): memzone ice_dma_15300574270019264620 allocated with physical address: 6441592768
ice_alloc_dma_mem(): memzone ice_dma_14665742330990712239 allocated with physical address: 6441588544
ice_alloc_dma_mem(): memzone ice_dma_5152496120003176639 allocated with physical address: 6441584320
ice_alloc_dma_mem(): memzone ice_dma_8341384661139178139 allocated with physical address: 6441580096
ice_alloc_dma_mem(): memzone ice_dma_2678902799960664357 allocated with physical address: 6441575872
ice_alloc_dma_mem(): memzone ice_dma_5396298267869551551 allocated with physical address: 6441571648
ice_alloc_dma_mem(): memzone ice_dma_12998025427894829764 allocated with physical address: 6441567424
ice_alloc_dma_mem(): memzone ice_dma_13268978150604366673 allocated with physical address: 6441563200
ice_alloc_dma_mem(): memzone ice_dma_1743716511783873833 allocated with physical address: 6441558976
ice_alloc_dma_mem(): memzone ice_dma_1564496696064162692 allocated with physical address: 6441554752
ice_load_pkg_type(): Active package is: 1.3.24.0, ICE OS Default Package (double VLAN mode)
ice_dev_init(): FW 5.5.659403550 API 1.7
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 22
ice_set_rx_function():  >>
ice_set_rx_function(): Using Vector Rx (port 0).
ice_set_tx_function(): Using Vector Tx (port 0).
ice_vsi_del_vlan_zero(): Failed to remove VLAN ID 0
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:BB:27:E4
Checking link statuses...
Done
22/03/2021 06:03:26             dut.10.240.183.145: quit
22/03/2021 06:03:28             dut.10.240.183.145: 

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_1754587324287332753 to be freed with physical address: 6442098112
ice_free_dma_mem(): memzone ice_dma_16120549924326204477 to be freed with physical address: 6442093888
ice_free_dma_mem(): memzone ice_dma_3552725766991620146 to be freed with physical address: 6442089664
ice_free_dma_mem(): memzone ice_dma_8243309284643377046 to be freed with physical address: 6442085440
ice_free_dma_mem(): memzone ice_dma_7484203275350068305 to be freed with physical address: 6442081216
ice_free_dma_mem(): memzone ice_dma_14917976355807776594 to be freed with physical address: 6442076992
ice_free_dma_mem(): memzone ice_dma_11031211701209933577 to be freed with physical address: 6442072768
ice_free_dma_mem(): memzone ice_dma_11434595327850552243 to be freed with physical address: 6442068544
ice_free_dma_mem(): memzone ice_dma_2749673777442492209 to be freed with physical address: 6442064320
ice_free_dma_mem(): memzone ice_dma_11241698607589580836 to be freed with physical address: 6442060096
ice_free_dma_mem(): memzone ice_dma_9402793806615813084 to be freed with physical address: 6442055872
ice_free_dma_mem(): memzone ice_dma_10920003439541875390 to be freed with physical address: 6442051648
ice_free_dma_mem(): memzone ice_dma_5621221821753889508 to be freed with physical address: 6442047424
ice_free_dma_mem(): memzone ice_dma_8663425540959337116 to be freed with physical address: 6442043200
ice_free_dma_mem(): memzone ice_dma_4157489552612566406 to be freed with physical address: 6442038976
ice_free_dma_mem(): memzone ice_dma_10864210015259267671 to be freed with physical address: 6442034752
ice_free_dma_mem(): memzone ice_dma_6331568163153984236 to be freed with physical address: 6442030528
ice_free_dma_mem(): memzone ice_dma_10214555208449136869 to be freed with physical address: 6442026304
ice_free_dma_mem(): memzone ice_dma_15521561654271044115 to be freed with physical address: 6442022080
ice_free_dma_mem(): memzone ice_dma_2707195842349103921 to be freed with physical address: 6442017856
ice_free_dma_mem(): memzone ice_dma_8730252934011801548 to be freed with physical address: 6442013632
ice_free_dma_mem(): memzone ice_dma_3017445156390660164 to be freed with physical address: 6442009408
ice_free_dma_mem(): memzone ice_dma_1888264672338476983 to be freed with physical address: 6442005184
ice_free_dma_mem(): memzone ice_dma_3208168513765406059 to be freed with physical address: 6442000960
ice_free_dma_mem(): memzone ice_dma_11087901075144763348 to be freed with physical address: 6441996736
ice_free_dma_mem(): memzone ice_dma_16633409296927961006 to be freed with physical address: 6441992512
ice_free_dma_mem(): memzone ice_dma_1154419662215305564 to be freed with physical address: 6441988288
ice_free_dma_mem(): memzone ice_dma_4046312770681434161 to be freed with physical address: 6441984064
ice_free_dma_mem(): memzone ice_dma_3420454183216295240 to be freed with physical address: 6441979840
ice_free_dma_mem(): memzone ice_dma_17792605879539383307 to be freed with physical address: 6441975616
ice_free_dma_mem(): memzone ice_dma_13181562260643887576 to be freed with physical address: 6441971392
ice_free_dma_mem(): memzone ice_dma_17988112496770031766 to be freed with physical address: 6441967168
ice_free_dma_mem(): memzone ice_dma_5140986781978558016 to be freed with physical address: 6442103744
ice_free_dma_mem(): memzone ice_dma_3113965078526090928 to be freed with physical address: 6441960768
ice_free_dma_mem(): memzone ice_dma_10902440988420557376 to be freed with physical address: 6441956544
ice_free_dma_mem(): memzone ice_dma_246884979093866138 to be freed with physical address: 6441952320
ice_free_dma_mem(): memzone ice_dma_11195527753848892639 to be freed with physical address: 6441948096
ice_free_dma_mem(): memzone ice_dma_16886747898492731157 to be freed with physical address: 6441943872
ice_free_dma_mem(): memzone ice_dma_3080795190563916780 to be freed with physical address: 6441939648
ice_free_dma_mem(): memzone ice_dma_6488577045961319360 to be freed with physical address: 6441935424
ice_free_dma_mem(): memzone ice_dma_3484064345513493355 to be freed with physical address: 6441931200
ice_free_dma_mem(): memzone ice_dma_15076490073660955612 to be freed with physical address: 6441926976
ice_free_dma_mem(): memzone ice_dma_15657222130731966145 to be freed with physical address: 6441922752
ice_free_dma_mem(): memzone ice_dma_3440459982884733209 to be freed with physical address: 6441918528
ice_free_dma_mem(): memzone ice_dma_7265424176592958696 to be freed with physical address: 6441914304
ice_free_dma_mem(): memzone ice_dma_2741239692768720756 to be freed with physical address: 6441910080
ice_free_dma_mem(): memzone ice_dma_6113074463396192680 to be freed with physical address: 6441905856
ice_free_dma_mem(): memzone ice_dma_5618512869495788058 to be freed with physical address: 6441901632
ice_free_dma_mem(): memzone ice_dma_18442203697087461307 to be freed with physical address: 6441897408
ice_free_dma_mem(): memzone ice_dma_10060654969369796535 to be freed with physical address: 6441893184
ice_free_dma_mem(): memzone ice_dma_6479098320206285270 to be freed with physical address: 6441888960
ice_free_dma_mem(): memzone ice_dma_6865984276888284866 to be freed with physical address: 6441884736
ice_free_dma_mem(): memzone ice_dma_4775271330282576301 to be freed with physical address: 6441880512
ice_free_dma_mem(): memzone ice_dma_9878412305202864430 to be freed with physical address: 6441876288
ice_free_dma_mem(): memzone ice_dma_17815423838275327987 to be freed with physical address: 6441872064
ice_free_dma_mem(): memzone ice_dma_18101489558877123639 to be freed with physical address: 6441867840
ice_free_dma_mem(): memzone ice_dma_1843294921553716391 to be freed with physical address: 6441863616
ice_free_dma_mem(): memzone ice_dma_10771650126348919179 to be freed with physical address: 6441859392
ice_free_dma_mem(): memzone ice_dma_7291371737306477413 to be freed with physical address: 6441855168
ice_free_dma_mem(): memzone ice_dma_8079734898414970443 to be freed with physical address: 6441850944
ice_free_dma_mem(): memzone ice_dma_11863189483990690959 to be freed with physical address: 6441846720
ice_free_dma_mem(): memzone ice_dma_8578309721178270889 to be freed with physical address: 6441842496
ice_free_dma_mem(): memzone ice_dma_9624724917544807376 to be freed with physical address: 6441838272
ice_free_dma_mem(): memzone ice_dma_8387836840063056462 to be freed with physical address: 6441834048
ice_free_dma_mem(): memzone ice_dma_1041971644230783236 to be freed with physical address: 6441829824
ice_free_dma_mem(): memzone ice_dma_17433581486830596529 to be freed with physical address: 6441966016
ice_free_dma_mem(): memzone ice_dma_1038658258978284763 to be freed with physical address: 6441823040
ice_free_dma_mem(): memzone ice_dma_13130654571480426426 to be freed with physical address: 6441818816
ice_free_dma_mem(): memzone ice_dma_1679459301482753263 to be freed with physical address: 6441814592
ice_free_dma_mem(): memzone ice_dma_4425412736596161000 to be freed with physical address: 6441810368
ice_free_dma_mem(): memzone ice_dma_4256212674106689699 to be freed with physical address: 6441806144
ice_free_dma_mem(): memzone ice_dma_13659551808036446605 to be freed with physical address: 6441801920
ice_free_dma_mem(): memzone ice_dma_13622912495765266903 to be freed with physical address: 6441797696
ice_free_dma_mem(): memzone ice_dma_8370413892779663346 to be freed with physical address: 6441793472
ice_free_dma_mem(): memzone ice_dma_14958138154067832751 to be freed with physical address: 6441789248
ice_free_dma_mem(): memzone ice_dma_2724516056540772536 to be freed with physical address: 6441785024
ice_free_dma_mem(): memzone ice_dma_5817517004329094838 to be freed with physical address: 6441780800
ice_free_dma_mem(): memzone ice_dma_5383640995823823989 to be freed with physical address: 6441776576
ice_free_dma_mem(): memzone ice_dma_8040804298649716153 to be freed with physical address: 6441772352
ice_free_dma_mem(): memzone ice_dma_6061689785907547294 to be freed with physical address: 6441768128
ice_free_dma_mem(): memzone ice_dma_13619360381580625191 to be freed with physical address: 6441763904
ice_free_dma_mem(): memzone ice_dma_3363803071889481898 to be freed with physical address: 6441759680
ice_free_dma_mem(): memzone ice_dma_8237416404792555052 to be freed with physical address: 6441755456
ice_free_dma_mem(): memzone ice_dma_1926024863863446878 to be freed with physical address: 6441751232
ice_free_dma_mem(): memzone ice_dma_17662060413381376218 to be freed with physical address: 6441747008
ice_free_dma_mem(): memzone ice_dma_2180726932627576841 to be freed with physical address: 6441742784
ice_free_dma_mem(): memzone ice_dma_7037813258806673541 to be freed with physical address: 6441738560
ice_free_dma_mem(): memzone ice_dma_8218804952340744493 to be freed with physical address: 6441734336
ice_free_dma_mem(): memzone ice_dma_10015431102515473082 to be freed with physical address: 6441730112
ice_free_dma_mem(): memzone ice_dma_10878497827597805498 to be freed with physical address: 6441725888
ice_free_dma_mem(): memzone ice_dma_15018370470704853960 to be freed with physical address: 6441721664
ice_free_dma_mem(): memzone ice_dma_275567260806208287 to be freed with physical address: 6441717440
ice_free_dma_mem(): memzone ice_dma_1551290663179877911 to be freed with physical address: 6441713216
ice_free_dma_mem(): memzone ice_dma_4294483253546513765 to be freed with physical address: 6441708992
ice_free_dma_mem(): memzone ice_dma_356208673286132194 to be freed with physical address: 6441704768
ice_free_dma_mem(): memzone ice_dma_16432545124205074453 to be freed with physical address: 6441700544
ice_free_dma_mem(): memzone ice_dma_3956591636409453006 to be freed with physical address: 6441696320
ice_free_dma_mem(): memzone ice_dma_1144663246963348999 to be freed with physical address: 6441692096
ice_free_dma_mem(): memzone ice_dma_1290174370734769800 to be freed with physical address: 6441828672
ice_free_dma_mem(): memzone ice_dma_18255000418148824689 to be freed with physical address: 6441685696
ice_free_dma_mem(): memzone ice_dma_8122686329101229506 to be freed with physical address: 6441681472
ice_free_dma_mem(): memzone ice_dma_10006814586030737298 to be freed with physical address: 6441677248
ice_free_dma_mem(): memzone ice_dma_11716721095828691796 to be freed with physical address: 6441673024
ice_free_dma_mem(): memzone ice_dma_13475549647553379463 to be freed with physical address: 6441668800
ice_free_dma_mem(): memzone ice_dma_1601445134487358038 to be freed with physical address: 6441664576
ice_free_dma_mem(): memzone ice_dma_14360680765204230542 to be freed with physical address: 6441660352
ice_free_dma_mem(): memzone ice_dma_16919573909913990732 to be freed with physical address: 6441656128
ice_free_dma_mem(): memzone ice_dma_13729699747937774266 to be freed with physical address: 6441651904
ice_free_dma_mem(): memzone ice_dma_2344936612764646177 to be freed with physical address: 6441647680
ice_free_dma_mem(): memzone ice_dma_5217217680171794335 to be freed with physical address: 6441643456
ice_free_dma_mem(): memzone ice_dma_3880840510332553699 to be freed with physical address: 6441639232
ice_free_dma_mem(): memzone ice_dma_5377494650834275727 to be freed with physical address: 6441635008
ice_free_dma_mem(): memzone ice_dma_12423288900504005130 to be freed with physical address: 6441630784
ice_free_dma_mem(): memzone ice_dma_2061380813347556392 to be freed with physical address: 6441626560
ice_free_dma_mem(): memzone ice_dma_10944763920999361021 to be freed with physical address: 6441622336
ice_free_dma_mem(): memzone ice_dma_17562298250591234824 to be freed with physical address: 6441618112
ice_free_dma_mem(): memzone ice_dma_8563172540640536769 to be freed with physical address: 6441613888
ice_free_dma_mem(): memzone ice_dma_11735956050288738885 to be freed with physical address: 6441609664
ice_free_dma_mem(): memzone ice_dma_16135665349135093752 to be freed with physical address: 6441605440
ice_free_dma_mem(): memzone ice_dma_15831485968935749280 to be freed with physical address: 6441601216
ice_free_dma_mem(): memzone ice_dma_14607801100363268777 to be freed with physical address: 6441596992
ice_free_dma_mem(): memzone ice_dma_15300574270019264620 to be freed with physical address: 6441592768
ice_free_dma_mem(): memzone ice_dma_14665742330990712239 to be freed with physical address: 6441588544
ice_free_dma_mem(): memzone ice_dma_5152496120003176639 to be freed with physical address: 6441584320
ice_free_dma_mem(): memzone ice_dma_8341384661139178139 to be freed with physical address: 6441580096
ice_free_dma_mem(): memzone ice_dma_2678902799960664357 to be freed with physical address: 6441575872
ice_free_dma_mem(): memzone ice_dma_5396298267869551551 to be freed with physical address: 6441571648
ice_free_dma_mem(): memzone ice_dma_12998025427894829764 to be freed with physical address: 6441567424
ice_free_dma_mem(): memzone ice_dma_13268978150604366673 to be freed with physical address: 6441563200
ice_free_dma_mem(): memzone ice_dma_1743716511783873833 to be freed with physical address: 6441558976
ice_free_dma_mem(): memzone ice_dma_1564496696064162692 to be freed with physical address: 6441554752
ice_free_dma_mem(): memzone ice_dma_6547695477757465364 to be freed with physical address: 6441690944
Port 0 is closed
Done

Bye...
22/03/2021 06:03:28                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Result PASSED:
22/03/2021 06:03:30             dut.10.240.183.145: kill_all: called by dut and has no prefix list.
22/03/2021 06:03:31                            dts: 
TEST SUITE ENDED: TestFlexibleRxd

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

* Re: [dts] [PATCH V1 0/2] add decorator to support pkg check
  2021-03-22  7:01 ` Huang, ZhiminX
@ 2021-03-22  7:04   ` Zhao, HaiyangX
  0 siblings, 0 replies; 7+ messages in thread
From: Zhao, HaiyangX @ 2021-03-22  7:04 UTC (permalink / raw)
  To: Huang, ZhiminX, dts



> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Huang, ZhiminX
> Sent: Monday, March 22, 2021 15:01
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1 0/2] add decorator to support pkg check
> 
> > -----Original Message-----
> > From: Huang, ZhiminX <zhiminx.huang@intel.com>
> > Sent: Monday, March 22, 2021 2:38 PM
> > To: dts@dpdk.org
> > Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> > Subject: [dts] [PATCH V1 0/2] add decorator to support pkg check
> >
> Tested-by: Huang Zhimin <zhiminx.huang@intel.com>

Acked-by: Haiyang Zhao <haiyangx.zhao@intel.com>

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

* Re: [dts] [PATCH V1 1/2] remove replace pkg case
  2021-03-22  6:37 ` [dts] [PATCH V1 1/2] remove replace pkg case Zhimin Huang
@ 2021-03-25  6:06   ` Tu, Lijuan
  0 siblings, 0 replies; 7+ messages in thread
From: Tu, Lijuan @ 2021-03-25  6:06 UTC (permalink / raw)
  To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX



> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Zhimin Huang
> Sent: 2021年3月22日 14:38
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1 1/2] remove replace pkg case
> 
> *.add case in checklist
> 
> Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
> ---
>  conf/test_case_checklist.json | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json index
> 1a686d8..6b2b3e0 100644
> --- a/conf/test_case_checklist.json
> +++ b/conf/test_case_checklist.json
> @@ -3210,6 +3210,21 @@
>              "Comments": "only i40e and ixgbe driver support this case"
>          }
>  	],
> +    "check_effect_replace_pkg_RXID_22_to_RXID_16": [
> +        {
> +            "OS": [
> +                "ALL"
> +            ],
> +            "NIC": [
> +                "ALL"
> +            ],
> +            "Target": [
> +                "ALL"
> +            ],
> +            "Bug ID": "",
> +            "Comments": "remove replace pkg case"
> +        }
> +	],
>      "tunnel_filter_nvgre": [
>          {
>              "OS": [
> --
> 1.8.3.1

Could you explain why the case added in checklist ,and others add decorator for skipping?



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

end of thread, other threads:[~2021-03-25  6:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-22  6:37 [dts] [PATCH V1 0/2] add decorator to support pkg check Zhimin Huang
2021-03-22  6:37 ` [dts] [PATCH V1 1/2] remove replace pkg case Zhimin Huang
2021-03-25  6:06   ` Tu, Lijuan
2021-03-22  6:37 ` [dts] [PATCH V1 2/2] tests/pf_vf_flexible:add decorator for pkg check Zhimin Huang
2021-03-22  6:57 ` [dts] [PATCH V1 0/2] add decorator to support " Huang, ZhiminX
2021-03-22  7:01 ` Huang, ZhiminX
2021-03-22  7:04   ` Zhao, HaiyangX

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).