test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls
@ 2020-11-10  6:18 yufengmx
  2020-11-10  6:18 ` [dts] [PATCH V6 1/3] flexible_rxd: unify common test content yufengmx
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: yufengmx @ 2020-11-10  6:18 UTC (permalink / raw)
  To: dts, hailinx.xu; +Cc: yufengmx


v6: 
 -  update compile dep file name based on 20.11 rc3 change. 
 -  upload iavf_flexible_descriptor suite script for flexible iavf merged in 20.11 rc3. 

v5: 
 -  rebase source code 

v4: 
 -  add non escape string limit. 

v3: 
 -  update compile dep file name based on 20.11 rc1 change. 

v2: 
 -  update iavf test content 
 -  change the 'flex_desc' to 'proto_xtr' when start testpmd. 
 -  change check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues RXDIDs. 

v1: 
 - add test cases for iavf/mpls. 

yufengmx (3):
  flexible_rxd: unify common test content
  flexible_rxd: add mpls test cases
  iavf_flexible_descriptor: upload suite

 tests/TestSuite_flexible_rxd.py             | 255 ++++-------
 tests/TestSuite_iavf_flexible_descriptor.py | 246 ++++++++++
 tests/flexible_common.py                    | 483 ++++++++++++++++++++
 3 files changed, 825 insertions(+), 159 deletions(-)
 create mode 100644 tests/TestSuite_iavf_flexible_descriptor.py
 create mode 100644 tests/flexible_common.py

-- 
2.21.0


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

* [dts] [PATCH V6 1/3] flexible_rxd: unify common test content
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
@ 2020-11-10  6:18 ` yufengmx
  2020-11-18  6:43   ` Chen, Zhaoyan
  2020-11-10  6:18 ` [dts] [PATCH V6 2/3] flexible_rxd: add mpls test cases yufengmx
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: yufengmx @ 2020-11-10  6:18 UTC (permalink / raw)
  To: dts, hailinx.xu; +Cc: yufengmx


unify common test content.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 tests/flexible_common.py | 483 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 483 insertions(+)
 create mode 100644 tests/flexible_common.py

diff --git a/tests/flexible_common.py b/tests/flexible_common.py
new file mode 100644
index 0000000..fa3c64d
--- /dev/null
+++ b/tests/flexible_common.py
@@ -0,0 +1,483 @@
+# BSD LICENSE
+#
+# Copyright(c) 2020 Intel Corporation. All rights reserved.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+#   * Redistributions of source code must retain the above copyright
+#     notice, this list of conditions and the following disclaimer.
+#   * Redistributions in binary form must reproduce the above copyright
+#     notice, this list of conditions and the following disclaimer in
+#     the documentation and/or other materials provided with the
+#     distribution.
+#   * Neither the name of Intel Corporation nor the names of its
+#     contributors may be used to endorse or promote products derived
+#     from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import time
+from packet import Packet
+from pmd_output import PmdOutput
+
+
+class FlexibleRxdBase(object):
+
+    def init_base(self, pci, dst_mac, test_type, dut_index=0):
+        tester_port_id = self.tester.get_local_port(self.dut_ports[dut_index])
+        self.__tester_intf = self.tester.get_interface(tester_port_id)
+        self.__src_mac = self.tester.get_mac(tester_port_id)
+        self.__dst_mac = dst_mac
+
+        self.__app_path = self.dut.apps_name["test-pmd"]
+        self.__pmdout = PmdOutput(self.dut)
+        self.__test_type = test_type
+        self.__pci = pci
+        self.__pkg_count = 1
+        self.__is_pmd_on = False
+
+    @property
+    def __is_iavf(self):
+        return self.__test_type == 'iavf'
+
+    @property
+    def __is_pf(self):
+        return self.__test_type == 'pf'
+
+    def __get_port_option(self, flex_opt='', queue_num=None):
+        nb_core = 2
+        num = 4 if self.nic == 'foxville' or self.__is_iavf else 32
+        queue_num = queue_num if queue_num else num
+        # port option
+        port_option = (
+            '{queue} '
+            '--portmask=0x1 '
+            '--nb-cores={nb_core}').format(**{
+                'queue': '--rxq={0} --txq={0} '.format(queue_num)
+                if flex_opt != 'ip_offset' else '',
+                'nb_core': nb_core,
+            })
+        return port_option
+
+    def __check_rxdid(self, rxdid, out):
+        rxdid = rxdid if isinstance(rxdid, list) else [rxdid]
+        pat = "RXDID\[(\d+)\]"
+        for rx in rxdid:
+            if self.__is_pf:
+                value = re.findall(pat, rx)
+                if not value:
+                    continue
+                check_str = "RXDID : {}".format(value[0])
+                self.verify(
+                    check_str in out,
+                    "rxdid value error, expected rxdid is %s" % check_str)
+            else:
+                self.verify(
+                    rx in out,
+                    "rxdid value error, expected rxdid is %s" % rx)
+
+    def start_testpmd(self, flex_opt, rxdid, queue_num=None):
+        """
+        start testpmd
+        """
+        param_type = 'proto_xtr'
+        # port option
+        port_option = self.__get_port_option(flex_opt, queue_num=queue_num)
+        # start test pmd
+        out = self.__pmdout.start_testpmd(
+            "1S/3C/1T",
+            param=port_option,
+            eal_param='' if self.__is_iavf else '--log-level="ice,8"',
+            ports=[self.__pci],
+            port_options={self.__pci: '%s=%s' % (param_type, flex_opt)})
+        self.__is_pmd_on = True
+        # check rxdid value correct
+        self.__check_rxdid(rxdid, out)
+        # set test pmd command
+        if flex_opt == 'ip_offset':
+            cmds = [
+                'set verbose 1',
+                'start',
+            ]
+        else:
+            cmds = [
+                "set verbose 1",
+                "set fwd io",
+                "set promisc all off",
+                "clear port stats all",
+                "start", ]
+        [self.dut.send_expect(cmd, "testpmd> ", 15) for cmd in cmds]
+
+    def close_testpmd(self):
+        if not self.__is_pmd_on:
+            return
+        try:
+            self.__pmdout.quit()
+            self.__is_pmd_on = False
+        except Exception as e:
+            pass
+
+    def __send_pkts_and_get_output(self, pkt_str):
+        pkt = Packet(pkt_str)
+        pkt.send_pkt(
+            self.tester,
+            tx_port=self.__tester_intf,
+            count=self.__pkg_count,
+            timeout=30)
+        time.sleep(0.5)
+        output = self.dut.get_session_output(timeout=3)
+        return output
+
+    def __verify_common(self, pkts_list, msg=None):
+        """
+        send MPLS type packet, verify packet ip_offset value correct
+        param pkts_list:
+            [send packets list, ip_offset expected value]
+        """
+        msg = msg if msg else "ip_offset value error, case test failed"
+        for pkt_str, expected_strs in pkts_list:
+            out = self.__send_pkts_and_get_output(
+                pkt_str.format(**{
+                    'src_mac': self.__src_mac,
+                    'dst_mac': self.__dst_mac}))
+            # validation results
+            _expected_strs = [expected_strs] \
+                if isinstance(expected_strs, str) else \
+                expected_strs
+            self.verify(all([e in out for e in _expected_strs]), msg)
+
+    def check_single_VLAN_fields_in_RXD_8021Q(self):
+        """
+        Check single VLAN fields in RXD (802.1Q)
+        """
+        self.start_testpmd("vlan", "RXDID[17]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x8100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
+        msg = "The packet does not carry a VLAN tag."
+        fields_list = ["vlan"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_single_VLAN_fields_in_RXD_8021ad(self):
+        """
+        Check single VLAN fields in RXD (802.1ad)
+        """
+        self.start_testpmd("vlan", "RXDID[17]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x88A8)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
+        msg = "stag result is not expected (stag=1:0:23)"
+        fields_list = ["stag=1:0:23"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag(self):
+        """
+        Check double VLAN fields in RXD (802.1Q) only 1 VLAN tag
+        """
+        self.start_testpmd("vlan", "RXDID[17]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x9100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
+        msg = "stag result is not expected (stag=1:0:23)"
+        fields_list = ["stag=1:0:23"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag(self):
+        """
+        Check double VLAN fields in RXD (802.1Q) 2 VLAN tags
+        """
+        self.start_testpmd("vlan", "RXDID[17]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x9100)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()'
+        msg = "There are no related fields in the received VLAN packet"
+        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_double_VLAN_fields_in_RXD_8021ad(self):
+        """
+        Check double VLAN fields in RXD (802.1ad)
+        """
+        self.start_testpmd("vlan", "RXDID[17]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x88A8)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()'
+        msg = "There are no related fields in the received VLAN packet"
+        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_IPv4_fields_in_RXD(self):
+        """
+        Check IPv4 fields in RXD
+        """
+        self.start_testpmd("ipv4", "RXDID[18]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IP(tos=23, ttl=98)/UDP()/Raw(load="XXXXXXXXXX")'
+        msg = "There are no related fields in the received IPV4 packet"
+        fields_list = ["ver=4", "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_IPv6_fields_in_RXD(self):
+        """
+        Check IPv6 fields in RXD
+        """
+        self.start_testpmd("ipv6", "RXDID[19]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
+        msg = "There are no related fields in the received IPV6 packet"
+        fields_list = [
+            "ver=6", "tc=12", "flow_hi4=0x9", "nexthdr=17", "hoplimit=34"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_IPv6_flow_field_in_RXD(self):
+        """
+        Check IPv6 flow field in RXD
+        """
+        self.start_testpmd("ipv6_flow", "RXDID[20]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
+        msg = "There are no related fields in the received IPV6_flow packet"
+        fields_list = ["ver=6", "tc=12", "flow=0x98765"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_TCP_fields_in_IPv4_in_RXD(self):
+        """
+        Check TCP fields in IPv4 in RXD
+        """
+        self.start_testpmd("tcp", "RXDID[21]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IP()/TCP(flags="AS")/Raw(load="XXXXXXXXXX")'
+        msg = "There are no related fields in the received TCP packet"
+        fields_list = ["doff=5", "flags=AS"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_TCP_fields_in_IPv6_in_RXD(self):
+        """
+        Check TCP fields in IPv6 in RXD
+        """
+        self.start_testpmd("tcp", "RXDID[21]")
+        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6()/TCP(flags="S")/Raw(load="XXXXXXXXXX")'
+        msg = "There are no related fields in the received TCP packet"
+        fields_list = ["doff=5", "flags=S"]
+        self.__verify_common([[pkts_str, fields_list]], msg)
+
+    def check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
+        """
+        Check IPv4, IPv6, TCP fields in RXD on specific queues
+        """
+        self.start_testpmd(
+            "'[(2):ipv4,(3):ipv6,(4):tcp]'",
+            ["RXDID[18]", "RXDID[19]", "RXDID[22]"] if self.__is_iavf else
+            ["RXDID[18]", "RXDID[19]", "RXDID[21]", "RXDID[22]"],
+            16)
+        self.dut.send_expect(
+            "flow create 0 ingress pattern eth {}/ ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 23 ttl is 98 / end actions queue index 2 / end".format(
+                '' if self.__is_iavf else "dst is {} ".format(self.__dst_mac)),
+            "created")
+        self.dut.send_expect(
+            "flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end",
+            "created")
+        # send IPv4
+        pkts_str = \
+            'Ether(dst="{dst_mac}")/IP(src="192.168.0.1",dst="192.168.0.2",tos=23,ttl=98)/UDP()/Raw(load="XXXXXXXXXX")'
+        msg1 = "There are no relevant fields in the received IPv4 packet."
+        fields_list1 = ["Receive queue=0x2", "ver=4",
+                        "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
+        self.__verify_common([[pkts_str, fields_list1]], msg1)
+
+        # send IPv6
+        pkts_str = \
+            'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(src="2001::3", dst="2001::4", tc=12, hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
+        msg2 = "There are no relevant fields in the received IPv6 packet."
+        fields_list2 = [
+            "Receive queue=0x3",
+            "ver=6",
+            "tc=12",
+            "flow_hi4=0x9",
+            "nexthdr=17",
+            "hoplimit=34"]
+        self.__verify_common([[pkts_str, fields_list2]], msg2)
+
+        # send TCP
+        self.dut.send_expect("flow flush 0", "testpmd>")
+        self.dut.send_expect(
+            "flow create 0 ingress pattern eth {0}/ ipv4 src is 192.168.0.1 dst is 192.168.0.2 / tcp src is 25 dst is 23 / end actions queue index {1} / end".format(
+                '' if self.__is_iavf else "dst is {} ".format(self.__dst_mac),
+                4, ),
+            "created")
+        pkts_str = \
+            'Ether(dst="{dst_mac}")/IP(src="192.168.0.1", dst="192.168.0.2")/TCP(flags="AS", dport=23, sport=25)/Raw(load="XXXXXXXXXX")'
+        msg3 = "There are no relevant fields in the received TCP packet."
+        fields_list3 = [
+            "Receive queue=0x4",
+            "doff=5",
+            "flags=AS"]
+        self.__verify_common([[pkts_str, fields_list3]], msg3)
+
+    def check_testpmd_use_different_parameters(self):
+        """
+        Check testpmd use different parameters start
+        """
+        param_type = 'proto_xtr'
+        # port option
+        port_opt = self.__get_port_option()
+        # use error parameter Launch testpmd, testpmd can not be started
+        cmd = (
+            "-l 1,2,3 "
+            "-n {mem_channel} "
+            "-w {pci},{param_type}=vxlan "
+            "-- -i "
+            "{port_opt}").format(**{
+                'mem_channel': self.dut.get_memory_channels(),
+                "pci": self.__pci,
+                "param_type": param_type,
+                "port_opt": port_opt,
+            })
+        try:
+            out = self.__pmdout.execute_cmd(self.__app_path + cmd, "#")
+            self.__is_pmd_on = False
+        except Exception as e:
+            self.__is_pmd_on = True
+        expected = \
+            "iavf_lookup_proto_xtr_type(): wrong proto_xtr type, it should be: vlan|ipv4|ipv6|ipv6_flow|tcp|ip_offset" \
+            if self.__is_iavf else \
+            "handle_proto_xtr_arg(): The protocol extraction parameter is wrong : 'vxlan'"
+        self.close_testpmd()
+        self.verify(expected in out, "case test failed, testpmd started")
+        # don't use parameter launch testpmd, testpmd started and rxdid value
+        # is the default
+        cmd = (
+            "-l 1,2,3 "
+            "-n {mem_channel} "
+            "-w {pci} "
+            "--log-level='ice,8' "
+            "-- -i "
+            "{port_opt}").format(**{
+                'mem_channel': self.dut.get_memory_channels(),
+                "pci": self.__pci,
+                "param_type": param_type,
+                "port_opt": port_opt,
+            })
+        out = self.__pmdout.execute_cmd(self.__app_path + cmd, "testpmd>")
+        self.__is_pmd_on = True
+        self.close_testpmd()
+        self.__check_rxdid("RXDID[22]", out)
+
+    def check_ip_offset_of_ip(self):
+        """
+        Check ip offset of ip
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=18'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=18']]
+        self.__verify_common(pkts_list)
+
+    def check_ip_offset_with_vlan(self):
+        """
+        check ip offset with vlan
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=22'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=22']]
+        self.__verify_common(pkts_list)
+
+    def check_ip_offset_with_2_vlan_tag(self):
+        """
+        check offset with 2 vlan tag
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=26']]
+        self.__verify_common(pkts_list)
+
+    def check_ip_offset_with_multi_MPLS(self):
+        """
+        check ip offset with multi MPLS
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=18'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=22'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=34'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=18'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=22'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=34']]
+        self.__verify_common(pkts_list)
+
+    def check_ip_offset_with_multi_MPLS_with_vlan_tag(self):
+        """
+        check ip offset with multi MPLS with vlan tag
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=22'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=34'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=38'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=22'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=34'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=38']]
+        self.__verify_common(pkts_list)
+
+    def check_ip_offset_with_multi_MPLS_with_2_vlan_tag(self):
+        """
+        check ip offset with multi MPLS with 2 vlan tag
+        """
+        self.start_testpmd("ip_offset", "RXDID[25]")
+        pkts_list = [
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
+             'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=34'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=38'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
+                'ip_offset=42'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
+                'ip_offset=26'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=30'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=34'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=38'],
+            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
+                'ip_offset=42']]
+        self.__verify_common(pkts_list)
-- 
2.21.0


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

* [dts] [PATCH V6 2/3] flexible_rxd: add mpls test cases
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-11-10  6:18 ` [dts] [PATCH V6 1/3] flexible_rxd: unify common test content yufengmx
@ 2020-11-10  6:18 ` yufengmx
  2020-11-10  6:18 ` [dts] [PATCH V6 3/3] iavf_flexible_descriptor: upload suite yufengmx
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: yufengmx @ 2020-11-10  6:18 UTC (permalink / raw)
  To: dts, hailinx.xu; +Cc: yufengmx


add mpls test cases.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 tests/TestSuite_flexible_rxd.py | 255 ++++++++++++--------------------
 1 file changed, 96 insertions(+), 159 deletions(-)

diff --git a/tests/TestSuite_flexible_rxd.py b/tests/TestSuite_flexible_rxd.py
index 7bef76c..733c62e 100644
--- a/tests/TestSuite_flexible_rxd.py
+++ b/tests/TestSuite_flexible_rxd.py
@@ -1,4 +1,4 @@
-# Copyright (c) <2019> Intel Corporation
+# Copyright (c) <2020> Intel Corporation
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -33,246 +33,183 @@
 
 import time
 from test_case import TestCase
-from packet import Packet
-from pmd_output import PmdOutput
+from flexible_common import FlexibleRxdBase
 
 
-class TestFlexibleRxd(TestCase):
+class TestFlexibleRxd(TestCase, FlexibleRxdBase):
+
+    def preset_compilation(self):
+        """
+        Modify the dpdk code.
+        """
+        cmds = [
+            "cd " + self.dut.base_dir,
+            "cp ./app/test-pmd/util.c .",
+            r"""sed -i "/if dpdk_conf.has('RTE_NET_IXGBE')/i\if dpdk_conf.has('RTE_NET_ICE')\n\tdeps += 'net_ice'\nendif" app/test-pmd/meson.build""",
+            "sed -i '/#include <rte_flow.h>/a\#include <rte_pmd_ice.h>' app/test-pmd/util.c",
+            "sed -i '/if (is_timestamp_enabled(mb))/i\                rte_net_ice_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c",
+        ]
+        [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
+        self.dut.build_install_dpdk(self.dut.target)
+
+    def restore_compilation(self):
+        """
+         Resume editing operation.
+        """
+        cmds = [
+            "cd " + self.dut.base_dir,
+            "cp ./util.c ./app/test-pmd/",
+            "sed -i '/pmd_ice/d' app/test-pmd/meson.build",
+            "rm -rf  ./util.c",
+        ]
+        [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
+        self.dut.build_install_dpdk(self.dut.target)
 
     def set_up_all(self):
         """
         run at the start of each test suite.
         """
-        self.verify(self.nic in ["columbiaville_25g", "columbiaville_100g", "foxville"],
-                    "flexible rxd only supports CVL NIC.")
-        self.nb_core = 2
-        self.pkg_count = 1
+        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.pci_info = self.dut.ports_info[0]['pci']
         self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
         self.cores = self.dut.get_core_list("1S/3C/1T", socket=self.ports_socket)
-        self.verify(len(self.cores) >= 3, "The machine has too few cores.")
-        self.tx_interface = self.tester.get_interface(self.tester.get_local_port(self.dut_ports[0]))
+        self.verify(len(self.cores) >= 3, "Insufficient cpu cores for testing")
+        self.preset_compilation()
+        self.pci = self.dut.ports_info[0]['pci']
         self.dst_mac = self.dut.get_mac_address(self.dut_ports[0])
-        self.src_mac = self.tester.get_mac(self.tester.get_local_port(self.dut_ports[0]))
-        self.pmdout = PmdOutput(self.dut)
-        self.prepare_test_pmd()
+        self.init_base(self.pci, self.dst_mac, 'pf')
 
-    def set_up(self):
-        """
-        Run before each test case.
-        """
-        pass
-
-    def prepare_test_pmd(self):
+    def tear_down_all(self):
         """
-        Modify the dpdk code.
+        Run after each test suite.
         """
-        self.dut.send_expect("cp ./app/test-pmd/util.c .", "#", 15)
-        self.dut.send_expect("cp ./app/test-pmd/meson.build /root/", "#", 15)
-        pattern = r"/if dpdk_conf.has('RTE_NET_IXGBE')/i\if dpdk_conf.has('RTE_NET_ICE')\n\tdeps += 'net_ice'\nendif"
-        self.dut.send_expect(f'sed -i "{pattern}" app/test-pmd/meson.build', "#", 15)
-        self.dut.send_expect(
-            "sed -i '/#include <rte_flow.h>/a\#include <rte_pmd_ice.h>' app/test-pmd/util.c", "#", 15)
-        self.dut.send_expect(
-            "sed -i '/if (ol_flags & PKT_RX_TIMESTAMP)/i\                rte_net_ice_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c", "#", 15)
-        self.dut.build_install_dpdk(self.dut.target)
+        self.restore_compilation()
 
-    def restory_test_pmd(self):
+    def set_up(self):
         """
-         Resume editing operation.
+        Run before each test case.
         """
-        self.dut.send_expect("\cp ./util.c ./app/test-pmd/", "#", 15)
-        self.dut.send_expect("\cp /root/meson.build ./app/test-pmd/", "#", 15)
-        self.dut.send_expect("rm -rf  /root/meson.build", "#", 15)
-        self.dut.send_expect("rm -rf  ./util.c", "#", 15)
-        self.dut.build_install_dpdk(self.dut.target)
-
-    def start_testpmd(self, proto_xdr):
-        """
-        start testpmd
-        """
-        num = '4' if self.nic == 'foxville' else '32'
-        para = '--rxq=%s --txq=%s --portmask=0x1 --nb-cores=%d' % (num, num, self.nb_core)
-        self.pmdout.start_testpmd("1S/3C/1T", param=para, ports=[self.pci_info], port_options={self.pci_info: 'proto_xtr=%s' % proto_xdr})
-        self.pmdout.execute_cmd("set verbose 1", "testpmd> ", 120)
-        self.pmdout.execute_cmd("set fwd io", "testpmd> ", 120)
-        self.pmdout.execute_cmd("set promisc all off", "testpmd> ", 120)
-        self.pmdout.execute_cmd("clear port stats all", "testpmd> ", 120)
-        self.pmdout.execute_cmd("start", "testpmd> ", 120)
+        pass
 
-    def verify_result(self, fields_list, out, mesg):
+    def tear_down(self):
         """
-        Validation results
+        Run after each test case.
         """
-        for field in fields_list:
-            self.verify(field in out, mesg)
-        self.dut.send_expect("quit", "#", 15)
-
-    def send_pkts_and_get_output(self, pkts_str):
-        pkt = Packet(pkts_str)
-        pkt.send_pkt(self.tester, tx_port=self.tx_interface, count=self.pkg_count, timeout=30)
-        time.sleep(3)
-        out_info = self.dut.get_session_output(timeout=3)
-        return out_info
+        self.close_testpmd()
+        time.sleep(2)
+        self.dut.kill_all()
 
     def test_check_single_VLAN_fields_in_RXD_8021Q(self):
         """
         Check single VLAN fields in RXD (802.1Q)
         """
-        self.start_testpmd("vlan")
-        pkts_str = 'Ether(src="%s", dst="%s", type=0x8100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "The packet does not carry a VLAN tag."
-        fields_list = ["vlan"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_single_VLAN_fields_in_RXD_8021Q()
 
     def test_check_single_VLAN_fields_in_RXD_8021ad(self):
         """
         Check single VLAN fields in RXD (802.1ad)
         """
-        self.start_testpmd("vlan")
-        pkts_str = 'Ether(src="%s", dst="%s", type=0x88A8)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "stag result is not expected (stag=1:0:23)"
-        fields_list = ["stag=1:0:23"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_single_VLAN_fields_in_RXD_8021ad()
 
     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.start_testpmd("vlan")
-        pkts_str = 'Ether(src="%s", dst="%s", type=0x9100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "stag result is not expected (stag=1:0:23)"
-        fields_list = ["stag=1:0:23"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag()
 
     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.start_testpmd("vlan")
-        pkts_str = 'Ether(src="%s", dst="%s", type=0x9100)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received VLAN packet"
-        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag()
 
     def test_check_double_VLAN_fields_in_RXD_8021ad(self):
         """
         Check double VLAN fields in RXD (802.1ad)
         """
-        self.start_testpmd("vlan")
-        pkts_str = 'Ether(src="%s", dst="%s", type=0x88A8)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received VLAN packet"
-        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_double_VLAN_fields_in_RXD_8021ad()
 
     def test_check_IPv4_fields_in_RXD(self):
         """
         Check IPv4 fields in RXD
         """
-        self.start_testpmd("ipv4")
-        pkts_str = 'Ether(src="%s", dst="%s")/IP(tos=23, ttl=98)/UDP()/Raw(load="XXXXXXXXXX")' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received IPV4 packet"
-        fields_list = ["ver=4", "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_IPv4_fields_in_RXD()
 
     def test_check_IPv6_fields_in_RXD(self):
         """
         Check IPv6 fields in RXD
         """
-        self.start_testpmd("ipv6")
-        pkts_str = 'Ether(src="%s", dst="%s")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received IPV6 packet"
-        fields_list = ["ver=6", "tc=12", "flow_hi4=0x9", "nexthdr=17", "hoplimit=34"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_IPv6_fields_in_RXD()
 
     def test_check_IPv6_flow_field_in_RXD(self):
         """
         Check IPv6 flow field in RXD
         """
-        self.start_testpmd("ipv6_flow")
-        pkts_str = 'Ether(src="%s", dst="%s")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received IPV6_flow packet"
-        fields_list = ["ver=6", "tc=12", "flow=0x98765"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_IPv6_flow_field_in_RXD()
 
     def test_check_TCP_fields_in_IPv4_in_RXD(self):
         """
         Check TCP fields in IPv4 in RXD
         """
-        self.start_testpmd("tcp")
-        pkts_str = 'Ether(src="%s", dst="%s")/IP()/TCP(flags="AS")/Raw(load="XXXXXXXXXX")' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received TCP packet"
-        fields_list = ["doff=5", "flags=AS"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_TCP_fields_in_IPv4_in_RXD()
 
     def test_check_TCP_fields_in_IPv6_in_RXD(self):
         """
         Check TCP fields in IPv6 in RXD
         """
-        self.start_testpmd("tcp")
-        pkts_str = 'Ether(src="%s", dst="%s")/IPv6()/TCP(flags="S")/Raw(load="XXXXXXXXXX")' % (self.src_mac, self.dst_mac)
-        out = self.send_pkts_and_get_output(pkts_str)
-        mesg = "There are no related fields in the received TCP packet"
-        fields_list = ["doff=5", "flags=S"]
-        self.verify_result(fields_list, out, mesg)
+        self.check_TCP_fields_in_IPv6_in_RXD()
 
     def test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
         """
         Check IPv4, IPv6, TCP fields in RXD on specific queues
         """
-        self.start_testpmd("'[(2):ipv4,(3):ipv6,(4):tcp]'")
-        self.dut.send_expect(
-            "flow create 0 ingress pattern eth dst is %s / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 23 ttl is 98 / end actions queue index 2 / end" % self.dst_mac, "created")
-        self.dut.send_expect(
-            "flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end", "created")
-        self.dut.send_expect(
-            "flow create 0 ingress pattern eth dst is %s / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / tcp src is 25 dst is 23 / end actions queue index 4 / end" % self.dst_mac, "created")
+        self.check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues()
+
+    def test_check_testpmd_use_different_parameters(self):
+        """
+        Check testpmd use different parameters start
+        """
+        self.check_testpmd_use_different_parameters()
+
+    def test_check_ip_offset_of_ip(self):
+        """
+        Check ip offset of ip
+        """
+        self.check_ip_offset_of_ip()
 
-        # send IPv4
-        pkts_str = 'Ether(dst="%s")/IP(src="192.168.0.1",dst="192.168.0.2",tos=23,ttl=98)/UDP()/Raw(load="XXXXXXXXXX")' % (self.dst_mac)
-        out1 = self.send_pkts_and_get_output(pkts_str)
-        mesg1 = "There are no relevant fields in the received IPv4 packet."
-        fields_list1 = ["Receive queue=0x2", "ver=4", "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
-        for field1 in fields_list1:
-            self.verify(field1 in out1, mesg1)
+    def test_check_ip_offset_with_vlan(self):
+        """
+        check ip offset with vlan
+        """
+        self.check_ip_offset_with_vlan()
 
-        # send IPv6
-        pkts_str = "Ether(src='%s', dst='%s')/IPv6(src='2001::3', dst='2001::4', tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load='XXXXXXXXXX')" % (self.src_mac, self.dst_mac)
-        out2 = self.send_pkts_and_get_output(pkts_str)
-        mesg2 = "There are no relevant fields in the received IPv6 packet."
-        fields_list2 = ["Receive queue=0x3", "ver=6", "tc=12", "flow_hi4=0x9", "nexthdr=17", "hoplimit=34"]
-        for field2 in fields_list2:
-            self.verify(field2 in out2, mesg2)
+    def test_check_ip_offset_with_2_vlan_tag(self):
+        """
+        check offset with 2 vlan tag
+        """
+        self.check_ip_offset_with_2_vlan_tag()
 
-        # send TCP
-        pkts_str = 'Ether(dst="%s")/IP(src="192.168.0.1", dst="192.168.0.2")/TCP(flags="AS", dport=23, sport=25)/Raw(load="XXXXXXXXXX")' % (self.dst_mac)
-        out3 = self.send_pkts_and_get_output(pkts_str)
-        mesg3 = "There are no relevant fields in the received TCP packet."
-        fields_list3 = ["Receive queue=0x4", "doff=5", "flags=AS"]
-        for field3 in fields_list3:
-            self.verify(field3 in out3, mesg3)
-        self.dut.send_expect("quit", "#", 15)
+    def test_check_ip_offset_with_multi_MPLS(self):
+        """
+        check ip offset with multi MPLS
+        """
+        self.check_ip_offset_with_multi_MPLS()
 
-    def tear_down(self):
+    def test_check_ip_offset_with_multi_MPLS_with_vlan_tag(self):
         """
-        Run after each test case.
+        check ip offset with multi MPLS with vlan tag
         """
-        self.dut.kill_all()
-        time.sleep(2)
+        self.check_ip_offset_with_multi_MPLS_with_vlan_tag()
 
-    def tear_down_all(self):
+    def test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag(self):
         """
-        Run after each test suite.
+        check ip offset with multi MPLS with 2 vlan tag
         """
-        self.restory_test_pmd()
+        self.check_ip_offset_with_multi_MPLS_with_2_vlan_tag()
-- 
2.21.0


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

* [dts] [PATCH V6 3/3] iavf_flexible_descriptor: upload suite
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-11-10  6:18 ` [dts] [PATCH V6 1/3] flexible_rxd: unify common test content yufengmx
  2020-11-10  6:18 ` [dts] [PATCH V6 2/3] flexible_rxd: add mpls test cases yufengmx
@ 2020-11-10  6:18 ` yufengmx
  2020-11-10  6:24 ` [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: yufengmx @ 2020-11-10  6:18 UTC (permalink / raw)
  To: dts, hailinx.xu; +Cc: yufengmx


upload iavf_flexible_descriptor suite.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 tests/TestSuite_iavf_flexible_descriptor.py | 246 ++++++++++++++++++++
 1 file changed, 246 insertions(+)
 create mode 100644 tests/TestSuite_iavf_flexible_descriptor.py

diff --git a/tests/TestSuite_iavf_flexible_descriptor.py b/tests/TestSuite_iavf_flexible_descriptor.py
new file mode 100644
index 0000000..69f38bf
--- /dev/null
+++ b/tests/TestSuite_iavf_flexible_descriptor.py
@@ -0,0 +1,246 @@
+# Copyright (c) <2020> Intel Corporation
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+# - Redistributions of source code must retain the above copyright
+#   notice, this list of conditions and the following disclaimer.
+#
+# - Redistributions in binary form must reproduce the above copyright
+#   notice, this list of conditions and the following disclaimer in
+#   the documentation and/or other materials provided with the
+#   distribution.
+#
+# - Neither the name of Intel Corporation nor the names of its
+#   contributors may be used to endorse or promote products derived
+#   from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+# OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+import time
+import traceback
+
+
+from test_case import TestCase
+from flexible_common import FlexibleRxdBase
+
+
+class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
+
+    def preset_compilation(self):
+        """
+        Modify the dpdk code.
+        """
+        cmds = [
+            "cd " + self.dut.base_dir,
+            "cp ./app/test-pmd/util.c .",
+            r"""sed -i "/if dpdk_conf.has('RTE_NET_IXGBE')/i\if dpdk_conf.has('RTE_NET_ICE')\n\tdeps += ['net_ice', 'net_iavf']\nendif" app/test-pmd/meson.build""",
+            "sed -i '/#include <rte_flow.h>/a\#include <rte_pmd_iavf.h>' app/test-pmd/util.c",
+            "sed -i '/if (ol_flags & PKT_RX_RSS_HASH)/i\                rte_pmd_ifd_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c",
+        ]
+        [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
+        self.dut.build_install_dpdk(self.dut.target)
+
+    def restore_compilation(self):
+        """
+         Resume editing operation.
+        """
+        cmds = [
+            "cd " + self.dut.base_dir,
+            "cp ./util.c ./app/test-pmd/",
+            "sed -i '/pmd_iavf/d' app/test-pmd/meson.build",
+            "rm -rf  ./util.c",
+        ]
+        [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
+        self.dut.build_install_dpdk(self.dut.target)
+
+    def create_vf(self):
+        # vf relevant content
+        dut_index = 0
+        used_dut_port = self.dut_ports[dut_index]
+        self.dut.send_expect('modprobe vfio-pci', '#')
+        # bind pf to kernel
+        for port in self.dut_ports:
+            netdev = self.dut.ports_info[port]['port']
+            netdev.bind_driver(driver=self.kdriver)
+        # set vf assign method and vf driver
+        vf_driver = 'vfio-pci'
+        # generate 2 VFs on PF
+        self.dut.generate_sriov_vfs_by_port(
+            used_dut_port, 1, driver=self.kdriver)
+        pf0_intf = self.dut.ports_info[self.dut_ports[dut_index]]['intf']
+        vf_mac = "00:11:22:33:44:55"
+        self.dut.send_expect(
+            'ip link set {} vf 0 mac {}'.format(pf0_intf, vf_mac), '#')
+        sriov_vf0 = self.dut.ports_info[used_dut_port]['vfs_port'][0]
+        sriov_vf0.bind_driver(vf_driver)
+        return sriov_vf0, vf_mac
+
+    def destroy_vf(self):
+        try:
+            port_id = 0
+            self.dut.destroy_sriov_vfs_by_port(port_id)
+            port_obj = self.dut.ports_info[port_id]['port']
+            port_obj.bind_driver(self.drivername)
+        except Exception as e:
+            self.logger.info(traceback.format_exc())
+
+    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()
+        self.sriov_vf0, vf_mac = self.create_vf()
+        self.init_base(self.sriov_vf0.pci, vf_mac, "iavf")
+
+    def tear_down_all(self):
+        """
+        Run after each test suite.
+        """
+        self.destroy_vf()
+        self.restore_compilation()
+
+    def set_up(self):
+        """
+        Run before each test case.
+        """
+        pass
+
+    def tear_down(self):
+        """
+        Run after each test case.
+        """
+        self.close_testpmd()
+        time.sleep(2)
+        self.dut.kill_all()
+
+    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()
+
+    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()
+
+    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()
+
+    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()
+
+    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()
+
+    def test_check_IPv4_fields_in_RXD(self):
+        """
+        Check IPv4 fields in RXD
+        """
+        self.check_IPv4_fields_in_RXD()
+
+    def test_check_IPv6_fields_in_RXD(self):
+        """
+        Check IPv6 fields in RXD
+        """
+        self.check_IPv6_fields_in_RXD()
+
+    def test_check_IPv6_flow_field_in_RXD(self):
+        """
+        Check IPv6 flow field in RXD
+        """
+        self.check_IPv6_flow_field_in_RXD()
+
+    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()
+
+    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()
+
+    def test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
+        """
+        Check IPv4, IPv6, TCP fields in RXD on specific queues
+        """
+        self.check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues()
+
+    def test_check_testpmd_use_different_parameters(self):
+        """
+        Check testpmd use different parameters start
+        """
+        self.check_testpmd_use_different_parameters()
+
+    def test_check_ip_offset_of_ip(self):
+        """
+        Check ip offset of ip
+        """
+        self.check_ip_offset_of_ip()
+
+    def test_check_ip_offset_with_vlan(self):
+        """
+        check ip offset with vlan
+        """
+        self.check_ip_offset_with_vlan()
+
+    def test_check_ip_offset_with_2_vlan_tag(self):
+        """
+        check offset with 2 vlan tag
+        """
+        self.check_ip_offset_with_2_vlan_tag()
+
+    def test_check_ip_offset_with_multi_MPLS(self):
+        """
+        check ip offset with multi MPLS
+        """
+        self.check_ip_offset_with_multi_MPLS()
+
+    def test_check_ip_offset_with_multi_MPLS_with_vlan_tag(self):
+        """
+        check ip offset with multi MPLS with vlan tag
+        """
+        self.check_ip_offset_with_multi_MPLS_with_vlan_tag()
+
+    def test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag(self):
+        """
+        check ip offset with multi MPLS with 2 vlan tag
+        """
+        self.check_ip_offset_with_multi_MPLS_with_2_vlan_tag()
-- 
2.21.0


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

* Re: [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
                   ` (2 preceding siblings ...)
  2020-11-10  6:18 ` [dts] [PATCH V6 3/3] iavf_flexible_descriptor: upload suite yufengmx
@ 2020-11-10  6:24 ` Mo, YufengX
  2020-11-10  6:30 ` Xu, HailinX
  2020-11-19  8:36 ` Tu, Lijuan
  5 siblings, 0 replies; 8+ messages in thread
From: Mo, YufengX @ 2020-11-10  6:24 UTC (permalink / raw)
  To: Mo, YufengX, dts, Xu,  HailinX

Signed-off-by:  Xu, HailinX <hailinx.xu@intel.com>

> -----Original Message-----
> From: Mo, YufengX <yufengx.mo@intel.com>
> Sent: Tuesday, November 10, 2020 2:19 PM
> To: dts@dpdk.org; Xu, HailinX <hailinx.xu@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls


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

* Re: [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
                   ` (3 preceding siblings ...)
  2020-11-10  6:24 ` [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
@ 2020-11-10  6:30 ` Xu, HailinX
  2020-11-19  8:36 ` Tu, Lijuan
  5 siblings, 0 replies; 8+ messages in thread
From: Xu, HailinX @ 2020-11-10  6:30 UTC (permalink / raw)
  To: Mo, YufengX, dts

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

Tested-by:  Xu, HailinX <hailinx.xu@intel.com>

Regards,
Xu, Hailin


> -----Original Message-----
> From: Mo, YufengX 
> Sent: Tuesday, November 10, 2020 2:19 PM
> To: dts@dpdk.org; Xu, HailinX <hailinx.xu@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls 


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



                           dts: 
TEST SUITE : TestFlexibleRxd
06/11/2020 17:22:42                            dts: NIC :        columbiaville_100g
06/11/2020 17:22:42              dut.10.240.183.62: 
06/11/2020 17:22:42                         tester: 
06/11/2020 17:22:43              dut.10.240.183.62: rm -rf x86_64-native-linuxapp-gcc
06/11/2020 17:22:43              dut.10.240.183.62: 
06/11/2020 17:22:43              dut.10.240.183.62: CC=gcc meson --werror -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
06/11/2020 17:22:55              dut.10.240.183.62: The Meson build system
Version: 0.55.3
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc3
Using 'CC' from environment with value: 'gcc'
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
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
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)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
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:228: 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-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 -Waddress-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-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__" : 1 
Fetching value of define "__AVX512BW__" : 1 
Fetching value of define "__AVX512CD__" : 1 
Fetching value of define "__AVX512DQ__" : 1 
Fetching value of define "__AVX512F__" : 1 
Fetching value of define "__AVX512VL__" : 1 
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation -Wformat-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__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (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__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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 and cmake)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -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 -Wsign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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 and cmake)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
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 and cmake)
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 -Wpointer-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 -Wuninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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__" : 1 (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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES 
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "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 and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
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/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "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
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 and cmake)
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
Library libmusdk found: NO
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 and cmake)
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 and cmake)
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 -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
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 -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/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 -Wformat-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 -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	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, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 997

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

ice_dev_init(): Failed to init DCB

ice_fdir_setup(): FDIR HW Capabilities: fd_fltr_guar = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
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(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:23:51              dut.10.240.183.62: set verbose 1
06/11/2020 17:23:51              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:23:51              dut.10.240.183.62: set fwd io
06/11/2020 17:23:51              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:23:51              dut.10.240.183.62: set promisc all off
06/11/2020 17:23:51              dut.10.240.183.62: 
06/11/2020 17:23:51              dut.10.240.183.62: clear port stats all
06/11/2020 17:23:51              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:23:51              dut.10.240.183.62: start
06/11/2020 17:23:51              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:23:51              dut.10.240.183.62: flow create 0 ingress pattern eth dst is 68:a6:b7:0b:6f:38 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 23 ttl is 98 / end actions queue index 2 / end
06/11/2020 17:23:51              dut.10.240.183.62: 

ice_flow_create(): Succeeded to create (1) flow
06/11/2020 17:23:51              dut.10.240.183.62: flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end
06/11/2020 17:23:51              dut.10.240.183.62: 

ice_flow_create(): Succeeded to create (1) flow
06/11/2020 17:23:55              dut.10.240.183.62: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:EB:ED:A0 - dst=68:A6:B7:0B:6F:38 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4686d69d - RSS queue=0x2 - Protocol Extraction:[0x6211:0x4517],ipv4,ver=4,hdrlen=5,tos=23,ttl=98,proto=17 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x2
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:23:59              dut.10.240.183.62: port 0/queue 3: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0x4f057f7a - RSS queue=0x3 - Protocol Extraction:[0x1122:0x60c9],ipv6,ver=6,tc=12,flow_hi4=0x9,nexthdr=17,hoplimit=34 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:23:59              dut.10.240.183.62: flow flush 0
06/11/2020 17:23:59              dut.10.240.183.62: 
06/11/2020 17:23:59              dut.10.240.183.62: flow create 0 ingress pattern eth dst is 68:a6:b7:0b:6f:38 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / tcp src is 25 dst is 23 / end actions queue index 4 / end
06/11/2020 17:23:59              dut.10.240.183.62: 

EAL: Error: Invalid memory
ice_flow_create(): Succeeded to create (1) flow
06/11/2020 17:24:02              dut.10.240.183.62: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:EB:ED:A0 - dst=68:A6:B7:0B:6F:38 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0x4686d69d - RSS queue=0x4 - Protocol Extraction:[0x5012:0x0000],tcp,doff=5,flags=AS - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:24:02                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Result PASSED:
06/11/2020 17:24:02              dut.10.240.183.62: quit
06/11/2020 17:24:04              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            196
ice_update_vsi_stats(): rx_unicast:          3
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:           3
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	196
ice_stats_get(): rx_unicast:	3
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:	2
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: 3              RX-dropped: 0             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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
EAL: Error: Invalid memory
EAL: Error: Invalid memory
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_7595479948062841739 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_15761306129969410174 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_3060031048286052873 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_4010542989189539289 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_368135293993015603 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_12824847811323669235 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_16380453035921498762 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_2037309637897175592 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_7882877411590664938 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_2469154359934403320 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_16893005064313127459 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_12670303953663207444 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_7373295960077705184 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_17058963314313254159 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_5508777125768575184 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_2690979582346624784 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_15377098864020230524 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_5115736856393896198 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_9938551801471579782 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_16279838246833321507 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_11758136773158541796 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_18129525341678132608 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_5883506160202852734 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_14236079333290646903 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_6519689983385464380 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_12623554671800259567 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_5578470779431890893 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_266375866296305457 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_9685583169216100804 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_8064666679461426763 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_17387316476041417210 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_7455386484193105934 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_17454055122303664737 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_8735100350072342196 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_34552354582356338 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_1270442617505933827 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_9725315818586242158 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_11233336381603581057 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_5601540388520028066 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_4812020907099467026 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_16094410174864193659 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_11365743575741924842 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_5243758742293983316 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_15636503702657142785 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_9242755518422154971 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_12112017573563342514 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_7732681647156089998 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_15854716883715789371 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7366537448300750131 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_1198018494666429828 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_14948200138178670253 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_5014596861130420482 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_2258742276176139128 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_322318138491247124 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_10033635153627195635 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_11398374373838300341 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_15750416911812584467 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_12604154131809287142 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_61032717377939663 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_23264408743530830 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_11792354904982201269 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_7699367922196631104 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_13412312290890892161 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_10413077164852499335 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_847013376115828244 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_1220723673825789895 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_5231489202588253711 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_4760910840868546169 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_11541381012044491359 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_918353465295888170 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_17512161545359690172 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_8382313682183351598 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_186547899015501026 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_3577904117675411262 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_8679580180099149938 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_6952059832456376688 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_11662776020092042998 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_598104537308278850 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_12064272895279240068 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_15743677655620393693 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_10996386300775401487 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_8210224791611511007 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_10373975507102609135 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_15867274913954468605 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_12401216005826596541 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_5063706798264581923 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_8817947037064691600 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_13640365798853618893 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_2475268706476942136 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_13589371506647336042 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_4278925838900054130 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_17153518918568417022 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_7171278688322409870 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_18406052872064443448 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_320714274226236319 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_11055373941724706682 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_7890070968659936656 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_8228342997122985351 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_17644301062222327892 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_11337305859413557731 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_8516266150613641037 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_3074381473766404942 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_15733178753133332614 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_11211899912641269884 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_16318276048721538337 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_15677501066257747009 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_17587446686539598268 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_2432565370814192722 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_1408261718369804383 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_8337662928438027897 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_3015268777850969522 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_16112007782424593173 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_6491222960718163611 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_17893579839833882780 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_15659968036524146622 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_12609703340520812100 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_5815030183337077423 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_3509250349773207210 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_15144119462775637719 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_17877487706560600395 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_2975089792489071403 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_15563241785920385344 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_3761755607122129867 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_15069423384935870591 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_11939401397554072145 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_15599577178782079465 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_9266451011304288469 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_9080113422743471444 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_483818271094543332 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_12528389155172586324 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_5562390010439628872 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_15318325520911469891 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:24:06              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:24:06                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
06/11/2020 17:24:06              dut.10.240.183.62: 
06/11/2020 17:24:06                         tester: 
06/11/2020 17:24:06              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ipv4  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:24:09              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8804077331832748909 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_2639394994210231293 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_3416228167372536320 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_713971071596075012 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_12851304591678223163 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_5212344686045190326 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_8064881246992941128 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_7908640811490708664 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_9270565970223285960 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_204855976715543567 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_17364335335126240471 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_5304596379779659099 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_3427617146898132975 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_18350335999490998991 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_18062385664703105457 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_520724515790347782 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_9333265443898661150 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_6179718451207066682 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_8358944590091949927 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_624707340917329132 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_5952845044685803120 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_380478003460628693 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_15806753325024697411 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_9388555107985509841 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_5919024369255236209 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_13363193337534381081 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_7661483467610234356 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14416122169561547079 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_10695312637481385764 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_14600557716241611532 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_6406849841818794326 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_15771185931926661424 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_4138684284548100429 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_2688159485768997576 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11965161886539728868 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_733740504912194797 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_8462401874093361880 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_18036024993195550644 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_6264136743123191564 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_17728871631899461591 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_4375059874783581480 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_6726427759469752948 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_2045137300233949119 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_3214721604553724026 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_13853402779744749492 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_15926069668673739764 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_11500997132012750837 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_14973740837871162076 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_1150628892347504003 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_7036457334672937827 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_2137631068477895 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_9209306233822130820 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_12814747649522658128 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_15934835776062837412 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_6856055099888281544 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_16342367355701285778 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_902355862984595950 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_13969882397804653754 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_7860590701262741303 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_1666387919681965877 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_6693738125648570701 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_15207583964500252476 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_15334499710148210469 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_13643631262511507125 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_4828603146033151738 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_4845949945379244928 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_9631800633058829660 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_14948807464542363511 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_10017575301333645358 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_14113383497828700350 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_12663588654250658420 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_1142610520953201058 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_14082896757402606250 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_7582754231717998135 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_18227019281074770029 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_13654520568317549247 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_12814546970573118196 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_2034420207383235865 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_10881309439770607213 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_5053057133326704989 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_16919818653690199984 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_11863565265225701506 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_7794792045788653089 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_4951630827666156784 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_10613524451215023583 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_6331831773631793110 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_16022870805976341503 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_3992950485721946821 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_18254553524666797028 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_17388512822403768152 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_2335020202206032900 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_12537050978096029428 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_11406129228690586314 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_4612267936043774938 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_8745126223027392367 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_3502871541345860194 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_9354592363603166707 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_7284101812692307005 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_10643722576557478957 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_4143055762605803014 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_1699123302466888537 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_4708602143624716110 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_8119965768689498658 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_3441836241552054808 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_3579102854184304025 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_6621173231646730681 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_13004851307826214086 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_2211396420025645294 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_1048063027521248389 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_3955421803667023319 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_17180711897193328907 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_7854301091718601206 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_11268749393844829567 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_1762817131031263496 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_12498990091060193128 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_11740341192697055230 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_7872995333234493892 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_933351938865484818 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_5209611891363948964 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_13225486398398688356 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_7680819141310980501 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_791408793183942800 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_13365362935928522858 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_5991910517091699104 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_17532854021819966479 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_16990730844925016083 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_12448912572249806005 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_18151551495862520157 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_14723125090069951992 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_2144320883198498710 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_8755181810925743995 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_9396364592804420259 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ipv4' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 18
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:24:19              dut.10.240.183.62: set verbose 1
06/11/2020 17:24:19              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:24:19              dut.10.240.183.62: set fwd io
06/11/2020 17:24:19              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:24:19              dut.10.240.183.62: set promisc all off
06/11/2020 17:24:19              dut.10.240.183.62: 
06/11/2020 17:24:19              dut.10.240.183.62: clear port stats all
06/11/2020 17:24:19              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:24:19              dut.10.240.183.62: start
06/11/2020 17:24:19              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:24:23              dut.10.240.183.62: port 0/queue 10: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1232b96a - RSS queue=0xa - Protocol Extraction:[0x6211:0x4517],ipv4,ver=4,hdrlen=5,tos=23,ttl=98,proto=17 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:24:23                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Result PASSED:
06/11/2020 17:24:23              dut.10.240.183.62: quit
06/11/2020 17:24:24              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            60
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	60
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_2639394994210231293 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_3416228167372536320 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_713971071596075012 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_12851304591678223163 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_5212344686045190326 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_8064881246992941128 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_7908640811490708664 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_9270565970223285960 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_204855976715543567 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_17364335335126240471 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_5304596379779659099 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_3427617146898132975 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_18350335999490998991 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_18062385664703105457 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_520724515790347782 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_9333265443898661150 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_6179718451207066682 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_8358944590091949927 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_624707340917329132 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_5952845044685803120 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_380478003460628693 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_15806753325024697411 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_9388555107985509841 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_5919024369255236209 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_13363193337534381081 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_7661483467610234356 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14416122169561547079 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_10695312637481385764 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_14600557716241611532 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_6406849841818794326 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_15771185931926661424 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_4138684284548100429 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_8804077331832748909 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11965161886539728868 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_733740504912194797 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_8462401874093361880 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_18036024993195550644 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_6264136743123191564 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_17728871631899461591 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_4375059874783581480 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_6726427759469752948 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_2045137300233949119 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_3214721604553724026 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_13853402779744749492 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_15926069668673739764 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_11500997132012750837 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_14973740837871162076 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_1150628892347504003 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7036457334672937827 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_2137631068477895 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_9209306233822130820 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_12814747649522658128 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_15934835776062837412 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_6856055099888281544 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_16342367355701285778 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_902355862984595950 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_13969882397804653754 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_7860590701262741303 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_1666387919681965877 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_6693738125648570701 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_15207583964500252476 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_15334499710148210469 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_13643631262511507125 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_4828603146033151738 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_4845949945379244928 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_2688159485768997576 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_14948807464542363511 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_10017575301333645358 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_14113383497828700350 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_12663588654250658420 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_1142610520953201058 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_14082896757402606250 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_7582754231717998135 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_18227019281074770029 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_13654520568317549247 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_12814546970573118196 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_2034420207383235865 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_10881309439770607213 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_5053057133326704989 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_16919818653690199984 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_11863565265225701506 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_7794792045788653089 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_4951630827666156784 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_10613524451215023583 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_6331831773631793110 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_16022870805976341503 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_3992950485721946821 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_18254553524666797028 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_17388512822403768152 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_2335020202206032900 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_12537050978096029428 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_11406129228690586314 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_4612267936043774938 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_8745126223027392367 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_3502871541345860194 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_9354592363603166707 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_7284101812692307005 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_10643722576557478957 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_9631800633058829660 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_1699123302466888537 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_4708602143624716110 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_8119965768689498658 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_3441836241552054808 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_3579102854184304025 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_6621173231646730681 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_13004851307826214086 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_2211396420025645294 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_1048063027521248389 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_3955421803667023319 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_17180711897193328907 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_7854301091718601206 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_11268749393844829567 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_1762817131031263496 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_12498990091060193128 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_11740341192697055230 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_7872995333234493892 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_933351938865484818 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_5209611891363948964 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_13225486398398688356 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_7680819141310980501 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_791408793183942800 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_13365362935928522858 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_5991910517091699104 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_17532854021819966479 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_16990730844925016083 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_12448912572249806005 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_18151551495862520157 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_14723125090069951992 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_2144320883198498710 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_8755181810925743995 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_9396364592804420259 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_4143055762605803014 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:24:26              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:24:26                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
06/11/2020 17:24:26              dut.10.240.183.62: 
06/11/2020 17:24:26                         tester: 
06/11/2020 17:24:26              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ipv6  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:24:29              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_16704193373570700695 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_16759006115313801049 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_2763832991059897731 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_5895295612802832755 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_13806592835046908663 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_765034480743629734 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_18104732176949573550 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_16571956914349174328 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_15216494277002276267 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_5945937487740821747 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11901792139357152036 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_9315393760939565073 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_4879621178936755375 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_12398796950164721144 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_1164103415302995617 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_7510628093549584322 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_13992718111367613192 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_5465466649814776690 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_9488976544433483623 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_563342048079516245 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_16947532364939111525 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_11798856338510034705 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_5915219289446001800 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_10545394983297242156 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_4000094813866188841 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_14952454205051527027 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_3723449266954828438 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_17622614486685795944 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_11398825999173349756 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_11265778657124707387 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_8697459680652474030 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_17925562830611550390 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_11943093564063464338 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_11709722823175695306 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_10255132478053094700 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_13309382168630342963 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_11149701570847368912 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_9980286822935383437 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_3124107811733249170 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_783679598993637778 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_3738767740366602720 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_403100669935420906 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_1545177068293859157 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_113720777452894934 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_8721998287658885946 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_6753027093791445400 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_11821665805161881314 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_7932710480963504773 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_6243922769508774585 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_859978181791550833 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_5348668786470652576 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_10457721906865759614 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10765623293746283120 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_15362887529159986197 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_8750505852174679100 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_14855415800980371480 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_17916031254669568885 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_1620485761072111505 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_1370894715636960040 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_1924986327006579258 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_10868858553385772771 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_12088082905083718520 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_13342014842612608377 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_9511140360209499563 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_13995592623229543294 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_17596482661411457552 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_14147284527563447446 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_9745333880192838943 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_14205174486853228228 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_11236446230273233326 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_3630036622272671321 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_16289356916854893994 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_6421868462924860021 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_4319817589075837703 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_16528550484651232519 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_7021438071958049519 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_12746081011818809371 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_13130417850889237258 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_850033783143954978 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_7745411380851671166 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_3494756366966908293 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_15400564169351707991 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_15436783956458830161 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_6333202984187612040 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_5226413689673440890 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_10513126414894463680 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_2182048805011153161 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_9868755533947082718 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_838686666332566746 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_15277376142048653467 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_14388071670274596626 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_15313469569760935469 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_17454651148146191311 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_5276567775602775964 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_15239971676571088188 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_3178842821316028565 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_11920606324356759366 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_16599583662942618733 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_13066797663575089825 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_14806064948481086898 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_15568050841704633159 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_6508126793638146493 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_218141210563593070 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_741312632842032820 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_2490294951829472319 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_5992705947992743238 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_243829315857639754 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_16476350358155300389 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_4025116497353117279 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_3733927672759190450 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_3068620950761859673 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_7570462707617926529 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_3641843335513602060 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_2377205462485298759 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_11564776043927005696 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_7346360393169149917 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_9058380748269427894 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_13539916692436027750 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_809602679332922389 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_2591066981241607281 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_7828930805691034935 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_3019935982596650501 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_13299125830843949273 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_10312152923507292653 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_11247330447989637542 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_4965338427004853342 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_3506085791139876950 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_18376721670966823222 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_10385630654517600242 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_8788170207095045192 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_8844690319973082444 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_4138293676327264790 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ipv6' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 19
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:24:39              dut.10.240.183.62: set verbose 1
06/11/2020 17:24:39              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:24:39              dut.10.240.183.62: set fwd io
06/11/2020 17:24:39              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:24:39              dut.10.240.183.62: set promisc all off
06/11/2020 17:24:39              dut.10.240.183.62: 
06/11/2020 17:24:39              dut.10.240.183.62: clear port stats all
06/11/2020 17:24:39              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:24:39              dut.10.240.183.62: start
06/11/2020 17:24:39              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:24:43              dut.10.240.183.62: port 0/queue 9: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0xe3b2789 - RSS queue=0x9 - Protocol Extraction:[0x1122:0x60c9],ipv6,ver=6,tc=12,flow_hi4=0x9,nexthdr=17,hoplimit=34 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:24:43                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Result PASSED:
06/11/2020 17:24:43              dut.10.240.183.62: quit
06/11/2020 17:24:44              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            72
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	72
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_16759006115313801049 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_2763832991059897731 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_5895295612802832755 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_13806592835046908663 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_765034480743629734 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_18104732176949573550 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_16571956914349174328 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_15216494277002276267 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_5945937487740821747 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11901792139357152036 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_9315393760939565073 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_4879621178936755375 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_12398796950164721144 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_1164103415302995617 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_7510628093549584322 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_13992718111367613192 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_5465466649814776690 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_9488976544433483623 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_563342048079516245 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_16947532364939111525 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_11798856338510034705 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_5915219289446001800 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_10545394983297242156 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_4000094813866188841 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_14952454205051527027 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_3723449266954828438 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_17622614486685795944 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_11398825999173349756 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_11265778657124707387 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_8697459680652474030 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_17925562830611550390 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_11943093564063464338 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_16704193373570700695 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_10255132478053094700 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_13309382168630342963 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_11149701570847368912 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_9980286822935383437 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_3124107811733249170 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_783679598993637778 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_3738767740366602720 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_403100669935420906 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_1545177068293859157 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_113720777452894934 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_8721998287658885946 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_6753027093791445400 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_11821665805161881314 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_7932710480963504773 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_6243922769508774585 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_859978181791550833 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_5348668786470652576 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_10457721906865759614 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10765623293746283120 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_15362887529159986197 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_8750505852174679100 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_14855415800980371480 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_17916031254669568885 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_1620485761072111505 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_1370894715636960040 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_1924986327006579258 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_10868858553385772771 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_12088082905083718520 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_13342014842612608377 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_9511140360209499563 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_13995592623229543294 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_17596482661411457552 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_11709722823175695306 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_9745333880192838943 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_14205174486853228228 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_11236446230273233326 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_3630036622272671321 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_16289356916854893994 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_6421868462924860021 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_4319817589075837703 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_16528550484651232519 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_7021438071958049519 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_12746081011818809371 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_13130417850889237258 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_850033783143954978 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_7745411380851671166 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_3494756366966908293 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_15400564169351707991 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_15436783956458830161 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_6333202984187612040 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_5226413689673440890 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_10513126414894463680 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_2182048805011153161 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_9868755533947082718 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_838686666332566746 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_15277376142048653467 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_14388071670274596626 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_15313469569760935469 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_17454651148146191311 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_5276567775602775964 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_15239971676571088188 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_3178842821316028565 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_11920606324356759366 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_16599583662942618733 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_13066797663575089825 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_14147284527563447446 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_15568050841704633159 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_6508126793638146493 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_218141210563593070 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_741312632842032820 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_2490294951829472319 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_5992705947992743238 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_243829315857639754 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_16476350358155300389 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_4025116497353117279 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_3733927672759190450 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_3068620950761859673 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_7570462707617926529 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_3641843335513602060 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_2377205462485298759 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_11564776043927005696 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_7346360393169149917 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_9058380748269427894 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_13539916692436027750 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_809602679332922389 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_2591066981241607281 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_7828930805691034935 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_3019935982596650501 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_13299125830843949273 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_10312152923507292653 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_11247330447989637542 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_4965338427004853342 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_3506085791139876950 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_18376721670966823222 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_10385630654517600242 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_8788170207095045192 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_8844690319973082444 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_4138293676327264790 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_14806064948481086898 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:24:46              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:24:46                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
06/11/2020 17:24:46              dut.10.240.183.62: 
06/11/2020 17:24:47                         tester: 
06/11/2020 17:24:47              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ipv6_flow  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:24:49              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2096089729090329171 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_7838352580433039263 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_3507895863304540124 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_116700758980603154 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_9830071954836462550 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_2926656472629460838 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_3438026700206531334 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_16843964304183626395 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_16376293529164869438 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_3648495986678547151 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_17677810202346914215 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_10983484982318815110 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_5418691374660509138 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_17328037670702558000 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_10922139782307757930 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_16181886318181849446 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_9557207450639949270 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_5845834329994007219 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_9477885386549667729 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_14225530537853145060 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_14269161886415353866 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_13867473151363669492 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_14246681662456773610 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_16737162483802785890 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_14856059621966740433 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_14791367334535562424 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_9536998812507684433 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_9281106956673117301 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_11664914470501620221 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_5974608401823144671 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_7642379440759458617 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_6145436894483276203 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_3998671343352846682 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_12909258965978119320 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_2782247487151547524 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_6644410593815785067 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_3879237644407582901 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_18088866763230845899 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_16105045879551916075 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_3544294930070275594 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_1094081167781226273 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_2899109158362730342 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_12956554783441395054 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_13375731720723473529 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_1570177566538123038 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_5650857167176373674 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_10476155244542749046 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_5684913389804697164 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_1602336974752217633 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_15272744787443139851 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_8390494522829811331 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_4406766960240000219 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_13213505571016082958 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_699110662127085183 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_12120260883760462169 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_18052292381336757257 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_8209094321463676852 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_7501127512647066692 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_3876271333394433095 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_11442644771807633472 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_11969501335924636075 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_10121621852087640645 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_18315821454559785558 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_1647445134855065745 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_11672992268655778638 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_17776670417761032259 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_6196547279713765776 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_14037043515144683052 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_6021808246064257518 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_8547129064626988562 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_2750928192816836363 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14858479304333853664 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_16323737927323232555 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_5246322661599386601 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_672723297910042068 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_9189550266626861514 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_13132382793427108256 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_10150640379800007439 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_3069307838103593305 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_12614917799254542021 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_17557807452572131755 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_9126930196116402555 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_13319250441958864109 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_5321544034623324451 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_16655678814827250755 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_3960884561120534412 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_5599628396847102261 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_5833118506010629279 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_1387855346839363716 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_10509489712702356108 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_17002042179941775962 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_9276803401722051294 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_10612559863911580820 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_8859245962243041273 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4331576266678492028 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_15222493112801854731 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_11151183490647033713 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_951039067875754945 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_14625731305379232512 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_3649279359298592342 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_2890973528839991820 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_4910555822314006098 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_17975920360797350767 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_13388827185203874020 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_4021757964718200122 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_308836084674966820 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_2928896270291217846 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_15217802140107062472 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_3275685958824396273 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_2827673362753433426 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_16347721761962215676 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_4767486794136285956 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_7657345861609062234 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_16258507790336075002 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_7123757626290469992 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_5752822387523871265 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_3129273549389921895 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_2240892582387299599 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_17092190810797329739 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_10198475255549683774 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_3731399833493770724 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_6226279355593022215 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_16016129518040426462 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_8819822118864422537 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_5650473417843659097 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_933021327438011232 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_4471500379763040889 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_3481517211355103132 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_4029301063630259949 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_4562870449322150871 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_14783603533048759679 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_12321749988665300514 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_ipv6_flow' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 20
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:24:59              dut.10.240.183.62: set verbose 1
06/11/2020 17:24:59              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:24:59              dut.10.240.183.62: set fwd io
06/11/2020 17:24:59              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:24:59              dut.10.240.183.62: set promisc all off
06/11/2020 17:24:59              dut.10.240.183.62: 
06/11/2020 17:24:59              dut.10.240.183.62: clear port stats all
06/11/2020 17:24:59              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:24:59              dut.10.240.183.62: start
06/11/2020 17:24:59              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:25:03              dut.10.240.183.62: port 0/queue 19: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0x49451613 - RSS queue=0x13 - Protocol Extraction:[0x8765:0x60c9],ipv6_flow,ver=6,tc=12,flow=0x98765 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x13
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:25:03                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Result PASSED:
06/11/2020 17:25:03              dut.10.240.183.62: quit
06/11/2020 17:25:04              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=19 -> TX Port= 0/Queue=19 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            72
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	72
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_7838352580433039263 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_3507895863304540124 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_116700758980603154 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_9830071954836462550 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_2926656472629460838 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_3438026700206531334 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_16843964304183626395 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_16376293529164869438 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_3648495986678547151 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_17677810202346914215 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_10983484982318815110 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_5418691374660509138 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_17328037670702558000 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_10922139782307757930 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_16181886318181849446 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_9557207450639949270 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_5845834329994007219 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_9477885386549667729 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_14225530537853145060 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_14269161886415353866 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_13867473151363669492 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_14246681662456773610 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_16737162483802785890 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_14856059621966740433 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_14791367334535562424 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_9536998812507684433 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_9281106956673117301 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_11664914470501620221 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_5974608401823144671 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_7642379440759458617 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_6145436894483276203 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_3998671343352846682 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_2096089729090329171 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_2782247487151547524 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_6644410593815785067 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_3879237644407582901 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_18088866763230845899 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_16105045879551916075 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_3544294930070275594 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_1094081167781226273 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_2899109158362730342 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_12956554783441395054 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_13375731720723473529 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_1570177566538123038 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_5650857167176373674 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_10476155244542749046 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_5684913389804697164 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_1602336974752217633 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_15272744787443139851 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_8390494522829811331 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_4406766960240000219 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_13213505571016082958 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_699110662127085183 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_12120260883760462169 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_18052292381336757257 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_8209094321463676852 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_7501127512647066692 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_3876271333394433095 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_11442644771807633472 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_11969501335924636075 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_10121621852087640645 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_18315821454559785558 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_1647445134855065745 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_11672992268655778638 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_17776670417761032259 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_12909258965978119320 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_14037043515144683052 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_6021808246064257518 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_8547129064626988562 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_2750928192816836363 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14858479304333853664 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_16323737927323232555 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_5246322661599386601 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_672723297910042068 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_9189550266626861514 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_13132382793427108256 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_10150640379800007439 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_3069307838103593305 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_12614917799254542021 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_17557807452572131755 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_9126930196116402555 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_13319250441958864109 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_5321544034623324451 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_16655678814827250755 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_3960884561120534412 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_5599628396847102261 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_5833118506010629279 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_1387855346839363716 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_10509489712702356108 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_17002042179941775962 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_9276803401722051294 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_10612559863911580820 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_8859245962243041273 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4331576266678492028 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_15222493112801854731 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_11151183490647033713 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_951039067875754945 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_14625731305379232512 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_6196547279713765776 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_2890973528839991820 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_4910555822314006098 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_17975920360797350767 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_13388827185203874020 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_4021757964718200122 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_308836084674966820 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_2928896270291217846 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_15217802140107062472 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_3275685958824396273 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_2827673362753433426 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_16347721761962215676 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_4767486794136285956 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_7657345861609062234 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_16258507790336075002 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_7123757626290469992 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_5752822387523871265 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_3129273549389921895 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_2240892582387299599 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_17092190810797329739 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_10198475255549683774 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_3731399833493770724 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_6226279355593022215 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_16016129518040426462 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_8819822118864422537 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_5650473417843659097 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_933021327438011232 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_4471500379763040889 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_3481517211355103132 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_4029301063630259949 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_4562870449322150871 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_14783603533048759679 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_12321749988665300514 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_3649279359298592342 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:25:06              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:25:06                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
06/11/2020 17:25:07              dut.10.240.183.62: 
06/11/2020 17:25:07                         tester: 
06/11/2020 17:25:07              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=tcp  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:25:09              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_3978032085658755595 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_9381043802378643423 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_17298107908911987279 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_1081931820917076159 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_15140701408199009796 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_442649771966111485 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_6437130420662787949 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_5812233236732455087 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13530721284807854381 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_13310068228983401883 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_10780725169997483981 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_9365741758070777343 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_5900183689493077654 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_6284055492542540498 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_773527169210618668 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_13422959093664495943 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_1984676419488483710 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_10364388044489876443 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_4960736010171573400 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_11393914660441707824 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_3673047008652523807 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_2341669424797100902 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_9549750707188161058 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_112943052520431397 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_10890337992928768339 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_15484831742122820272 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_9142161775294048053 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_13576791526682331747 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_7185869398439022880 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_247632326101704644 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_18085852113007428402 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_14413624751848580463 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_14803303992369057340 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_13601187262131204251 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_9809207497647415969 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_13549844670186861737 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_3447580140065650213 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_17800262780032118167 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_6010538098378093746 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_680923482736332929 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_13327433700945699800 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_14415821445088021961 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_9591733447630672839 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_8108492587294812727 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_11037752808781680309 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_2543210867766119322 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_17049904975654747382 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_10844802711355170324 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_3383151638151628737 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_11498257583082076058 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_17933397207068089854 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_14316805343834847702 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_9750357520895071899 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_10951236181240830827 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_16958314320740398678 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_13202839784180546454 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_11204603641196959152 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_1748544712119482799 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_14329088063747493351 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_17572124826230323267 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_8619071773651098554 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_4517778730769886779 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_5357071900562092039 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_1089996794707743118 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_13277957635782073742 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_973402958445354799 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_16762072197164146976 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_13757555857112613664 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_5442144718143888861 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_16343575268623975308 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_14860831818567083459 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14176985483619136403 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_3324760525432933961 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_4892497475910733380 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_15040404998628886492 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_6542185866278921762 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_9374613189662565709 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_13102175391278906806 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_1857383285105067552 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_4821865470744197922 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_2771977445409361303 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_4455556170682040071 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_3990362517155371961 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_1217509222100698677 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_1747709045710862728 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_8601328346723842243 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_14735540371381209045 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_16553363170309186546 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_12612542345180843491 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_12982093915884811135 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_16916279727340015465 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_10686007442478087836 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2546825907861862615 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_10524350587136516160 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_196734006972418818 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_14277696689534442261 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_16932156457983080750 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_14160696790766818668 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_6107223873244670808 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_13581535551492394004 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_11547458355528296593 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_12660411858183142981 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_17311659800615770605 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_14143850081849830890 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_856885092757731671 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_11443017831332735201 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_14478251948904780832 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_16693977824729092428 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_18087488664953079845 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_16521627982764313964 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_17060655873553998800 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_3875594461232534009 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_3782679079253007795 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_3476416541420697551 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_5659439506232154334 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_8177027331587055033 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_1163437796664298470 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_2380007945413929829 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_2564379369543340300 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_7881288307073635853 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_4412260398474829485 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_9070070921578615804 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_3734708259432481879 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_3865626956070148043 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_9538008477305876011 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_8911894722689788798 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_1556911061204045781 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_5258167707110922859 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_2843473054132648300 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_16330811432326663792 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_17615029410137820556 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_17294827434032037836 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_tcp' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 21
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:25:19              dut.10.240.183.62: set verbose 1
06/11/2020 17:25:19              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:25:19              dut.10.240.183.62: set fwd io
06/11/2020 17:25:19              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:25:19              dut.10.240.183.62: set promisc all off
06/11/2020 17:25:19              dut.10.240.183.62: 
06/11/2020 17:25:19              dut.10.240.183.62: clear port stats all
06/11/2020 17:25:19              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:25:19              dut.10.240.183.62: start
06/11/2020 17:25:19              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:25:23              dut.10.240.183.62: port 0/queue 31: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0x60e161bf - RSS queue=0x1f - Protocol Extraction:[0x5012:0x0000],tcp,doff=5,flags=AS - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x1f
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:25:23                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Result PASSED:
06/11/2020 17:25:23              dut.10.240.183.62: quit
06/11/2020 17:25:24              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=31 -> TX Port= 0/Queue=31 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            64
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	64
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_9381043802378643423 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_17298107908911987279 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_1081931820917076159 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_15140701408199009796 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_442649771966111485 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_6437130420662787949 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_5812233236732455087 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13530721284807854381 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_13310068228983401883 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_10780725169997483981 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_9365741758070777343 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_5900183689493077654 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_6284055492542540498 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_773527169210618668 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_13422959093664495943 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_1984676419488483710 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_10364388044489876443 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_4960736010171573400 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_11393914660441707824 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_3673047008652523807 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_2341669424797100902 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_9549750707188161058 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_112943052520431397 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_10890337992928768339 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_15484831742122820272 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_9142161775294048053 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_13576791526682331747 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_7185869398439022880 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_247632326101704644 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_18085852113007428402 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_14413624751848580463 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_14803303992369057340 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_3978032085658755595 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_9809207497647415969 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_13549844670186861737 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_3447580140065650213 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_17800262780032118167 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_6010538098378093746 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_680923482736332929 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_13327433700945699800 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_14415821445088021961 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_9591733447630672839 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_8108492587294812727 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_11037752808781680309 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_2543210867766119322 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_17049904975654747382 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_10844802711355170324 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_3383151638151628737 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_11498257583082076058 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_17933397207068089854 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_14316805343834847702 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_9750357520895071899 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_10951236181240830827 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_16958314320740398678 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_13202839784180546454 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_11204603641196959152 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_1748544712119482799 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_14329088063747493351 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_17572124826230323267 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_8619071773651098554 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_4517778730769886779 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_5357071900562092039 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_1089996794707743118 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_13277957635782073742 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_973402958445354799 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_13601187262131204251 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_13757555857112613664 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_5442144718143888861 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_16343575268623975308 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_14860831818567083459 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14176985483619136403 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_3324760525432933961 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_4892497475910733380 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_15040404998628886492 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_6542185866278921762 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_9374613189662565709 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_13102175391278906806 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_1857383285105067552 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_4821865470744197922 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_2771977445409361303 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_4455556170682040071 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_3990362517155371961 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_1217509222100698677 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_1747709045710862728 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_8601328346723842243 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_14735540371381209045 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_16553363170309186546 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_12612542345180843491 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_12982093915884811135 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_16916279727340015465 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_10686007442478087836 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2546825907861862615 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_10524350587136516160 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_196734006972418818 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_14277696689534442261 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_16932156457983080750 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_14160696790766818668 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_6107223873244670808 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_16762072197164146976 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_11547458355528296593 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_12660411858183142981 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_17311659800615770605 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_14143850081849830890 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_856885092757731671 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_11443017831332735201 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_14478251948904780832 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_16693977824729092428 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_18087488664953079845 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_16521627982764313964 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_17060655873553998800 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_3875594461232534009 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_3782679079253007795 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_3476416541420697551 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_5659439506232154334 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_8177027331587055033 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_1163437796664298470 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_2380007945413929829 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_2564379369543340300 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_7881288307073635853 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_4412260398474829485 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_9070070921578615804 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_3734708259432481879 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_3865626956070148043 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_9538008477305876011 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_8911894722689788798 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_1556911061204045781 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_5258167707110922859 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_2843473054132648300 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_16330811432326663792 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_17615029410137820556 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_17294827434032037836 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_13581535551492394004 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:25:26              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:25:27                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
06/11/2020 17:25:27              dut.10.240.183.62: 
06/11/2020 17:25:27                         tester: 
06/11/2020 17:25:27              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=tcp  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:25:29              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_17576909254097174812 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_8890741147266404244 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_15875157830491419224 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_14988010417816066812 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_1904813813914758083 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_1754526125214787810 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_6930009621881320391 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_10122462107370988186 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13542308953887932600 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_18209397381317173737 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_24184961119835573 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_3058207376389284728 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_7960937598784065516 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_8267963839408951619 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_9505959904067238634 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_11773876657109537862 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_3031721224496724363 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_6401634563495103009 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_13120311399603445220 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_734799124494700121 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_1411358444565720791 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_8628911366788520132 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_10062762563714680669 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_11720745612970493693 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_11999783816898865299 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_797715060879040489 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_18287808093291872668 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_12449822504640261349 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2153181015253448996 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_12827746225060769676 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_9058665386783883995 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_9991779708494190394 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_886743647248972828 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_8972367402361967164 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_14541724903101999244 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_4905257395278714367 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_12051396095676284938 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_16348220708917391193 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_7269884974620632579 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_9534144744844053410 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_12974807271401707950 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_1950142052836223375 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_16864109719836059660 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_12076878657971494043 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_813536971496345223 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_14431016060535908539 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_15338471593784364907 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_4322703128347649870 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_6607828478479683677 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_7391856560999955420 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_12048861329391821195 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_12761255394951378451 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10216065295855789181 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_303657430091761995 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_14351535030067755462 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_14464599377603878792 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_17537902904609876396 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_4548406218746296819 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_8136061313379890068 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_9823439631666517798 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_10839029869345282946 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_8268619707615489632 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_1258680160305004889 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_13430895747338350968 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_3294380696845007309 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_9353568040746671154 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_6583657110363408141 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_2156592567893485979 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_5776286173146745784 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_14836612166225060624 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_4834617033020502664 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14260421548929325555 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_10405384005828048026 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_5656419504983225020 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_13613572525524742075 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_765470401541956763 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_1752873747046688409 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_15385801733899547916 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_1212943240565112018 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_8835496225471260472 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_7348322689952357086 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_1664650008203779385 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_1943009102697117772 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_12307635969379797513 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_12016965181188143889 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_347810575433885822 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_1612150513218602112 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_4082136274156251393 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_2929848372868553514 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_13778113032710288221 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_18301342294628299859 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_18158184331462032593 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2503973476764554413 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_4493147929844043351 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_17554211612412897160 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_12618124896593302611 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_14520777333043109730 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_442275460609373558 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_13829268366236709709 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_17219126646051600714 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_2150595893437549987 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_3968365842181898831 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_14559271733926340215 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_13089216655402356110 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_4104475905959462211 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_4635547213483162280 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_559983026607301623 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_10367748790506914482 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_12989070900114528427 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_17308764464858081703 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_7474523270196287867 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_13797593738213297788 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_4702020617634347157 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_1733392678933720597 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_9236473995862103971 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_4993497053419294298 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_11037033560549983207 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_17526716765930832800 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_6100641627493110571 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_6000339014490034786 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_17538952215953983832 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_10283849863455318891 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_4846075771549315557 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_2625149876026560612 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_1298836330748189145 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_13315002589980455002 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_14121452178101934183 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_1422299039460988601 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_9204546682660183045 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_3056490445802195375 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_13209880493044402771 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_4317078953302514291 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_tcp' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 21
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:25:39              dut.10.240.183.62: set verbose 1
06/11/2020 17:25:39              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:25:39              dut.10.240.183.62: set fwd io
06/11/2020 17:25:39              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:25:39              dut.10.240.183.62: set promisc all off
06/11/2020 17:25:39              dut.10.240.183.62: 
06/11/2020 17:25:39              dut.10.240.183.62: clear port stats all
06/11/2020 17:25:39              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:25:39              dut.10.240.183.62: start
06/11/2020 17:25:39              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:25:43              dut.10.240.183.62: port 0/queue 15: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x86dd - length=84 - nb_segs=1 - RSS hash=0xd131600f - RSS queue=0xf - Protocol Extraction:[0x5002:0x0000],tcp,doff=5,flags=S - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_TCP  - l2_len=14 - l3_len=40 - l4_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:25:43                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Result PASSED:
06/11/2020 17:25:43              dut.10.240.183.62: quit
06/11/2020 17:25:44              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            84
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	84
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_8890741147266404244 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_15875157830491419224 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_14988010417816066812 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_1904813813914758083 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_1754526125214787810 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_6930009621881320391 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_10122462107370988186 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13542308953887932600 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_18209397381317173737 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_24184961119835573 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_3058207376389284728 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_7960937598784065516 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_8267963839408951619 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_9505959904067238634 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_11773876657109537862 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_3031721224496724363 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_6401634563495103009 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_13120311399603445220 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_734799124494700121 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_1411358444565720791 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_8628911366788520132 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_10062762563714680669 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_11720745612970493693 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_11999783816898865299 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_797715060879040489 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_18287808093291872668 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_12449822504640261349 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2153181015253448996 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_12827746225060769676 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_9058665386783883995 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_9991779708494190394 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_886743647248972828 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_17576909254097174812 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_14541724903101999244 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_4905257395278714367 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_12051396095676284938 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_16348220708917391193 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_7269884974620632579 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_9534144744844053410 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_12974807271401707950 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_1950142052836223375 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_16864109719836059660 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_12076878657971494043 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_813536971496345223 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_14431016060535908539 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_15338471593784364907 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_4322703128347649870 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_6607828478479683677 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7391856560999955420 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_12048861329391821195 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_12761255394951378451 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10216065295855789181 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_303657430091761995 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_14351535030067755462 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_14464599377603878792 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_17537902904609876396 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_4548406218746296819 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_8136061313379890068 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_9823439631666517798 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_10839029869345282946 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_8268619707615489632 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_1258680160305004889 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_13430895747338350968 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_3294380696845007309 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_9353568040746671154 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_8972367402361967164 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_2156592567893485979 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_5776286173146745784 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_14836612166225060624 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_4834617033020502664 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14260421548929325555 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_10405384005828048026 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_5656419504983225020 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_13613572525524742075 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_765470401541956763 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_1752873747046688409 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_15385801733899547916 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_1212943240565112018 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_8835496225471260472 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_7348322689952357086 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_1664650008203779385 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_1943009102697117772 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_12307635969379797513 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_12016965181188143889 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_347810575433885822 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_1612150513218602112 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_4082136274156251393 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_2929848372868553514 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_13778113032710288221 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_18301342294628299859 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_18158184331462032593 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2503973476764554413 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_4493147929844043351 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_17554211612412897160 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_12618124896593302611 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_14520777333043109730 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_442275460609373558 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_13829268366236709709 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_6583657110363408141 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_2150595893437549987 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_3968365842181898831 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_14559271733926340215 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_13089216655402356110 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_4104475905959462211 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_4635547213483162280 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_559983026607301623 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_10367748790506914482 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_12989070900114528427 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_17308764464858081703 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_7474523270196287867 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_13797593738213297788 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_4702020617634347157 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_1733392678933720597 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_9236473995862103971 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_4993497053419294298 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_11037033560549983207 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_17526716765930832800 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_6100641627493110571 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_6000339014490034786 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_17538952215953983832 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_10283849863455318891 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_4846075771549315557 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_2625149876026560612 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_1298836330748189145 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_13315002589980455002 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_14121452178101934183 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_1422299039460988601 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_9204546682660183045 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_3056490445802195375 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_13209880493044402771 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_4317078953302514291 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_17219126646051600714 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:25:46              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:25:47                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
06/11/2020 17:25:47              dut.10.240.183.62: 
06/11/2020 17:25:47                         tester: 
06/11/2020 17:25:47              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:25:49              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_18219303796785972272 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_18053477340465109180 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_4862319445575849227 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_14165170370375636993 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_5077763560783272968 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_15546918587701240053 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_5138039736695612555 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_8983355275948871260 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_4031214634026299162 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_12579445370270875916 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_7228500098929430638 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15828975399901247803 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_6115626323961390708 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_17558151778724572091 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_9858793040668220052 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_5811481678658849415 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_8137908002918287018 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_2084752535792923525 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_11091757976622071861 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_875665716104789920 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_10985240117858352018 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_18428368324705228957 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_11454177231623602727 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_8350113036876191465 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_10180723635791404652 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_3558053432201343981 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_6368840635632799249 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_1139107698804863518 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_131253306600990119 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_10165342629275687263 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_16038946658436951920 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_3606177485334344544 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_7498833003893109688 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_12397234703905232312 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_12902059962802819836 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_3851457582800179746 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_10629948977765275713 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_6311338269995741584 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_10763997555849401205 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_4955363861827722321 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_6745401117419103124 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_7901440547472888874 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_10499864400605521076 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_9830714747658594216 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_975732467116800982 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1919485635733884877 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_1063840514284584404 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_5426190937964256667 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_3555517239097152426 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_6776218391367590159 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_9629989987364032881 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_11273795263559181751 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_1856561781319694662 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_5323304695581944893 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_3536165335011266374 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_2526295714273663614 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_2019409150574990368 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_6917674237210192146 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_10495527222625907834 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_9769549378525460422 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_2792456107345833422 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_941100121196204733 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_7353178212043290457 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_379421268073730366 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_6439538355091568563 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_2792612905713934932 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_935059273872509889 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_14179369012782669882 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_11662060769544002560 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_8152415124331044229 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_6517659463237497951 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_6697690817490129053 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_11898488622903747946 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_1144704010325025412 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_6500062891356059023 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_10420167404502297988 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_8746817832413721116 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_9117490010364551687 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_2923220771607450000 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_4311270662790230620 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_11355283780015666435 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_8595747150177873130 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_8053015221490105744 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_11777650722694100642 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_9725721797770377580 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_17367641315710342521 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_6856867945460278544 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_6437081683526793001 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_14265575113168069874 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_11876733415252373289 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_6184025952727516327 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_1771371334382148679 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_15882639051713149818 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_14195474824095044908 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_1350996219950375569 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_3515259612483184082 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_2955045999526747157 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_6708337017100897649 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_5238040804880815904 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_17554445077607558754 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_17333955373374030186 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_15311931784803523769 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_13625103043178693189 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_15359866432311419907 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_8023542438717349505 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_12486517594877020497 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_5629104656774551712 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_12788342222288843957 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_15269284205235085156 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_7923670934744852349 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_6208767838233172615 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_917826979141696100 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_12936864773810707413 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_2455337850163335546 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_13635827971825646839 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_15947664378296844279 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_14401531356485443251 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_9413791333508349769 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_17409193398446602715 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_11601695382269102263 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_3171187828478175495 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_8205610428795647185 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_4937155611765443663 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_12312817385290879868 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_3655206194356516326 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_9391100889475844203 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_5420900650041068284 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_13097674925278684352 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_8686249598029864802 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_7501598172090459606 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_17001256029993365261 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_9548591886679153118 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_vlan' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:25:59              dut.10.240.183.62: set verbose 1
06/11/2020 17:25:59              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:25:59              dut.10.240.183.62: set fwd io
06/11/2020 17:25:59              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:25:59              dut.10.240.183.62: set promisc all off
06/11/2020 17:25:59              dut.10.240.183.62: 
06/11/2020 17:25:59              dut.10.240.183.62: clear port stats all
06/11/2020 17:25:59              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:25:59              dut.10.240.183.62: start
06/11/2020 17:26:00              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:26:03              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x9100 - length=60 - nb_segs=1 - Protocol Extraction:[0x2017:0x0000],vlan,stag=1:0:23,ctag=0:0:0 - hw ptype: L2_ETHER  - 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 

06/11/2020 17:26:03                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Result PASSED:
06/11/2020 17:26:03              dut.10.240.183.62: quit
06/11/2020 17:26:04              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            60
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	60
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_18053477340465109180 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_4862319445575849227 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_14165170370375636993 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_5077763560783272968 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_15546918587701240053 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_5138039736695612555 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_8983355275948871260 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_4031214634026299162 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_12579445370270875916 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_7228500098929430638 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15828975399901247803 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_6115626323961390708 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_17558151778724572091 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_9858793040668220052 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_5811481678658849415 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_8137908002918287018 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_2084752535792923525 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_11091757976622071861 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_875665716104789920 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_10985240117858352018 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_18428368324705228957 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_11454177231623602727 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_8350113036876191465 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_10180723635791404652 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_3558053432201343981 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_6368840635632799249 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_1139107698804863518 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_131253306600990119 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_10165342629275687263 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_16038946658436951920 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_3606177485334344544 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_7498833003893109688 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_18219303796785972272 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_12902059962802819836 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_3851457582800179746 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_10629948977765275713 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_6311338269995741584 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_10763997555849401205 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_4955363861827722321 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_6745401117419103124 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_7901440547472888874 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_10499864400605521076 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_9830714747658594216 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_975732467116800982 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1919485635733884877 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_1063840514284584404 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_5426190937964256667 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_3555517239097152426 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_6776218391367590159 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_9629989987364032881 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_11273795263559181751 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_1856561781319694662 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_5323304695581944893 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_3536165335011266374 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_2526295714273663614 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_2019409150574990368 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_6917674237210192146 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_10495527222625907834 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_9769549378525460422 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_2792456107345833422 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_941100121196204733 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_7353178212043290457 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_379421268073730366 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_6439538355091568563 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_2792612905713934932 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_12397234703905232312 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_14179369012782669882 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_11662060769544002560 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_8152415124331044229 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_6517659463237497951 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_6697690817490129053 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_11898488622903747946 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_1144704010325025412 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_6500062891356059023 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_10420167404502297988 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_8746817832413721116 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_9117490010364551687 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_2923220771607450000 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_4311270662790230620 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_11355283780015666435 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_8595747150177873130 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_8053015221490105744 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_11777650722694100642 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_9725721797770377580 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_17367641315710342521 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_6856867945460278544 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_6437081683526793001 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_14265575113168069874 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_11876733415252373289 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_6184025952727516327 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_1771371334382148679 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_15882639051713149818 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_14195474824095044908 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_1350996219950375569 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_3515259612483184082 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_2955045999526747157 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_6708337017100897649 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_5238040804880815904 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_935059273872509889 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_17333955373374030186 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_15311931784803523769 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_13625103043178693189 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_15359866432311419907 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_8023542438717349505 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_12486517594877020497 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_5629104656774551712 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_12788342222288843957 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_15269284205235085156 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_7923670934744852349 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_6208767838233172615 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_917826979141696100 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_12936864773810707413 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_2455337850163335546 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13635827971825646839 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_15947664378296844279 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_14401531356485443251 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_9413791333508349769 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_17409193398446602715 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_11601695382269102263 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_3171187828478175495 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_8205610428795647185 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_4937155611765443663 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_12312817385290879868 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_3655206194356516326 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_9391100889475844203 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_5420900650041068284 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_13097674925278684352 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_8686249598029864802 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_7501598172090459606 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_17001256029993365261 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_9548591886679153118 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_17554445077607558754 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:26:06              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:26:07                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Result SKIPPED:
06/11/2020 17:26:07                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Result SKIPPED:
06/11/2020 17:26:07                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
06/11/2020 17:26:07              dut.10.240.183.62: 
06/11/2020 17:26:07                         tester: 
06/11/2020 17:26:07              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:26:09              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8890973021366572106 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_13246264394997851337 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_6434317721971126635 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_6809761525835713839 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_4061525672956871871 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_1199201327680154647 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_13780455178794478881 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_6927945675161320169 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_4713548278259712099 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_8751856875522798732 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11077892867383996075 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_7053512549369489454 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_7630259277045337792 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_9546788163369086776 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_17745753357330165874 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_16388730928307186483 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_14788891584386972162 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_15810621497394563932 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_7261620328056619009 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_657217182965361203 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_7242100802164653801 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_7221576851412771704 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_8849719609536925745 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_8029751806285573111 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_7055815593108277681 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_9879491587127323568 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_14317599889274693887 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_16839726680092723801 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_4761298423908814841 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_15399327173764526314 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_278908976781972240 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_6084626986882283 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_7837107333013972373 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_17235330160388527760 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_8290721987165680960 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_12942938410360914433 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_2906717268232678168 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_16680103219897122617 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_6958593471844867227 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_281315096281257586 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_15719711015349295105 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_10345446180691760176 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_5753718687783978907 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14690600773381033646 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_4207373065858590250 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_13043303635059351786 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_6981385604847565584 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_5193195699244971189 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_11290544057821158341 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_8742767480795236653 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_6320553322034862371 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_1422781380597728662 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_14563595584833270521 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_1219086281397306894 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_13416651620511082946 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_18068457038860744898 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_13400963360511870911 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_388997865387845822 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_18249271932950504113 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_5221473942331095723 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_11781633351340586696 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_4101771936846280666 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_5451696877428228054 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_11420843779345564971 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_2524720198216791804 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_7157639609178575146 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_10117423864535337771 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_87441133295153027 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_7669985193305347552 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_11241070782162341850 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_3016666757048228031 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14633859166689554172 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_18076189806768523392 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_232528776488509288 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_9120159155256508586 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_6301881923714560764 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_9912991309939905505 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_318670557146189533 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_9047225299192068409 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_5604502453956239780 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_4597696261354258752 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_6777362506019838167 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_7281510827570524016 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_5475798163198840490 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_9533615982036593892 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_530321341609093635 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_9042214461234800451 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_4920766992964118641 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_15932745442684973467 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_5651849450632165051 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_3768023440927926167 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_11004139929122114242 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_8096873554893026278 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_8702978525942163227 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_16610549966343103952 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_5057525861287018644 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_116681986285562671 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_17615002342421283459 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_8397619774421046299 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_3788548361526744289 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_14877728983605511657 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_18341521847248928792 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_2358172238430242225 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_15271684298384944567 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_11141394602881842329 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_16329923244224006051 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_343389529136078759 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_13380596266688999530 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_6696487226627395295 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_8799008654381415469 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_13129331556597854342 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_4575791262011803093 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_2380160697623308000 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_16290897418382735721 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_5096374699401675467 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_9335459528039508984 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_1123783548772789760 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_8562212085940568007 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_1503533140683467701 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_15485973981458900675 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_15536817456422663313 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_16599857924843998268 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_17708703129960874526 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_4063851074261190633 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_954650448946712662 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_15908921053395704379 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_9821155231293991664 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_17677355581815590160 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_14823598542407867427 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_6345340120158712237 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_2457297000121353498 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_15658307408062512857 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:26:19              dut.10.240.183.62: set verbose 1
06/11/2020 17:26:19              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:26:19              dut.10.240.183.62: start
06/11/2020 17:26:19              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:26:23              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=18 - 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 

06/11/2020 17:26:27              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=18 - 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 

06/11/2020 17:26:27                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result PASSED:
06/11/2020 17:26:27              dut.10.240.183.62: quit
06/11/2020 17:26:28              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_13246264394997851337 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_6434317721971126635 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_6809761525835713839 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_4061525672956871871 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_1199201327680154647 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_13780455178794478881 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_6927945675161320169 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_4713548278259712099 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_8751856875522798732 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11077892867383996075 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_7053512549369489454 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_7630259277045337792 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_9546788163369086776 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_17745753357330165874 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_16388730928307186483 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_14788891584386972162 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_15810621497394563932 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_7261620328056619009 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_657217182965361203 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_7242100802164653801 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_7221576851412771704 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_8849719609536925745 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_8029751806285573111 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_7055815593108277681 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_9879491587127323568 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_14317599889274693887 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_16839726680092723801 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_4761298423908814841 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_15399327173764526314 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_278908976781972240 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_6084626986882283 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_7837107333013972373 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_8890973021366572106 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_8290721987165680960 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_12942938410360914433 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_2906717268232678168 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_16680103219897122617 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_6958593471844867227 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_281315096281257586 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_15719711015349295105 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_10345446180691760176 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_5753718687783978907 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14690600773381033646 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_4207373065858590250 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_13043303635059351786 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_6981385604847565584 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_5193195699244971189 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_11290544057821158341 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_8742767480795236653 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_6320553322034862371 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_1422781380597728662 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_14563595584833270521 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_1219086281397306894 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_13416651620511082946 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_18068457038860744898 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_13400963360511870911 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_388997865387845822 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_18249271932950504113 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_5221473942331095723 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_11781633351340586696 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_4101771936846280666 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_5451696877428228054 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_11420843779345564971 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_2524720198216791804 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_7157639609178575146 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_17235330160388527760 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_87441133295153027 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_7669985193305347552 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_11241070782162341850 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_3016666757048228031 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14633859166689554172 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_18076189806768523392 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_232528776488509288 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_9120159155256508586 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_6301881923714560764 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_9912991309939905505 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_318670557146189533 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_9047225299192068409 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_5604502453956239780 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_4597696261354258752 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_6777362506019838167 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_7281510827570524016 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_5475798163198840490 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_9533615982036593892 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_530321341609093635 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_9042214461234800451 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_4920766992964118641 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_15932745442684973467 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_5651849450632165051 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_3768023440927926167 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_11004139929122114242 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_8096873554893026278 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_8702978525942163227 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_16610549966343103952 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_5057525861287018644 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_116681986285562671 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_17615002342421283459 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_8397619774421046299 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_10117423864535337771 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_14877728983605511657 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_18341521847248928792 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_2358172238430242225 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_15271684298384944567 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_11141394602881842329 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_16329923244224006051 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_343389529136078759 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_13380596266688999530 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_6696487226627395295 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_8799008654381415469 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_13129331556597854342 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_4575791262011803093 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_2380160697623308000 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_16290897418382735721 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_5096374699401675467 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_9335459528039508984 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_1123783548772789760 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_8562212085940568007 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_1503533140683467701 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_15485973981458900675 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_15536817456422663313 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_16599857924843998268 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_17708703129960874526 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_4063851074261190633 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_954650448946712662 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_15908921053395704379 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_9821155231293991664 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_17677355581815590160 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_14823598542407867427 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_6345340120158712237 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_2457297000121353498 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_15658307408062512857 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_3788548361526744289 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:26:30              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:26:30                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Begin
06/11/2020 17:26:30              dut.10.240.183.62: 
06/11/2020 17:26:30                         tester: 
06/11/2020 17:26:30              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:26:33              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2615864650489045363 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_6936215835056934283 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_13793594853302621945 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_15121730351744401103 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_14618254417615212373 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_1138572787389764615 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_8817199944043845645 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_15437017485736620506 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_7182185906591813914 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_10140434491420565410 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_5464437664941818763 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_4043113598878861316 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_3773964286522511897 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_2357724616692019531 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_15140045500558315365 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_7504619451442173053 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_16248710012699805481 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_7712808944040467669 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_7707266359279910724 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_15038813011936764424 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_18071414428632736885 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_3168436328246568005 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_17805714753612548321 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_12228538114956988831 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_15611540097902199594 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_1753980494454371805 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_8518894898982004107 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_3001021365971012743 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_4111100370669772022 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_13506040750458482005 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_18363794227456145159 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_10605277593596481444 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_1133267292600706424 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_3662992083488980069 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_4956122069234733454 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_227673509013454666 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_244941430032377401 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_17592679414630399294 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_14806781136604388887 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_9536993661667166096 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_11757174737110774949 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_15914886520298471946 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_4202105366095795306 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_2521144766263698882 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_94250682768913334 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1205101742451521773 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_1407909020096981518 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_7840727884496508947 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_6263908782618765016 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_5895359033251156482 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_997629302123884825 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_9833955926858150661 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_963157933477883919 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_2622696086300159146 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_729115189979944239 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_11128430448192019007 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_16823145994563663978 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_1926902095250311366 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_14161683464452588756 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_12452801857542696745 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_3182146925621492447 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_9259655463813727478 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_15631516782110077094 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_7665636250885167949 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_581744820404567968 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_12921276587723418723 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_7302803300780132217 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_17855130035218765400 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_1319811922795763490 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_16990657504752804109 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_13652880778099985294 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_1891961890362091787 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_7904971690349391940 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_14616699837160770032 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_16949879378543832710 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_5605870999388784450 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_10829766385201636227 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_13012727744173448997 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_10961608639161340473 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_15751568520885351182 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_5794976712931315376 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_1603392797135221217 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_1228968557942908236 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_11672294101733898974 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_9789468412827901298 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_13901264925334910704 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_13316172918665054434 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_17080072033742595958 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_12911111036863287103 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_8886170969525313583 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_12196794410745572280 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_11187247505578817740 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_15548934676915713047 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_15437121845417731252 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_13440191247713460337 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_10414045784349372332 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_8061404618503998030 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_633057384720823937 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_11860949616492426325 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_1826423065077758791 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_10262908246737009220 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_16350664860670631772 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_3405446929919263989 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_9090073832993522198 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_11957219779852063283 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_8726834168908887688 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_17609369681194472609 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_10907553980283225605 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_10609530195306912554 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_15134753616330101108 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_17765123192631549016 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_14261346907728331117 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_8460783273787084396 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_12878399249392935776 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_16087733192096724691 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_13358137970935098183 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_4961579750490242893 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_3979133654932217196 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_9798391818601640199 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_13191656120891686034 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_15092570552232747702 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_5593132919538369143 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_16441546198538239524 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_5128697543718143709 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_4961427016329417293 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_15257132587650806825 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_5277101577110075949 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_7288698338256967256 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_16757917479761989026 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_15032686210718472298 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_9632298332766053144 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_1918625908052146485 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:26:43              dut.10.240.183.62: set verbose 1
06/11/2020 17:26:43              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:26:43              dut.10.240.183.62: start
06/11/2020 17:26:43              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:26:46              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:26:50              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=66 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:26:50                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Result PASSED:
06/11/2020 17:26:50              dut.10.240.183.62: quit
06/11/2020 17:26:51              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_6936215835056934283 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_13793594853302621945 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_15121730351744401103 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_14618254417615212373 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_1138572787389764615 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_8817199944043845645 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_15437017485736620506 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_7182185906591813914 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_10140434491420565410 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_5464437664941818763 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_4043113598878861316 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_3773964286522511897 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_2357724616692019531 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_15140045500558315365 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_7504619451442173053 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_16248710012699805481 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_7712808944040467669 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_7707266359279910724 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_15038813011936764424 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_18071414428632736885 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_3168436328246568005 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_17805714753612548321 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_12228538114956988831 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_15611540097902199594 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_1753980494454371805 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_8518894898982004107 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_3001021365971012743 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_4111100370669772022 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_13506040750458482005 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_18363794227456145159 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_10605277593596481444 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_1133267292600706424 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_2615864650489045363 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_4956122069234733454 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_227673509013454666 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_244941430032377401 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_17592679414630399294 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_14806781136604388887 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_9536993661667166096 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_11757174737110774949 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_15914886520298471946 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_4202105366095795306 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_2521144766263698882 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_94250682768913334 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1205101742451521773 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_1407909020096981518 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_7840727884496508947 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_6263908782618765016 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_5895359033251156482 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_997629302123884825 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_9833955926858150661 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_963157933477883919 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_2622696086300159146 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_729115189979944239 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_11128430448192019007 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_16823145994563663978 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_1926902095250311366 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_14161683464452588756 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_12452801857542696745 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_3182146925621492447 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_9259655463813727478 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_15631516782110077094 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_7665636250885167949 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_581744820404567968 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_12921276587723418723 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_3662992083488980069 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_17855130035218765400 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_1319811922795763490 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_16990657504752804109 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_13652880778099985294 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_1891961890362091787 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_7904971690349391940 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_14616699837160770032 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_16949879378543832710 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_5605870999388784450 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_10829766385201636227 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_13012727744173448997 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_10961608639161340473 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_15751568520885351182 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_5794976712931315376 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_1603392797135221217 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_1228968557942908236 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_11672294101733898974 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_9789468412827901298 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_13901264925334910704 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_13316172918665054434 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_17080072033742595958 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_12911111036863287103 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_8886170969525313583 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_12196794410745572280 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_11187247505578817740 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_15548934676915713047 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_15437121845417731252 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_13440191247713460337 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_10414045784349372332 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_8061404618503998030 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_633057384720823937 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_11860949616492426325 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_7302803300780132217 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_10262908246737009220 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_16350664860670631772 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_3405446929919263989 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_9090073832993522198 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_11957219779852063283 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_8726834168908887688 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_17609369681194472609 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_10907553980283225605 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_10609530195306912554 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_15134753616330101108 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_17765123192631549016 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_14261346907728331117 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_8460783273787084396 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_12878399249392935776 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_16087733192096724691 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_13358137970935098183 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_4961579750490242893 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_3979133654932217196 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_9798391818601640199 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_13191656120891686034 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_15092570552232747702 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_5593132919538369143 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_16441546198538239524 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_5128697543718143709 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_4961427016329417293 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_15257132587650806825 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_5277101577110075949 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_7288698338256967256 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_16757917479761989026 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_15032686210718472298 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_9632298332766053144 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_1918625908052146485 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_1826423065077758791 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:26:53              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:26:54                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Begin
06/11/2020 17:26:54              dut.10.240.183.62: 
06/11/2020 17:26:54                         tester: 
06/11/2020 17:26:54              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:26:56              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8811689562975040552 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_6329087503929326330 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_17333680573982716623 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_6653640403966153142 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_16522518335741169724 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_7745149190010908107 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_13614162992821329633 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_12785464141745136560 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_12862083508997259990 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_4058499336533625050 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_13657183331036796266 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_9587072471238700291 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_11082813387181944462 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_7743437074711887002 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_8094267948263860244 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_11449097422515810407 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_186929733630135344 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_5698310033009558913 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_814028453410147299 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_14785781785703812192 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_7229110145877261800 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_578735610865121267 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_1325298958909093307 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_2111399745502489651 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_12126700891337184215 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_8002338682356451400 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_8149504540887137735 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_4718182355743526558 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_4647748565699810419 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_11945348673314201912 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_3414685042254691461 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_1399802003576271407 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_13711287553700358797 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_16776138520309601456 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11908007940864399426 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_15079968600668132797 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_17001137509963141496 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_17501630200069239521 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_6334484973710695214 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_4742826353371990670 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_17210182655589086745 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_17141099447930841631 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_5440808870648096806 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_4735293331677257582 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_1174377265298813032 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1169016741979026285 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_14753603807409243224 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_16214831937308421259 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_12009363909547441831 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_4472633478057024736 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_12739921121207332893 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_6074135146055311669 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_727757775655198490 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_15367511912690415102 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_13580265569575962533 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_13837565155899010979 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_5467497616663432199 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_4990605343265868160 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_3805714643270011274 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_1990621197890262960 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_15590673099732020850 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_6778799866285780166 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_6557772397904412025 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_5174932726376160377 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_2787811419001715644 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_18108573017131431189 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_434629054078074690 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_11031728858282585002 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_15908348307250748968 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_8382553212146625254 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_11767583568873982368 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_18013938325880624207 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_7624362088250369135 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_10885264761455679073 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_12598153812122580832 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_10463748038625188786 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_8814110873465215222 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_729854529903391461 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_15401405295483771822 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_17086597915691822687 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_12902600604865792814 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_9919240569771459414 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_7605559161750347912 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_1224101213877520730 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_8461684332048391127 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_8600993194926870410 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_8177283400102491879 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_3200042609377000853 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_7698840936263071178 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_4107096306668107142 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_9416981058541890044 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_6228292754768969676 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_6256421662263343850 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_11763811546991767513 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_16481566514739757273 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_2462826860423208914 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_5903424718786963172 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_18288226286416201719 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_3675641088080914553 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_14079827298161168660 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_3131798692419349016 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_16065830647533351606 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_10467746888182974485 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_13758291677151642326 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_1936572321410858451 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_15638573691697423341 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_15466234529628663992 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_389462423634297856 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_9520756265205681108 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_17243351571593791064 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_14505728464941770611 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_1027431274371425520 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_11035862981606332285 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_17642997171451144065 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_3507372328681688873 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_4924940000477316363 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_499905705851904915 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_5128470507808683387 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_8742733531879771416 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_10777065953697969740 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_2988042332567664410 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_8862152341725034045 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_5644757096986369656 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_10407312092412562892 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_3309011534543495439 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_12196995061439077452 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_11840342675083610077 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_8189730129554920793 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_15039036100430143964 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_8393731775660819348 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_2250549213424095725 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_7892202941265166654 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:27:06              dut.10.240.183.62: set verbose 1
06/11/2020 17:27:06              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:27:06              dut.10.240.183.62: start
06/11/2020 17:27:06              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:27:10              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=18 - 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 

06/11/2020 17:27:13              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:27:17              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:27:21              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:27:24              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:27:28              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=18 - 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 

06/11/2020 17:27:31              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=62 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:27:35              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=66 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:27:39              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=70 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:27:42              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8847 - length=74 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:27:42                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Result PASSED:
06/11/2020 17:27:42              dut.10.240.183.62: quit
06/11/2020 17:27:43              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_6329087503929326330 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_17333680573982716623 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_6653640403966153142 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_16522518335741169724 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_7745149190010908107 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_13614162992821329633 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_12785464141745136560 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_12862083508997259990 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_4058499336533625050 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_13657183331036796266 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_9587072471238700291 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_11082813387181944462 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_7743437074711887002 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_8094267948263860244 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_11449097422515810407 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_186929733630135344 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_5698310033009558913 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_814028453410147299 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_14785781785703812192 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_7229110145877261800 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_578735610865121267 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_1325298958909093307 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_2111399745502489651 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_12126700891337184215 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_8002338682356451400 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_8149504540887137735 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_4718182355743526558 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_4647748565699810419 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_11945348673314201912 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_3414685042254691461 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_1399802003576271407 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_13711287553700358797 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_8811689562975040552 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11908007940864399426 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_15079968600668132797 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_17001137509963141496 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_17501630200069239521 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_6334484973710695214 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_4742826353371990670 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_17210182655589086745 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_17141099447930841631 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_5440808870648096806 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_4735293331677257582 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_1174377265298813032 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1169016741979026285 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_14753603807409243224 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_16214831937308421259 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_12009363909547441831 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_4472633478057024736 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_12739921121207332893 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_6074135146055311669 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_727757775655198490 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_15367511912690415102 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_13580265569575962533 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_13837565155899010979 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_5467497616663432199 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_4990605343265868160 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_3805714643270011274 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_1990621197890262960 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_15590673099732020850 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_6778799866285780166 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_6557772397904412025 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_5174932726376160377 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_2787811419001715644 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_18108573017131431189 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_16776138520309601456 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_11031728858282585002 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_15908348307250748968 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_8382553212146625254 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_11767583568873982368 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_18013938325880624207 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_7624362088250369135 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_10885264761455679073 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_12598153812122580832 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_10463748038625188786 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_8814110873465215222 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_729854529903391461 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_15401405295483771822 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_17086597915691822687 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_12902600604865792814 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_9919240569771459414 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_7605559161750347912 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_1224101213877520730 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_8461684332048391127 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_8600993194926870410 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_8177283400102491879 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_3200042609377000853 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_7698840936263071178 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_4107096306668107142 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_9416981058541890044 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_6228292754768969676 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_6256421662263343850 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_11763811546991767513 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_16481566514739757273 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_2462826860423208914 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_5903424718786963172 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_18288226286416201719 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_3675641088080914553 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_434629054078074690 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_3131798692419349016 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_16065830647533351606 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_10467746888182974485 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_13758291677151642326 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_1936572321410858451 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_15638573691697423341 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_15466234529628663992 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_389462423634297856 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_9520756265205681108 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_17243351571593791064 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_14505728464941770611 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_1027431274371425520 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_11035862981606332285 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_17642997171451144065 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_3507372328681688873 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_4924940000477316363 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_499905705851904915 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_5128470507808683387 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_8742733531879771416 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_10777065953697969740 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_2988042332567664410 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_8862152341725034045 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_5644757096986369656 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_10407312092412562892 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_3309011534543495439 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_12196995061439077452 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_11840342675083610077 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_8189730129554920793 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_15039036100430143964 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_8393731775660819348 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_2250549213424095725 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_7892202941265166654 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_14079827298161168660 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:27:45              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:27:46                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
06/11/2020 17:27:46              dut.10.240.183.62: 
06/11/2020 17:27:46                         tester: 
06/11/2020 17:27:46              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:27:48              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2414148260059122387 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_12329292514433395071 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_2002755711668465597 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_10568637134537089372 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_9319603674819533454 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_485996324258662947 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_9498616888703121788 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_11915161969209872777 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_16663258195801745854 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_17901781259364317905 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_16630625885806466162 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_14896666174158540560 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_12069943531422035597 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_3147608190242268628 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_14579014876986453607 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_11225094696590401776 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_2539708627140979573 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_12531210983858002399 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_2647238434770113677 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_7363221643424786067 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_3924945704662581556 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_7388092724182609392 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_5087943070783062440 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_14460245512265158454 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_1780437736843153218 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_11789831710394126347 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_6911853409749436594 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14739631599992512460 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_6084632885751955295 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_837994722465823613 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_13894444803679826593 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_6687826604221589909 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_710722295718239539 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_5887131742969836880 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_12536655431419443836 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_5603184387588314605 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_3013654775937518157 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_11187875316553026523 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_7461348555965570326 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_5414797124569761476 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_12180775113797376294 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_16237731451370940494 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_11947416022648230514 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_16408060644597284144 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_13666487656897259448 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1527009178768611991 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_5456648070485809307 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_14618347473441808443 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_10319577776268628730 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_13829967898676763287 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_7054936415869646172 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_4323157597596861492 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_11830939206071313097 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_12935027668584459559 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_17328178959754654204 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_6072203562992442047 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_5512905884272576628 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_18047672248708059739 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_3570279584610273158 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_14487438607419661804 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_11883874818156676175 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_9109849889381562179 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_16787907422695110153 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_8485744043052240735 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_3526170847165451467 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_12929172106089803424 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_14543145043442616473 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_16286707938680316415 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_12995565134909494445 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_3960677090198585932 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_13973265997444302953 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14256345368402701633 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_1914528545463096189 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_16375637382036934604 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_17161388698719806482 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_8492057114433522549 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_16136916686037832508 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_4395881839559159954 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_11964881409188073876 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_6460412073835085910 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_11760315745420917458 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_13900884045920665153 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_8899603596023644594 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_10792913568586481596 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_950930778413595007 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_17850576596793058001 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_8773196775357925369 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_3405641869052690806 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_6601933821647776247 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_15942293356624668994 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_17741885831903741771 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_3812665884950066713 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_15300920092261741246 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_15724117875830691724 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_16049966948803736715 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_10978102758885406551 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_344281466370488776 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_8346991599913938188 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_12422085979047845439 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_10955837620698737662 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_8730397251961984267 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_6833348223243865767 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_16240753857955091979 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_7039910404074657512 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_5609384493070795720 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_1563819570785407748 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_5008429565967499740 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_5804537657229740641 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_8653840071485402720 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_1740755857035717770 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_9886261004906563699 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_15605677186432425038 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_16587817900493286815 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_4231512876647690793 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_5376813930577082681 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_303384806331495383 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_8525678772491433515 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_18251943348403123117 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_11232392300866663950 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_4084107244402881003 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_3039084562908598389 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_11514184467499294607 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_10182431113136360417 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_386986866700030128 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_142225575071383896 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_6589276818173398708 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_282797057246616972 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_14311503611838629278 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_9618732316451611501 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_9482514891508081904 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_5522330654296444946 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_17441138497928607077 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:27:58              dut.10.240.183.62: set verbose 1
06/11/2020 17:27:58              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:27:58              dut.10.240.183.62: start
06/11/2020 17:27:59              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:28:02              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:28:06              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:28:09              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:28:13              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=38 - 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 

06/11/2020 17:28:17              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=62 - nb_segs=1 - Protocol Offset:ip_offset=42 - 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 

06/11/2020 17:28:20              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=66 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:28:24              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=70 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:28:27              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=74 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:28:31              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=78 - nb_segs=1 - Protocol Offset:ip_offset=38 - 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 

06/11/2020 17:28:35              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=82 - nb_segs=1 - Protocol Offset:ip_offset=42 - 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 

06/11/2020 17:28:35                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Result PASSED:
06/11/2020 17:28:35              dut.10.240.183.62: quit
06/11/2020 17:28:36              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_12329292514433395071 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_2002755711668465597 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_10568637134537089372 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_9319603674819533454 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_485996324258662947 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_9498616888703121788 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_11915161969209872777 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_16663258195801745854 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_17901781259364317905 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_16630625885806466162 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_14896666174158540560 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_12069943531422035597 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_3147608190242268628 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_14579014876986453607 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_11225094696590401776 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_2539708627140979573 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_12531210983858002399 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_2647238434770113677 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_7363221643424786067 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_3924945704662581556 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_7388092724182609392 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_5087943070783062440 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_14460245512265158454 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_1780437736843153218 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_11789831710394126347 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_6911853409749436594 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14739631599992512460 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_6084632885751955295 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_837994722465823613 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_13894444803679826593 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_6687826604221589909 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_710722295718239539 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_2414148260059122387 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_12536655431419443836 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_5603184387588314605 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_3013654775937518157 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_11187875316553026523 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_7461348555965570326 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_5414797124569761476 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_12180775113797376294 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_16237731451370940494 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_11947416022648230514 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_16408060644597284144 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_13666487656897259448 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1527009178768611991 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_5456648070485809307 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_14618347473441808443 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_10319577776268628730 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_13829967898676763287 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_7054936415869646172 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_4323157597596861492 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_11830939206071313097 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_12935027668584459559 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_17328178959754654204 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_6072203562992442047 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_5512905884272576628 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_18047672248708059739 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_3570279584610273158 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_14487438607419661804 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_11883874818156676175 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_9109849889381562179 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_16787907422695110153 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_8485744043052240735 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_3526170847165451467 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_12929172106089803424 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_5887131742969836880 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_16286707938680316415 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_12995565134909494445 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_3960677090198585932 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_13973265997444302953 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14256345368402701633 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_1914528545463096189 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_16375637382036934604 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_17161388698719806482 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_8492057114433522549 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_16136916686037832508 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_4395881839559159954 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_11964881409188073876 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_6460412073835085910 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_11760315745420917458 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_13900884045920665153 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_8899603596023644594 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_10792913568586481596 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_950930778413595007 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_17850576596793058001 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_8773196775357925369 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_3405641869052690806 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_6601933821647776247 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_15942293356624668994 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_17741885831903741771 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_3812665884950066713 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_15300920092261741246 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_15724117875830691724 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_16049966948803736715 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_10978102758885406551 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_344281466370488776 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_8346991599913938188 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_12422085979047845439 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_14543145043442616473 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_8730397251961984267 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_6833348223243865767 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_16240753857955091979 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_7039910404074657512 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_5609384493070795720 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_1563819570785407748 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_5008429565967499740 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_5804537657229740641 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_8653840071485402720 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_1740755857035717770 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_9886261004906563699 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_15605677186432425038 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_16587817900493286815 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_4231512876647690793 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_5376813930577082681 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_303384806331495383 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_8525678772491433515 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_18251943348403123117 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_11232392300866663950 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_4084107244402881003 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_3039084562908598389 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_11514184467499294607 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_10182431113136360417 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_386986866700030128 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_142225575071383896 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_6589276818173398708 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_282797057246616972 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_14311503611838629278 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_9618732316451611501 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_9482514891508081904 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_5522330654296444946 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_17441138497928607077 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_10955837620698737662 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:28:38              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:28:38                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
06/11/2020 17:28:38              dut.10.240.183.62: 
06/11/2020 17:28:38                         tester: 
06/11/2020 17:28:38              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:28:41              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_17111620319343550202 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_3187600930603595731 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_9525539065394841484 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_11282633284427343883 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_621647762772621779 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_13188336659982204784 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_1331252001706509978 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_7614069290124973384 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13601752397758433686 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_17918257223766591205 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_2588192711312585135 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_490152603072130030 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_1794881984880084904 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_2838812342820748894 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_2780139313120531990 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_5143204996009251897 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_8728524906066659196 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_2070887930589832869 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_8094278266792393338 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_17596752799303916605 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_6643396402458092498 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_17176939925290953459 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_10752967296387089808 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_3127287941852881355 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_8329267793883620906 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_10840764325921316884 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_3017276298254950898 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_2031274239364055012 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2345366765821179074 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_13419728316219116400 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_15785211591412065223 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_4725022182379819516 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_9075005535895034101 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_11394619568311153980 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_16213045701828669425 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_2504305319015446951 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_14901400743840704915 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_9194826096105954917 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_16014828921857637604 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_4029309795732552874 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_4730424607641089563 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_2831755830060480223 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_12126853175446693540 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_3553095824017589235 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_744039653685054005 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_3901583626577339317 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_7916176731719113668 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_10863100206513989853 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_8271413829548182197 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_15473460102258166733 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_9650041556303560055 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_13728810399798943804 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10337197283554970925 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_1600367847146563256 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_2229157363568370441 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_3880818397236099020 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_13372637681769647876 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_18260328526912593147 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_17648867712606030710 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_6831037402245445408 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_9829495956800686858 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_6270030178448024100 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_11947907053302375910 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_13833175096210302268 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_7193708238948895870 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_5680836321977097688 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_6704918540950646727 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_11450789120972851953 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_4596858164501693062 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_8190689385501349961 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_5131453941242065894 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_8765680156083789816 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_12483569582328032862 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_3670687017668102243 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_12122692645773747293 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_18034914514985812596 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_16367707168799164492 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_10873941029795348899 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_13227815275217416098 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_6372553851035716340 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_8174704119953175123 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_6773101178312480866 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_2210990157758410563 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_2912224578473926129 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_6592783394708139621 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_5436822842893937375 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_12145892070763255522 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_15899069964145446939 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_496508716188652630 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_15497188177775007168 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_6437563956064227480 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_169502530895837135 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_16714399594670327889 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_1244072268171758572 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_938878177312721817 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_2962783230766912475 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_1122459644573110630 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_17074664524626832217 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_46985669198407178 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_15908025650174068079 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_13404169418042491272 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_6038428753188079708 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_16687114889606333421 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_2505209490790510920 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_6092413443265441346 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_8272032138695083879 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_11657263082286826820 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_14634901488383471153 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_11987631761676817622 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_6252540379940532627 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_16257740749845636436 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_2321137329620143522 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_11425291885829712579 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_10942758693919964669 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_7847566426043633811 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_17566144732743120149 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_579109789901173381 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_5166400063339682905 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_9719999098219855461 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_3868757716961637934 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_13362844272919457459 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_11701229797617820109 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_14535248623583207284 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_10629288373592139193 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_11440381265321093001 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_116632380862236663 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_1417602589328322535 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_1317619754994760859 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_3282008210911064038 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_7715339755017349941 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_2902688924105868242 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_3251174523989695439 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:28:51              dut.10.240.183.62: set verbose 1
06/11/2020 17:28:51              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:28:51              dut.10.240.183.62: start
06/11/2020 17:28:51              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:28:54              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:28:58              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:29:02              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:29:05              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:29:09              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=38 - 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 

06/11/2020 17:29:12              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=62 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:29:16              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=66 - nb_segs=1 - Protocol Offset:ip_offset=26 - 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 

06/11/2020 17:29:20              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=70 - nb_segs=1 - Protocol Offset:ip_offset=30 - 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 

06/11/2020 17:29:23              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=74 - nb_segs=1 - Protocol Offset:ip_offset=34 - 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 

06/11/2020 17:29:27              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=78 - nb_segs=1 - Protocol Offset:ip_offset=38 - 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 

06/11/2020 17:29:27                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Result PASSED:
06/11/2020 17:29:27              dut.10.240.183.62: quit
06/11/2020 17:29:28              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_3187600930603595731 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_9525539065394841484 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_11282633284427343883 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_621647762772621779 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_13188336659982204784 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_1331252001706509978 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_7614069290124973384 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13601752397758433686 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_17918257223766591205 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_2588192711312585135 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_490152603072130030 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_1794881984880084904 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_2838812342820748894 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_2780139313120531990 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_5143204996009251897 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_8728524906066659196 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_2070887930589832869 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_8094278266792393338 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_17596752799303916605 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_6643396402458092498 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_17176939925290953459 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_10752967296387089808 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_3127287941852881355 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_8329267793883620906 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_10840764325921316884 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_3017276298254950898 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_2031274239364055012 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2345366765821179074 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_13419728316219116400 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_15785211591412065223 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_4725022182379819516 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_9075005535895034101 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_17111620319343550202 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_16213045701828669425 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_2504305319015446951 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_14901400743840704915 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_9194826096105954917 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_16014828921857637604 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_4029309795732552874 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_4730424607641089563 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_2831755830060480223 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_12126853175446693540 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_3553095824017589235 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_744039653685054005 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_3901583626577339317 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_7916176731719113668 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_10863100206513989853 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_8271413829548182197 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_15473460102258166733 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_9650041556303560055 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_13728810399798943804 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10337197283554970925 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_1600367847146563256 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_2229157363568370441 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_3880818397236099020 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_13372637681769647876 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_18260328526912593147 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_17648867712606030710 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_6831037402245445408 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_9829495956800686858 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_6270030178448024100 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_11947907053302375910 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_13833175096210302268 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_7193708238948895870 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_5680836321977097688 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_11394619568311153980 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_11450789120972851953 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_4596858164501693062 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_8190689385501349961 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_5131453941242065894 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_8765680156083789816 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_12483569582328032862 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_3670687017668102243 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_12122692645773747293 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_18034914514985812596 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_16367707168799164492 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_10873941029795348899 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_13227815275217416098 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_6372553851035716340 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_8174704119953175123 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_6773101178312480866 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_2210990157758410563 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_2912224578473926129 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_6592783394708139621 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_5436822842893937375 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_12145892070763255522 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_15899069964145446939 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_496508716188652630 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_15497188177775007168 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_6437563956064227480 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_169502530895837135 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_16714399594670327889 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_1244072268171758572 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_938878177312721817 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_2962783230766912475 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_1122459644573110630 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_17074664524626832217 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_46985669198407178 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_6704918540950646727 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_13404169418042491272 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_6038428753188079708 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_16687114889606333421 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_2505209490790510920 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_6092413443265441346 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_8272032138695083879 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_11657263082286826820 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_14634901488383471153 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_11987631761676817622 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_6252540379940532627 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_16257740749845636436 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_2321137329620143522 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_11425291885829712579 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_10942758693919964669 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_7847566426043633811 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_17566144732743120149 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_579109789901173381 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_5166400063339682905 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_9719999098219855461 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_3868757716961637934 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_13362844272919457459 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_11701229797617820109 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_14535248623583207284 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_10629288373592139193 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_11440381265321093001 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_116632380862236663 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_1417602589328322535 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_1317619754994760859 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_3282008210911064038 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_7715339755017349941 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_2902688924105868242 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_3251174523989695439 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_15908025650174068079 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:29:30              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:29:30                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Begin
06/11/2020 17:29:31              dut.10.240.183.62: 
06/11/2020 17:29:31                         tester: 
06/11/2020 17:29:31              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:29:33              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_5152694506511689451 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_3554269811695419365 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_2339681802947356412 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_1378779842987421617 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_9715669419517250138 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_7314948279282241292 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_11965286088516505834 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_11946935926801396288 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_17662378476579651368 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_14052738894172851827 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_17965668223152923873 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15654027210036225342 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_14582088904051456110 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_15264423534550605437 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_8799243893117699525 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_8086723006563921378 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_10441550844091334508 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_17747918661401950302 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_787193361757181856 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_5587700537807412448 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_3650786050668386724 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_6518808491618427971 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_1780938070487950533 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_4674666497485590042 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_348430289258597344 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_11113845409882710590 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_14611653339840557557 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_8576159175612332297 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2559829887317214129 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_3183094979343810794 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_7954959584655668616 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_2057346085578288418 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_6169988557366759234 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_12121220911245133464 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_18067641180226954520 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_2016647811866240183 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_8836508204251937635 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_2787570413327252894 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_14040084170870459360 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_12241737138246610256 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_784901603135361450 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_14260252022715873237 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_12759427320291607614 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_6182582795670587230 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_4405831363724579419 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_8908119603344804640 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_3280240379480838280 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_17316066314107598443 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_10113915272514250246 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_8547998560644097032 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_13659369974831846001 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_13154183493213222964 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_9856563160039338854 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_4752189842328683432 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_13159030854911956174 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_17942089765441811830 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_3206315140152768510 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_2446943151148552569 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_12739891861398200520 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_3422769257883395653 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_2532630046339810062 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_11397088127117172530 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_13268748798030404636 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_3541415405343419245 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_14091692768780497422 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_214789883887009975 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_16547365581403507100 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_985001042003131152 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_12216782593704848473 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_4802124133970598551 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_540061475098798108 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_9681897757929748707 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_9005090706359309018 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_306571741021213041 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_13118260703573948888 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_2150345516848450195 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_13593574048697519817 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_12217772146314307445 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_15945068568986429413 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_10090781254276476105 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_5703718375336952330 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_2769488954669395289 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_15013044768651719009 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_14322155898955329170 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_15001627214214410977 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_9075458651059328153 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_5880377321704908842 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_4091017253536954784 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_15600013476010506416 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_674549610580955060 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_12457388464098426270 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_13050732251591555524 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_18411018605394175334 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_5791048750203683390 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_11095075894312721316 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_12175226633687151206 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_487811645996331886 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_8970350307277732157 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_18137529474389858507 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_7065713179111665645 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_5636191238217562944 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_9744637752894179621 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_16146704091074798801 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_9864522764378710750 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_10102876745237327380 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_3463001422092157403 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_16792607530537985536 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_793623097478938975 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_7033096994688846190 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_13936247512345283332 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_1215939737397871744 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_13375449891614336874 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_372161655748392034 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_17427650643338727000 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_2225744691211292863 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_7010669409865908259 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_14297043585073078180 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_17764237302757749080 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_10841291904362901891 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_17381023219824241617 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_16727897754843352227 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_602860556307666951 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_10881180898719560470 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_1150178381065906838 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_573842788186665275 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_7977904236030780260 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_11980806078438908393 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_12693660065220688815 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_1286720279395580665 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_1514282508036229787 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_3357745690965786901 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_13708600947243206334 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:29:43              dut.10.240.183.62: set verbose 1
06/11/2020 17:29:43              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:29:43              dut.10.240.183.62: start
06/11/2020 17:29:43              dut.10.240.183.62: 

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 1) -> TX P=0/Q=0 (socket 1) 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[6] 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[6] 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 ****************
06/11/2020 17:29:47              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:29:50              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=62 - nb_segs=1 - Protocol Offset:ip_offset=22 - 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 

06/11/2020 17:29:50                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Result PASSED:
06/11/2020 17:29:50              dut.10.240.183.62: quit
06/11/2020 17:29:51              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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_3554269811695419365 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_2339681802947356412 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_1378779842987421617 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_9715669419517250138 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_7314948279282241292 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_11965286088516505834 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_11946935926801396288 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_17662378476579651368 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_14052738894172851827 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_17965668223152923873 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15654027210036225342 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_14582088904051456110 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_15264423534550605437 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_8799243893117699525 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_8086723006563921378 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_10441550844091334508 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_17747918661401950302 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_787193361757181856 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_5587700537807412448 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_3650786050668386724 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_6518808491618427971 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_1780938070487950533 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_4674666497485590042 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_348430289258597344 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_11113845409882710590 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_14611653339840557557 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_8576159175612332297 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2559829887317214129 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_3183094979343810794 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_7954959584655668616 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_2057346085578288418 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_6169988557366759234 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_5152694506511689451 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_18067641180226954520 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_2016647811866240183 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_8836508204251937635 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_2787570413327252894 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_14040084170870459360 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_12241737138246610256 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_784901603135361450 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_14260252022715873237 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_12759427320291607614 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_6182582795670587230 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_4405831363724579419 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_8908119603344804640 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_3280240379480838280 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_17316066314107598443 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_10113915272514250246 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_8547998560644097032 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_13659369974831846001 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_13154183493213222964 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_9856563160039338854 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_4752189842328683432 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_13159030854911956174 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_17942089765441811830 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_3206315140152768510 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_2446943151148552569 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_12739891861398200520 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_3422769257883395653 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_2532630046339810062 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_11397088127117172530 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_13268748798030404636 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_3541415405343419245 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_14091692768780497422 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_214789883887009975 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_12121220911245133464 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_985001042003131152 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_12216782593704848473 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_4802124133970598551 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_540061475098798108 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_9681897757929748707 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_9005090706359309018 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_306571741021213041 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_13118260703573948888 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_2150345516848450195 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_13593574048697519817 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_12217772146314307445 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_15945068568986429413 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_10090781254276476105 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_5703718375336952330 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_2769488954669395289 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_15013044768651719009 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_14322155898955329170 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_15001627214214410977 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_9075458651059328153 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_5880377321704908842 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_4091017253536954784 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_15600013476010506416 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_674549610580955060 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_12457388464098426270 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_13050732251591555524 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_18411018605394175334 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_5791048750203683390 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_11095075894312721316 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_12175226633687151206 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_487811645996331886 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_8970350307277732157 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_18137529474389858507 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_16547365581403507100 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_5636191238217562944 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_9744637752894179621 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_16146704091074798801 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_9864522764378710750 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_10102876745237327380 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_3463001422092157403 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_16792607530537985536 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_793623097478938975 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_7033096994688846190 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_13936247512345283332 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_1215939737397871744 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_13375449891614336874 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_372161655748392034 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_17427650643338727000 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_2225744691211292863 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_7010669409865908259 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_14297043585073078180 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_17764237302757749080 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_10841291904362901891 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_17381023219824241617 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_16727897754843352227 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_602860556307666951 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_10881180898719560470 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_1150178381065906838 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_573842788186665275 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_7977904236030780260 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_11980806078438908393 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_12693660065220688815 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_1286720279395580665 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_1514282508036229787 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_3357745690965786901 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_13708600947243206334 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_7065713179111665645 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:29:53              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:29:54                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
06/11/2020 17:29:54              dut.10.240.183.62: 
06/11/2020 17:29:54                         tester: 
06/11/2020 17:29:54              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:29:56              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8809560113563993586 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_1475099742805878894 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_13784308393716155552 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_5204718012871139103 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_14627796497101976729 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_6408098703500921859 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_13177056950677249667 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_17853974879021266747 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_3125657948234956182 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_17593614315135400295 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_17512899853539935408 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_13073193121279302168 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_13712398538095113965 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_8931949792268023287 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_14414830890008654398 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_5803824661594622358 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_15510954171333360399 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_11917482936309127265 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_8207123922170790102 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_5193461663262014740 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_10119158071814673130 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_418540883720816482 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_12426470783368409026 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_17843239118094321182 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_3020969897412428063 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_3117755950226650884 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_1742190597608695092 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_10630026673551568553 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2008204137712006775 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_5546864253416492105 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_5962957302293307120 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_17371493868514119104 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_14892579670766915007 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_13096995957715074219 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_3883886472521453223 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_8719606347492047491 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_10029949867035172375 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_11452763056535170186 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_1723429507072768026 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_10421015809321755654 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_1851304674429662260 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_11536499374335596255 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_1493410435325216124 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14898047867986551966 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_1847271993309597105 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_10854879023994054893 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_4711622924612281489 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_10881735753986162153 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_18079250150147676423 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_3036320107959905245 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_16970098045228122220 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_2078954043831404523 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_16018645923092695461 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_12786239468268304403 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_16447854345654132476 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_15925956732657283519 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_17991063886336576360 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_1371716788655719203 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_14398271482896816564 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_8154397591382520363 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_18225453195596204102 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_3290798631813529570 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_9409098732030811368 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_10240703734032301566 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_9750068136720424895 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_10559798039925681756 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_2577977928174259896 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_13661400198352805257 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_6008722414033851982 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_9010714938776455253 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_2230812857602421487 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_11785471325423125497 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_14529853456211261420 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_9511638121448435694 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_12200522098046327104 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_9439783270388626587 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_14883697129132648233 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_16130229594830712013 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_1509011081122329301 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_11648850982854264388 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_263005670344756430 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_14038561458196428120 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_18258144850899221625 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_9172249895692164103 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_309080068741366506 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_14615882770739111680 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_5215264522430076275 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_4695464713275633193 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_10094540148514127208 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_12360433598450776371 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_6590140347125699289 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_15763301719521889974 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2331837233175546462 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_17214730259725915440 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_9025247794143932956 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_12848545788654160482 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_18041397477387145536 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_3586358747043341689 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_10809056011615061856 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_357816536936895949 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_16197160908587018357 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_11573714476344789678 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_13029204796797619049 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_10696395703968603650 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_17690418133392798965 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_16804231092986126565 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_10063132719217268119 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_5781751047971658723 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_11166759607102857581 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_5728843297398621056 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_16122617343182916454 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_18159145521848654380 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_3379531614310260523 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_3481579241220327021 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_17164732298865703860 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_1272285007576603524 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_5686310706455654150 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_11378662586576624874 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_10910657218574694595 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_17266963754056733032 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_762168897632388571 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_6269611580143245903 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_4287473409341829234 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_10146736313703637199 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_17963819272793606414 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_15682522587383649278 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_10750536215963377389 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_7531295375017256282 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_17964164865281176806 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_18084088124271614694 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_12735658143576879193 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_6004160299927630844 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_vlan' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:30:06              dut.10.240.183.62: set verbose 1
06/11/2020 17:30:06              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:30:06              dut.10.240.183.62: set fwd io
06/11/2020 17:30:06              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:30:06              dut.10.240.183.62: set promisc all off
06/11/2020 17:30:06              dut.10.240.183.62: 
06/11/2020 17:30:06              dut.10.240.183.62: clear port stats all
06/11/2020 17:30:07              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:30:07              dut.10.240.183.62: start
06/11/2020 17:30:07              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:30:10              dut.10.240.183.62: port 0/queue 13: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4f19e56d - RSS queue=0xd - Protocol Extraction:[0x0000:0x2017],vlan,stag=0:0:0,ctag=1:0:23 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:30:10                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Result PASSED:
06/11/2020 17:30:10              dut.10.240.183.62: quit
06/11/2020 17:30:11              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            60
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	60
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_1475099742805878894 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_13784308393716155552 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_5204718012871139103 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_14627796497101976729 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_6408098703500921859 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_13177056950677249667 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_17853974879021266747 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_3125657948234956182 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_17593614315135400295 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_17512899853539935408 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_13073193121279302168 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_13712398538095113965 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_8931949792268023287 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_14414830890008654398 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_5803824661594622358 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_15510954171333360399 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_11917482936309127265 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_8207123922170790102 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_5193461663262014740 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_10119158071814673130 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_418540883720816482 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_12426470783368409026 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_17843239118094321182 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_3020969897412428063 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_3117755950226650884 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_1742190597608695092 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_10630026673551568553 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2008204137712006775 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_5546864253416492105 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_5962957302293307120 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_17371493868514119104 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_14892579670766915007 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_8809560113563993586 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_3883886472521453223 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_8719606347492047491 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_10029949867035172375 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_11452763056535170186 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_1723429507072768026 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_10421015809321755654 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_1851304674429662260 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_11536499374335596255 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_1493410435325216124 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14898047867986551966 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_1847271993309597105 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_10854879023994054893 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_4711622924612281489 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_10881735753986162153 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_18079250150147676423 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_3036320107959905245 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_16970098045228122220 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_2078954043831404523 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_16018645923092695461 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_12786239468268304403 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_16447854345654132476 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_15925956732657283519 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_17991063886336576360 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_1371716788655719203 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_14398271482896816564 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_8154397591382520363 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_18225453195596204102 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_3290798631813529570 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_9409098732030811368 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_10240703734032301566 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_9750068136720424895 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_10559798039925681756 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_13096995957715074219 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_13661400198352805257 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_6008722414033851982 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_9010714938776455253 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_2230812857602421487 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_11785471325423125497 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_14529853456211261420 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_9511638121448435694 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_12200522098046327104 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_9439783270388626587 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_14883697129132648233 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_16130229594830712013 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_1509011081122329301 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_11648850982854264388 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_263005670344756430 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_14038561458196428120 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_18258144850899221625 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_9172249895692164103 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_309080068741366506 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_14615882770739111680 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_5215264522430076275 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_4695464713275633193 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_10094540148514127208 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_12360433598450776371 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_6590140347125699289 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_15763301719521889974 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2331837233175546462 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_17214730259725915440 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_9025247794143932956 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_12848545788654160482 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_18041397477387145536 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_3586358747043341689 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_10809056011615061856 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_2577977928174259896 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_16197160908587018357 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_11573714476344789678 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_13029204796797619049 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_10696395703968603650 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_17690418133392798965 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_16804231092986126565 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_10063132719217268119 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_5781751047971658723 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_11166759607102857581 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_5728843297398621056 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_16122617343182916454 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_18159145521848654380 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_3379531614310260523 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_3481579241220327021 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_17164732298865703860 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_1272285007576603524 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_5686310706455654150 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_11378662586576624874 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_10910657218574694595 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_17266963754056733032 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_762168897632388571 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_6269611580143245903 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_4287473409341829234 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_10146736313703637199 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_17963819272793606414 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_15682522587383649278 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_10750536215963377389 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_7531295375017256282 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_17964164865281176806 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_18084088124271614694 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_12735658143576879193 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_6004160299927630844 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_357816536936895949 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:30:13              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:30:14                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Begin
06/11/2020 17:30:14              dut.10.240.183.62: 
06/11/2020 17:30:14                         tester: 
06/11/2020 17:30:14              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:30:16              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_17772310835444346736 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_151995152966911278 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_5705110004850575587 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_15097887127986472829 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_18282552534619028646 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_12795897963951632080 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_12259587854264481401 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_17189109965761903564 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13826748847073831526 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_13287680693959173865 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11083539023379566880 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_18191506408892954429 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_6221387021982104839 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_16520777990348810121 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_9223864016640021165 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_6988159166175577082 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_8800350870359365448 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_17922755798380941093 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_10325912369619199107 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_5942127909101191005 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_1927984503709327988 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_3159950035575344580 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_5110662905218607840 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_8674805000757359310 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_15009362082875818318 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_15892590816157685217 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_3841566342098743128 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_8143880572703508719 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_11227836905663931778 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_347359946031814775 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_4554013097158336360 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_12543838913384204658 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_5247259505260849141 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_12840468766451043079 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_17632622365905840508 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_7975544102120988072 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_15832056368572419598 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_5283050001622401441 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_11669797065068327339 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_16633344333867613925 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_1676527325234432520 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_11690112319419403475 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_8997496012154594052 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_2991933126817976274 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_7220696095443889612 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_7944884525671130523 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_4143152567059214111 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_3305070471176978171 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_11609535406095767284 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_14638883677819902835 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_14595257719278017463 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_4824627413558643141 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10077543270966774127 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_10543458761434153470 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_12119407369735565162 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_17183476928569206600 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_1859406001667328610 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_12663605145367224948 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_10360789290320248075 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_17136767492357546873 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_5263880513843320312 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_7250584236909818110 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_11406928165469214756 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_4499617044392099436 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_3316342241771309565 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_3432386718761885467 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_2508809994907926751 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_10747121772689310764 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_6685013038375632669 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_13290469769777331690 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_1665187061688631926 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_2278954262120735163 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_3663180315350185509 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_9221026074246652688 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_5309842005100218648 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_5070134425584423352 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_18021341358113833525 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_3285816420395340082 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_5263241453262942924 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_2663219315128585812 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_12668479366245424166 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_13220236728096662094 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_6589515205732613330 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_1097567829621898257 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_2648749941571605167 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_12365850486978157993 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_16612130913275200687 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_18259433772862860161 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_17033690283558419088 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_17553639291577784270 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_2476420938135440128 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_17456992207272544328 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_16616229545110685342 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_2594131841215843831 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_8019335767122063579 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_11894864518739050603 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_361458525872179754 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_12814058158561231564 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_8817472239685682721 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_2679038315990187014 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_11078778588819933034 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_1780681736080996268 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_9656365135559449667 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_18254542987345140633 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_12799606166686791727 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_6918722882450127196 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_18343608980916535168 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_10028617609853957852 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_8560850474184909736 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_730866224257623311 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_8601387200000144312 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_13151177805659390644 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_4875076959995610398 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_18367542456695765104 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_15726441909627287905 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_18187228386455780171 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_18084897039184229086 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_16939959944900757694 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_9339893649832171400 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_15821927217770157463 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_5975552620762443202 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_6240847159059129936 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_15091270832087733402 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_13149479831301911893 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_14498805374263585105 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_7490627478414831975 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_7032944073851447143 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_15141321857563662290 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_17217962752738216328 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_6521709337708407289 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_13012317370532927209 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_13910512853851293511 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 100
ice_init_proto_xtr(): Protocol extraction offload 'intel_pmd_dynflag_proto_xtr_vlan' 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
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 avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:30:26              dut.10.240.183.62: set verbose 1
06/11/2020 17:30:26              dut.10.240.183.62: 

Change verbose level from 0 to 1
06/11/2020 17:30:26              dut.10.240.183.62: set fwd io
06/11/2020 17:30:27              dut.10.240.183.62: 

Set io packet forwarding mode
06/11/2020 17:30:27              dut.10.240.183.62: set promisc all off
06/11/2020 17:30:27              dut.10.240.183.62: 
06/11/2020 17:30:27              dut.10.240.183.62: clear port stats all
06/11/2020 17:30:27              dut.10.240.183.62: 

ice_update_vsi_stats(): ************** VSI[6] 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[6] stats end ****************
ice_update_vsi_stats(): ************** VSI[6] 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[6] 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
06/11/2020 17:30:27              dut.10.240.183.62: start
06/11/2020 17:30:27              dut.10.240.183.62: 

io packet forwarding - ports=1 - cores=2 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) 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: 32 Tx queue number: 32
    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[6] 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[6] 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 ****************
06/11/2020 17:30:30              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=68:A6:B7:0B:6F:38 - type=0x88a8 - length=60 - nb_segs=1 - Protocol Extraction:[0x2017:0x0000],vlan,stag=1:0:23,ctag=0:0:0 - hw ptype: L2_ETHER  - 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 

06/11/2020 17:30:30                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Result PASSED:
06/11/2020 17:30:30              dut.10.240.183.62: quit
06/11/2020 17:30:31              dut.10.240.183.62: 

Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            60
ice_update_vsi_stats(): rx_unicast:          1
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:           1
ice_update_vsi_stats(): ************** VSI[6] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	60
ice_stats_get(): rx_unicast:	1
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:	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: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

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

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_151995152966911278 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_5705110004850575587 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_15097887127986472829 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_18282552534619028646 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_12795897963951632080 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_12259587854264481401 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_17189109965761903564 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13826748847073831526 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_13287680693959173865 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11083539023379566880 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_18191506408892954429 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_6221387021982104839 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_16520777990348810121 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_9223864016640021165 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_6988159166175577082 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_8800350870359365448 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_17922755798380941093 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_10325912369619199107 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_5942127909101191005 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_1927984503709327988 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_3159950035575344580 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_5110662905218607840 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_8674805000757359310 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_15009362082875818318 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_15892590816157685217 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_3841566342098743128 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_8143880572703508719 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_11227836905663931778 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_347359946031814775 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_4554013097158336360 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_12543838913384204658 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_5247259505260849141 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_17772310835444346736 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_17632622365905840508 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_7975544102120988072 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_15832056368572419598 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_5283050001622401441 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_11669797065068327339 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_16633344333867613925 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_1676527325234432520 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_11690112319419403475 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_8997496012154594052 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_2991933126817976274 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_7220696095443889612 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_7944884525671130523 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_4143152567059214111 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_3305070471176978171 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_11609535406095767284 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_14638883677819902835 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_14595257719278017463 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_4824627413558643141 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10077543270966774127 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_10543458761434153470 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_12119407369735565162 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_17183476928569206600 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_1859406001667328610 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_12663605145367224948 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_10360789290320248075 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_17136767492357546873 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_5263880513843320312 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_7250584236909818110 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_11406928165469214756 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_4499617044392099436 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_3316342241771309565 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_3432386718761885467 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_12840468766451043079 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_10747121772689310764 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_6685013038375632669 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_13290469769777331690 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_1665187061688631926 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_2278954262120735163 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_3663180315350185509 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_9221026074246652688 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_5309842005100218648 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_5070134425584423352 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_18021341358113833525 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_3285816420395340082 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_5263241453262942924 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_2663219315128585812 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_12668479366245424166 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_13220236728096662094 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_6589515205732613330 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_1097567829621898257 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_2648749941571605167 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_12365850486978157993 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_16612130913275200687 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_18259433772862860161 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_17033690283558419088 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_17553639291577784270 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_2476420938135440128 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_17456992207272544328 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_16616229545110685342 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_2594131841215843831 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_8019335767122063579 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_11894864518739050603 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_361458525872179754 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_12814058158561231564 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_8817472239685682721 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_2508809994907926751 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_11078778588819933034 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_1780681736080996268 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_9656365135559449667 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_18254542987345140633 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_12799606166686791727 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_6918722882450127196 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_18343608980916535168 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_10028617609853957852 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_8560850474184909736 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_730866224257623311 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_8601387200000144312 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_13151177805659390644 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_4875076959995610398 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_18367542456695765104 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_15726441909627287905 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_18187228386455780171 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_18084897039184229086 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_16939959944900757694 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_9339893649832171400 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_15821927217770157463 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_5975552620762443202 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_6240847159059129936 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_15091270832087733402 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_13149479831301911893 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_14498805374263585105 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_7490627478414831975 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_7032944073851447143 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_15141321857563662290 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_17217962752738216328 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_6521709337708407289 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_13012317370532927209 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_13910512853851293511 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_2679038315990187014 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:30:33              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:30:34                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Begin
06/11/2020 17:30:34              dut.10.240.183.62: 
06/11/2020 17:30:34                         tester: 
06/11/2020 17:30:34              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:af:00.0,proto_xtr=vxlan -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:30:36              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1592) device: 0000:af:00.0 (socket 1)
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:af:00.0
EAL: Calling pci_unmap_resource for 0000:af:00.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:af:00.0 at 0x2202000000
EAL: Requested device 0000:af: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
06/11/2020 17:30:36              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:af:00.0 --log-level='ice,8' -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
06/11/2020 17:30:38              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1592) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_14549763669874369542 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_14394995211124052823 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_6112704412154445456 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_4174234293019268723 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_1176742970450687723 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_3373868369535940748 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_15163544211799432385 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_12871657184182500445 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_10012548654621088056 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_5452680489081018098 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_10920404775077176232 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_3992457786788068459 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_6094642117692181604 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_10050917693966334644 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_1935405706974713392 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_13084413915286692692 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_3090048803760886816 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_12956305549535170754 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_15698036669465893104 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_17081578680638530567 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_11572643559937048608 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_17746702451070469557 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_12859876623673724012 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_975766933995789682 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_13682601922062063600 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_12093482943770019792 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_6803395073999630389 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_9351205864258623090 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_10891701923577600563 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_8667123524100730579 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_4315578950557517571 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_9943017750514654586 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_18394044605740553459 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_17494056407196958593 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_16625485901106609291 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_4346746544384528934 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_13509591129774463572 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_7525716859663229549 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_15693821770808763105 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_1895158717971021895 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_4350693917266812729 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_7895630653543535849 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_9308663682282511678 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14247345285163791245 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_14182518704684480550 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_16691097313325173887 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_11009075783318791931 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_1775908766987390615 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_17023799798552634598 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_3938455332234303328 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_13117438215746807518 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_8763361087091517735 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_6433771582400148446 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_5771287348445844664 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_11177891703475119484 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_14724393979719018176 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_6836060689062924288 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_7324397394816925151 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_10183339724965325003 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_13380367422141259585 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_4191744978452230685 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_7387788968290221318 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_11173907125753798792 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_17581117765609715066 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_17307279968194824030 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_2885979200781380064 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_3364587125957278973 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_13180485396171458556 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_18068960170336280380 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_3019206852830454591 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_13956683992991719323 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_4556893997539069918 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_16456689857108380667 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_17690096361606181080 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_7026202044541870086 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_9612525096986298032 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_9549356677916654374 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_10942733588384750950 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_18417899028867972690 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_14944615253961678762 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_10610150191600753444 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_13193969705715712338 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_13120872504854860611 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_2739779197555204721 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_11207340271907539955 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_9986741343178374635 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_16644920285056094818 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_16153555559289342790 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_5409833707578788436 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_659060642208281890 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_10013691686952847381 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_813866442746574855 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_13559586756094253805 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_8673113644710371611 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_5032045807632341262 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_3356578188028192342 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_3481481441724299605 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_9763553221868721881 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_2568610329323071151 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_15007598219409691804 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_3093138145889348316 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_15981812339462756728 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_3787907543540564085 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_17597106041836584866 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_7675910756267041402 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_8147509592939585632 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_6489295629273093713 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_9244951493734627510 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_15783790670217688421 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_14284647909044447597 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_13703946807673468313 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_15401829248131924909 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_10281552861874136102 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_65250215129622084 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_13719101342399240762 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_1437736210753293870 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_5485309318192100995 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_5728808330002741134 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_5330558435086500097 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_14242218109590112929 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_15950203064926386065 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_8254130672242308164 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_5583875197237089363 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_10964288259698363529 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_9310259779331115307 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_850547798829019319 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_15675461234136665462 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_5341819550879937750 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_3856016672335490674 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_7657636139266103207 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_7116916229551700544 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_11109476769359169569 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.3.-211983185 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 = 1024, 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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
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 avx2 Vector Rx (port 0).
ice_set_tx_function(): Using avx2 Vector Tx (port 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:A6:B7:0B:6F:38
Checking link statuses...
Done
06/11/2020 17:30:38              dut.10.240.183.62: quit
06/11/2020 17:30:39              dut.10.240.183.62: 


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_14394995211124052823 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_6112704412154445456 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_4174234293019268723 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_1176742970450687723 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_3373868369535940748 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_15163544211799432385 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_12871657184182500445 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_10012548654621088056 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_5452680489081018098 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_10920404775077176232 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_3992457786788068459 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_6094642117692181604 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_10050917693966334644 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_1935405706974713392 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_13084413915286692692 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_3090048803760886816 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_12956305549535170754 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_15698036669465893104 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_17081578680638530567 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_11572643559937048608 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_17746702451070469557 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_12859876623673724012 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_975766933995789682 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_13682601922062063600 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_12093482943770019792 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_6803395073999630389 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_9351205864258623090 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_10891701923577600563 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_8667123524100730579 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_4315578950557517571 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_9943017750514654586 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_18394044605740553459 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_14549763669874369542 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_16625485901106609291 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_4346746544384528934 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_13509591129774463572 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_7525716859663229549 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_15693821770808763105 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_1895158717971021895 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_4350693917266812729 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_7895630653543535849 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_9308663682282511678 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14247345285163791245 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_14182518704684480550 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_16691097313325173887 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_11009075783318791931 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_1775908766987390615 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_17023799798552634598 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_3938455332234303328 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_13117438215746807518 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_8763361087091517735 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_6433771582400148446 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_5771287348445844664 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_11177891703475119484 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_14724393979719018176 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_6836060689062924288 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_7324397394816925151 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_10183339724965325003 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_13380367422141259585 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_4191744978452230685 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_7387788968290221318 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_11173907125753798792 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_17581117765609715066 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_17307279968194824030 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_2885979200781380064 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_17494056407196958593 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_13180485396171458556 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_18068960170336280380 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_3019206852830454591 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_13956683992991719323 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_4556893997539069918 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_16456689857108380667 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_17690096361606181080 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_7026202044541870086 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_9612525096986298032 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_9549356677916654374 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_10942733588384750950 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_18417899028867972690 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_14944615253961678762 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_10610150191600753444 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_13193969705715712338 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_13120872504854860611 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_2739779197555204721 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_11207340271907539955 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_9986741343178374635 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_16644920285056094818 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_16153555559289342790 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_5409833707578788436 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_659060642208281890 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_10013691686952847381 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_813866442746574855 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_13559586756094253805 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_8673113644710371611 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_5032045807632341262 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_3356578188028192342 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_3481481441724299605 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_9763553221868721881 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_2568610329323071151 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_3364587125957278973 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_3093138145889348316 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_15981812339462756728 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_3787907543540564085 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_17597106041836584866 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_7675910756267041402 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_8147509592939585632 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_6489295629273093713 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_9244951493734627510 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_15783790670217688421 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_14284647909044447597 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_13703946807673468313 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_15401829248131924909 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_10281552861874136102 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_65250215129622084 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13719101342399240762 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_1437736210753293870 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_5485309318192100995 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_5728808330002741134 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_5330558435086500097 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_14242218109590112929 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_15950203064926386065 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_8254130672242308164 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_5583875197237089363 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_10964288259698363529 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_9310259779331115307 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_850547798829019319 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_15675461234136665462 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_5341819550879937750 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_3856016672335490674 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_7657636139266103207 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_7116916229551700544 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_11109476769359169569 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_15007598219409691804 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
06/11/2020 17:30:39                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Result PASSED:
06/11/2020 17:30:41              dut.10.240.183.62: kill_all: called by dut and has no prefix list.
06/11/2020 17:30:42                            dts: 
TEST SUITE ENDED: TestFlexibleRxd

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

06/11/2020 17:31:35                            dts: 
TEST SUITE : TestIavfFlexibleDescriptor
06/11/2020 17:31:35                            dts: NIC :        columbiaville_100g
06/11/2020 17:31:35              dut.10.240.183.62: 
06/11/2020 17:31:35                         tester: 
06/11/2020 17:31:35              dut.10.240.183.62: rm -rf x86_64-native-linuxapp-gcc
06/11/2020 17:31:36              dut.10.240.183.62: 
06/11/2020 17:31:36              dut.10.240.183.62: CC=gcc meson --werror -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
06/11/2020 17:31:43              dut.10.240.183.62: The Meson build system
Version: 0.55.3
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc3
Using 'CC' from environment with value: 'gcc'
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
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
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)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
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:228: 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-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 -Waddress-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-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__" : 1 
Fetching value of define "__AVX512BW__" : 1 
Fetching value of define "__AVX512CD__" : 1 
Fetching value of define "__AVX512DQ__" : 1 
Fetching value of define "__AVX512F__" : 1 
Fetching value of define "__AVX512VL__" : 1 
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation -Wformat-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__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (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__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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 and cmake)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -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 -Wsign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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 and cmake)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
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 and cmake)
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 -Wpointer-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 -Wuninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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__" : 1 (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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES 
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (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"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "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 and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
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/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "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
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 and cmake)
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
Library libmusdk found: NO
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 and cmake)
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 and cmake)
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 -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
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 -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/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 -Wformat-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 -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	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, "armv8_crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	Missing internal dependency, "common_mlx5"
	vdpa/mlx5:	Missing internal dependency, "common_mlx5"
	

Build targets in project: 997

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

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:32:47              dut.10.240.183.62: set verbose 1
06/11/2020 17:32:47              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:32:47              dut.10.240.183.62: set fwd io
06/11/2020 17:32:47              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:32:47              dut.10.240.183.62: set promisc all off
06/11/2020 17:32:47              dut.10.240.183.62: 
06/11/2020 17:32:47              dut.10.240.183.62: clear port stats all
06/11/2020 17:32:47              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:32:47              dut.10.240.183.62: start
06/11/2020 17:32:47              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:32:47              dut.10.240.183.62: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 23 ttl is 98 / end actions queue index 2 / end
06/11/2020 17:32:47              dut.10.240.183.62: 
06/11/2020 17:32:47              dut.10.240.183.62: flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end
06/11/2020 17:32:47              dut.10.240.183.62: 
06/11/2020 17:32:51              dut.10.240.183.62: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:EB:ED:A0 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - Flexible descriptor's Metadata: [0x6211:0x4517],ipv4,ver=4,hdrlen=5,tos=23,ttl=98,proto=17 - RSS hash=0xfc930c28 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x2
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:32:54              dut.10.240.183.62: port 0/queue 3: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x86dd - length=72 - nb_segs=1 - Flexible descriptor's Metadata: [0x1122:0x60c9],ipv6,ver=6,tc=12,flow_hi4=0x9,nexthdr=17,hoplimit=34 - RSS hash=0xd9d5cbe2 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:32:54              dut.10.240.183.62: flow flush 0
06/11/2020 17:32:55              dut.10.240.183.62: 
06/11/2020 17:32:55              dut.10.240.183.62: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / tcp src is 25 dst is 23 / end actions queue index 4 / end
06/11/2020 17:32:55              dut.10.240.183.62: 
06/11/2020 17:32:58              dut.10.240.183.62: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:EB:ED:A0 - dst=00:11:22:33:44:55 - type=0x0800 - length=64 - nb_segs=1 - Flexible descriptor's Metadata: [0x5012:0x0000],tcp,doff=5,flags=AS - RSS hash=0xcf5adc45 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:32:58     TestIavfFlexibleDescriptor: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Result PASSED:
06/11/2020 17:32:58              dut.10.240.183.62: quit
06/11/2020 17:32:59              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:33:01              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:33:02     TestIavfFlexibleDescriptor: Test Case test_check_IPv4_fields_in_RXD Begin
06/11/2020 17:33:02              dut.10.240.183.62: 
06/11/2020 17:33:02                         tester: 
06/11/2020 17:33:02              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ipv4  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:33:03              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[18] in Queue[0]
iavf_configure_queues(): request RXDID[18] in Queue[1]
iavf_configure_queues(): request RXDID[18] in Queue[2]
iavf_configure_queues(): request RXDID[18] in Queue[3]
iavf_configure_queues(): request RXDID[18] in Queue[4]
iavf_configure_queues(): request RXDID[18] in Queue[5]
iavf_configure_queues(): request RXDID[18] in Queue[6]
iavf_configure_queues(): request RXDID[18] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:33:13              dut.10.240.183.62: set verbose 1
06/11/2020 17:33:14              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:33:14              dut.10.240.183.62: set fwd io
06/11/2020 17:33:14              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:33:14              dut.10.240.183.62: set promisc all off
06/11/2020 17:33:14              dut.10.240.183.62: 
06/11/2020 17:33:14              dut.10.240.183.62: clear port stats all
06/11/2020 17:33:14              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:33:14              dut.10.240.183.62: start
06/11/2020 17:33:14              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:33:17              dut.10.240.183.62: port 0/queue 2: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - Flexible descriptor's Metadata: [0x6211:0x4517],ipv4,ver=4,hdrlen=5,tos=23,ttl=98,proto=17 - RSS hash=0x515a7aea - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x2
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:33:17     TestIavfFlexibleDescriptor: Test Case test_check_IPv4_fields_in_RXD Result PASSED:
06/11/2020 17:33:17              dut.10.240.183.62: quit
06/11/2020 17:33:18              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:33:20              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:33:21     TestIavfFlexibleDescriptor: Test Case test_check_IPv6_fields_in_RXD Begin
06/11/2020 17:33:21              dut.10.240.183.62: 
06/11/2020 17:33:21                         tester: 
06/11/2020 17:33:21              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ipv6  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:33:23              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[19] in Queue[0]
iavf_configure_queues(): request RXDID[19] in Queue[1]
iavf_configure_queues(): request RXDID[19] in Queue[2]
iavf_configure_queues(): request RXDID[19] in Queue[3]
iavf_configure_queues(): request RXDID[19] in Queue[4]
iavf_configure_queues(): request RXDID[19] in Queue[5]
iavf_configure_queues(): request RXDID[19] in Queue[6]
iavf_configure_queues(): request RXDID[19] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:33:33              dut.10.240.183.62: set verbose 1
06/11/2020 17:33:33              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:33:33              dut.10.240.183.62: set fwd io
06/11/2020 17:33:33              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:33:33              dut.10.240.183.62: set promisc all off
06/11/2020 17:33:33              dut.10.240.183.62: 
06/11/2020 17:33:33              dut.10.240.183.62: clear port stats all
06/11/2020 17:33:33              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:33:33              dut.10.240.183.62: start
06/11/2020 17:33:33              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:33:37              dut.10.240.183.62: port 0/queue 5: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x86dd - length=72 - nb_segs=1 - Flexible descriptor's Metadata: [0x1122:0x60c9],ipv6,ver=6,tc=12,flow_hi4=0x9,nexthdr=17,hoplimit=34 - RSS hash=0x437cb325 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x5
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:33:37     TestIavfFlexibleDescriptor: Test Case test_check_IPv6_fields_in_RXD Result PASSED:
06/11/2020 17:33:37              dut.10.240.183.62: quit
06/11/2020 17:33:37              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:33:39              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:33:40     TestIavfFlexibleDescriptor: Test Case test_check_IPv6_flow_field_in_RXD Begin
06/11/2020 17:33:40              dut.10.240.183.62: 
06/11/2020 17:33:40                         tester: 
06/11/2020 17:33:40              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ipv6_flow  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:33:42              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[20] in Queue[0]
iavf_configure_queues(): request RXDID[20] in Queue[1]
iavf_configure_queues(): request RXDID[20] in Queue[2]
iavf_configure_queues(): request RXDID[20] in Queue[3]
iavf_configure_queues(): request RXDID[20] in Queue[4]
iavf_configure_queues(): request RXDID[20] in Queue[5]
iavf_configure_queues(): request RXDID[20] in Queue[6]
iavf_configure_queues(): request RXDID[20] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:33:52              dut.10.240.183.62: set verbose 1
06/11/2020 17:33:52              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:33:52              dut.10.240.183.62: set fwd io
06/11/2020 17:33:52              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:33:52              dut.10.240.183.62: set promisc all off
06/11/2020 17:33:52              dut.10.240.183.62: 
06/11/2020 17:33:52              dut.10.240.183.62: clear port stats all
06/11/2020 17:33:52              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:33:52              dut.10.240.183.62: start
06/11/2020 17:33:52              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:33:56              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x86dd - length=72 - nb_segs=1 - Flexible descriptor's Metadata: [0x8765:0x60c9],ipv6_flow,ver=6,tc=12,flow=0x98765 - RSS hash=0xd4988d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:33:56     TestIavfFlexibleDescriptor: Test Case test_check_IPv6_flow_field_in_RXD Result PASSED:
06/11/2020 17:33:56              dut.10.240.183.62: quit
06/11/2020 17:33:57              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:33:59              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:33:59     TestIavfFlexibleDescriptor: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
06/11/2020 17:33:59              dut.10.240.183.62: 
06/11/2020 17:33:59                         tester: 
06/11/2020 17:33:59              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=tcp  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:34:01              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[21] in Queue[0]
iavf_configure_queues(): request RXDID[21] in Queue[1]
iavf_configure_queues(): request RXDID[21] in Queue[2]
iavf_configure_queues(): request RXDID[21] in Queue[3]
iavf_configure_queues(): request RXDID[21] in Queue[4]
iavf_configure_queues(): request RXDID[21] in Queue[5]
iavf_configure_queues(): request RXDID[21] in Queue[6]
iavf_configure_queues(): request RXDID[21] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:34:11              dut.10.240.183.62: set verbose 1
06/11/2020 17:34:11              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:34:11              dut.10.240.183.62: set fwd io
06/11/2020 17:34:11              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:34:11              dut.10.240.183.62: set promisc all off
06/11/2020 17:34:11              dut.10.240.183.62: 
06/11/2020 17:34:11              dut.10.240.183.62: clear port stats all
06/11/2020 17:34:11              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:34:11              dut.10.240.183.62: start
06/11/2020 17:34:11              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:34:15              dut.10.240.183.62: port 0/queue 3: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x0800 - length=64 - nb_segs=1 - Flexible descriptor's Metadata: [0x5012:0x0000],tcp,doff=5,flags=AS - RSS hash=0xe1510503 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:34:15     TestIavfFlexibleDescriptor: Test Case test_check_TCP_fields_in_IPv4_in_RXD Result PASSED:
06/11/2020 17:34:15              dut.10.240.183.62: quit
06/11/2020 17:34:16              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:34:18              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:34:18     TestIavfFlexibleDescriptor: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
06/11/2020 17:34:18              dut.10.240.183.62: 
06/11/2020 17:34:19                         tester: 
06/11/2020 17:34:19              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=tcp  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:34:20              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[21] in Queue[0]
iavf_configure_queues(): request RXDID[21] in Queue[1]
iavf_configure_queues(): request RXDID[21] in Queue[2]
iavf_configure_queues(): request RXDID[21] in Queue[3]
iavf_configure_queues(): request RXDID[21] in Queue[4]
iavf_configure_queues(): request RXDID[21] in Queue[5]
iavf_configure_queues(): request RXDID[21] in Queue[6]
iavf_configure_queues(): request RXDID[21] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:34:30              dut.10.240.183.62: set verbose 1
06/11/2020 17:34:30              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:34:30              dut.10.240.183.62: set fwd io
06/11/2020 17:34:30              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:34:30              dut.10.240.183.62: set promisc all off
06/11/2020 17:34:30              dut.10.240.183.62: 
06/11/2020 17:34:30              dut.10.240.183.62: clear port stats all
06/11/2020 17:34:30              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:34:30              dut.10.240.183.62: start
06/11/2020 17:34:30              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:34:34              dut.10.240.183.62: port 0/queue 1: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x86dd - length=84 - nb_segs=1 - Flexible descriptor's Metadata: [0x5002:0x0000],tcp,doff=5,flags=S - RSS hash=0x9f4c631 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_TCP  - l2_len=14 - l3_len=40 - l4_len=20 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:34:34     TestIavfFlexibleDescriptor: Test Case test_check_TCP_fields_in_IPv6_in_RXD Result PASSED:
06/11/2020 17:34:34              dut.10.240.183.62: quit
06/11/2020 17:34:35              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:34:37              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:34:37     TestIavfFlexibleDescriptor: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
06/11/2020 17:34:38              dut.10.240.183.62: 
06/11/2020 17:34:38                         tester: 
06/11/2020 17:34:38              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:34:39              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[17] in Queue[0]
iavf_configure_queues(): request RXDID[17] in Queue[1]
iavf_configure_queues(): request RXDID[17] in Queue[2]
iavf_configure_queues(): request RXDID[17] in Queue[3]
iavf_configure_queues(): request RXDID[17] in Queue[4]
iavf_configure_queues(): request RXDID[17] in Queue[5]
iavf_configure_queues(): request RXDID[17] in Queue[6]
iavf_configure_queues(): request RXDID[17] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:34:49              dut.10.240.183.62: set verbose 1
06/11/2020 17:34:49              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:34:49              dut.10.240.183.62: set fwd io
06/11/2020 17:34:49              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:34:49              dut.10.240.183.62: set promisc all off
06/11/2020 17:34:49              dut.10.240.183.62: 
06/11/2020 17:34:49              dut.10.240.183.62: clear port stats all
06/11/2020 17:34:49              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:34:49              dut.10.240.183.62: start
06/11/2020 17:34:50              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:34:53              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x9100 - length=60 - nb_segs=1 - Flexible descriptor's Metadata: [0x2017:0x0000],vlan,stag=1:0:23,ctag=0:0:0 - hw ptype: L2_ETHER  - 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 

06/11/2020 17:34:53     TestIavfFlexibleDescriptor: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Result PASSED:
06/11/2020 17:34:53              dut.10.240.183.62: quit
06/11/2020 17:34:54              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:34:56              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:34:57     TestIavfFlexibleDescriptor: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Result SKIPPED:
06/11/2020 17:34:57     TestIavfFlexibleDescriptor: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Result SKIPPED:
06/11/2020 17:34:57     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_of_ip Begin
06/11/2020 17:34:57              dut.10.240.183.62: 
06/11/2020 17:34:57                         tester: 
06/11/2020 17:34:57              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:34:58              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:35:08              dut.10.240.183.62: set verbose 1
06/11/2020 17:35:08              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:35:08              dut.10.240.183.62: start
06/11/2020 17:35:08              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:35:12              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=18 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:35:16              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=18 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:35:16     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_of_ip Result PASSED:
06/11/2020 17:35:16              dut.10.240.183.62: quit
06/11/2020 17:35:16              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:35:18              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:35:19     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_2_vlan_tag Begin
06/11/2020 17:35:19              dut.10.240.183.62: 
06/11/2020 17:35:19                         tester: 
06/11/2020 17:35:19              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:35:21              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:35:31              dut.10.240.183.62: set verbose 1
06/11/2020 17:35:31              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:35:31              dut.10.240.183.62: start
06/11/2020 17:35:31              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:35:34              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:35:38              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=66 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:35:38     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_2_vlan_tag Result PASSED:
06/11/2020 17:35:38              dut.10.240.183.62: quit
06/11/2020 17:35:39              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:35:41              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:35:41     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS Begin
06/11/2020 17:35:41              dut.10.240.183.62: 
06/11/2020 17:35:42                         tester: 
06/11/2020 17:35:42              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:35:43              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:35:53              dut.10.240.183.62: set verbose 1
06/11/2020 17:35:53              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:35:53              dut.10.240.183.62: start
06/11/2020 17:35:53              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:35:57              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=18 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:00              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:04              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:07              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:11              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:15              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=18 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:18              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=62 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:22              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=66 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:25              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=70 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:29              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8847 - length=74 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x170ecf1 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:29     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS Result PASSED:
06/11/2020 17:36:29              dut.10.240.183.62: quit
06/11/2020 17:36:30              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:36:32              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:36:32     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
06/11/2020 17:36:33              dut.10.240.183.62: 
06/11/2020 17:36:33                         tester: 
06/11/2020 17:36:33              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:36:34              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:36:44              dut.10.240.183.62: set verbose 1
06/11/2020 17:36:44              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:36:44              dut.10.240.183.62: start
06/11/2020 17:36:44              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:36:48              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:51              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:55              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:36:59              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=38 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:02              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=62 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=42 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:06              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=66 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:09              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=70 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:13              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=74 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:17              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=78 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=38 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:20              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=82 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=42 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:20     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Result PASSED:
06/11/2020 17:37:20              dut.10.240.183.62: quit
06/11/2020 17:37:21              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:37:23              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:37:24     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
06/11/2020 17:37:24              dut.10.240.183.62: 
06/11/2020 17:37:24                         tester: 
06/11/2020 17:37:24              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:37:25              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:37:35              dut.10.240.183.62: set verbose 1
06/11/2020 17:37:35              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:37:35              dut.10.240.183.62: start
06/11/2020 17:37:35              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:37:39              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:43              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:46              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:50              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:53              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=38 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:37:57              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=62 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:01              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=66 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=26 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:04              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=70 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=30 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:08              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=34 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:11              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=38 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:11     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Result PASSED:
06/11/2020 17:38:11              dut.10.240.183.62: quit
06/11/2020 17:38:12              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:38:14              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:38:15     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_vlan Begin
06/11/2020 17:38:15              dut.10.240.183.62: 
06/11/2020 17:38:15                         tester: 
06/11/2020 17:38:15              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=ip_offset  --file-prefix=dpdk_13229_20201106172224   -- -i  --portmask=0x1 --nb-cores=2
06/11/2020 17:38:16              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[25] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:38:26              dut.10.240.183.62: set verbose 1
06/11/2020 17:38:26              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:38:26              dut.10.240.183.62: start
06/11/2020 17:38:27              dut.10.240.183.62: 
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 1) -> TX P=0/Q=0 (socket 1) 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=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:38:30              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x29ab8ba6 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:34              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=62 - nb_segs=1 - Flexible descriptor's Extraction: ip_offset=22 - RSS hash=0x170ecf1 - RSS queue=0x0 - 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_RSS_HASH PKT_RX_L4_CKSUM_UNKNOWN PKT_RX_IP_CKSUM_UNKNOWN PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:34     TestIavfFlexibleDescriptor: Test Case test_check_ip_offset_with_vlan Result PASSED:
06/11/2020 17:38:34              dut.10.240.183.62: quit
06/11/2020 17:38:35              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- 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...
Port 0 is closed
Done

Bye...
06/11/2020 17:38:37              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:38:37     TestIavfFlexibleDescriptor: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
06/11/2020 17:38:37              dut.10.240.183.62: 
06/11/2020 17:38:37                         tester: 
06/11/2020 17:38:37              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:38:39              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[17] in Queue[0]
iavf_configure_queues(): request RXDID[17] in Queue[1]
iavf_configure_queues(): request RXDID[17] in Queue[2]
iavf_configure_queues(): request RXDID[17] in Queue[3]
iavf_configure_queues(): request RXDID[17] in Queue[4]
iavf_configure_queues(): request RXDID[17] in Queue[5]
iavf_configure_queues(): request RXDID[17] in Queue[6]
iavf_configure_queues(): request RXDID[17] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:38:49              dut.10.240.183.62: set verbose 1
06/11/2020 17:38:49              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:38:49              dut.10.240.183.62: set fwd io
06/11/2020 17:38:49              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:38:49              dut.10.240.183.62: set promisc all off
06/11/2020 17:38:49              dut.10.240.183.62: 
06/11/2020 17:38:49              dut.10.240.183.62: clear port stats all
06/11/2020 17:38:49              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:38:49              dut.10.240.183.62: start
06/11/2020 17:38:49              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:38:53              dut.10.240.183.62: port 0/queue 6: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - Flexible descriptor's Metadata: [0x0000:0x2017],vlan,stag=0:0:0,ctag=1:0:23 - RSS hash=0xb4eda966 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

06/11/2020 17:38:53     TestIavfFlexibleDescriptor: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Result PASSED:
06/11/2020 17:38:53              dut.10.240.183.62: quit
06/11/2020 17:38:54              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:38:56              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:38:56     TestIavfFlexibleDescriptor: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Begin
06/11/2020 17:38:56              dut.10.240.183.62: 
06/11/2020 17:38:57                         tester: 
06/11/2020 17:38:57              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=vlan  --file-prefix=dpdk_13229_20201106172224   -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:38:58              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13229_20201106172224/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_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[17] in Queue[0]
iavf_configure_queues(): request RXDID[17] in Queue[1]
iavf_configure_queues(): request RXDID[17] in Queue[2]
iavf_configure_queues(): request RXDID[17] in Queue[3]
iavf_configure_queues(): request RXDID[17] in Queue[4]
iavf_configure_queues(): request RXDID[17] in Queue[5]
iavf_configure_queues(): request RXDID[17] in Queue[6]
iavf_configure_queues(): request RXDID[17] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:39:08              dut.10.240.183.62: set verbose 1
06/11/2020 17:39:08              dut.10.240.183.62: 
Change verbose level from 0 to 1
06/11/2020 17:39:08              dut.10.240.183.62: set fwd io
06/11/2020 17:39:08              dut.10.240.183.62: 
Set io packet forwarding mode
06/11/2020 17:39:08              dut.10.240.183.62: set promisc all off
06/11/2020 17:39:08              dut.10.240.183.62: 
06/11/2020 17:39:08              dut.10.240.183.62: clear port stats all
06/11/2020 17:39:08              dut.10.240.183.62: 

  NIC statistics for port 0 cleared
06/11/2020 17:39:08              dut.10.240.183.62: start
06/11/2020 17:39:08              dut.10.240.183.62: 
io packet forwarding - ports=1 - cores=2 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 4 streams:
  RX P=0/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) 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: 8 Tx queue number: 8
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
06/11/2020 17:39:12              dut.10.240.183.62: port 0/queue 0: received 1 packets
  src=68:05:CA:A3:1B:28 - dst=00:11:22:33:44:55 - type=0x88a8 - length=60 - nb_segs=1 - Flexible descriptor's Metadata: [0x2017:0x0000],vlan,stag=1:0:23,ctag=0:0:0 - hw ptype: L2_ETHER  - 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 

06/11/2020 17:39:12     TestIavfFlexibleDescriptor: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Result PASSED:
06/11/2020 17:39:12              dut.10.240.183.62: quit
06/11/2020 17:39:13              dut.10.240.183.62: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:39:15              dut.10.240.183.62: kill_all: called by dut and prefix list has value.
06/11/2020 17:39:15     TestIavfFlexibleDescriptor: Test Case test_check_testpmd_use_different_parameters Begin
06/11/2020 17:39:16              dut.10.240.183.62: 
06/11/2020 17:39:16                         tester: 
06/11/2020 17:39:16              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:af:01.0,proto_xtr=vxlan -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:39:17              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
iavf_lookup_proto_xtr_type(): wrong proto_xtr type, it should be: vlan|ipv4|ipv6|ipv6_flow|tcp|ip_offset
iavf_handle_proto_xtr_arg(): the proto_xtr's parameter is wrong : 'vxlan'
iavf_init_vf(): Failed to parse devargs
iavf_dev_init(): Init vf failed
EAL: Releasing pci mapped resource for 0000:af:01.0
EAL: Calling pci_unmap_resource for 0000:af:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:af:01.0 at 0x2200020000
EAL: Requested device 0000:af:01.0 cannot be used
EAL: Bus (pci) probe failed.
testpmd: No probed ethernet devices
Interactive-mode selected
Fail: input rxq (8) can't be greater than max_rx_queues (0) of port 0
EAL: Error - exiting with code: 1
  Cause: rxq 8 invalid - must be >= 0 && <= 0
06/11/2020 17:39:17              dut.10.240.183.62: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3 -n 4 -w 0000:af:01.0 --log-level='ice,8' -- -i --rxq=8 --txq=8  --portmask=0x1 --nb-cores=2
06/11/2020 17:39:19              dut.10.240.183.62: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:af:01.0 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=163456, size=2176, socket=1
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 1)
iavf_configure_queues(): request RXDID[22] in Queue[0]
iavf_configure_queues(): request RXDID[22] in Queue[1]
iavf_configure_queues(): request RXDID[22] in Queue[2]
iavf_configure_queues(): request RXDID[22] in Queue[3]
iavf_configure_queues(): request RXDID[22] in Queue[4]
iavf_configure_queues(): request RXDID[22] in Queue[5]
iavf_configure_queues(): request RXDID[22] in Queue[6]
iavf_configure_queues(): request RXDID[22] in Queue[7]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
06/11/2020 17:39:19              dut.10.240.183.62: quit
06/11/2020 17:39:19              dut.10.240.183.62: 

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

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
06/11/2020 17:39:19     TestIavfFlexibleDescriptor: Test Case test_check_testpmd_use_different_parameters Result PASSED:
06/11/2020 17:39:21              dut.10.240.183.62: kill_all: called by dut and has no prefix list.
06/11/2020 17:39:23                            dts: 
TEST SUITE ENDED: TestIavfFlexibleDescriptor

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

* Re: [dts] [PATCH V6 1/3] flexible_rxd: unify common test content
  2020-11-10  6:18 ` [dts] [PATCH V6 1/3] flexible_rxd: unify common test content yufengmx
@ 2020-11-18  6:43   ` Chen, Zhaoyan
  0 siblings, 0 replies; 8+ messages in thread
From: Chen, Zhaoyan @ 2020-11-18  6:43 UTC (permalink / raw)
  To: Mo, YufengX, dts, Xu,  HailinX

Acked-by: zhaoyan.chen@intel.com


On 2020/11/10, 2:24 PM, "dts on behalf of yufengmx" <dts-bounces@dpdk.org on behalf of yufengx.mo@intel.com> wrote:


    unify common test content.

    Signed-off-by: yufengmx <yufengx.mo@intel.com>
    ---
     tests/flexible_common.py | 483 +++++++++++++++++++++++++++++++++++++++
     1 file changed, 483 insertions(+)
     create mode 100644 tests/flexible_common.py

    diff --git a/tests/flexible_common.py b/tests/flexible_common.py
    new file mode 100644
    index 0000000..fa3c64d
    --- /dev/null
    +++ b/tests/flexible_common.py
    @@ -0,0 +1,483 @@
    +# BSD LICENSE
    +#
    +# Copyright(c) 2020 Intel Corporation. All rights reserved.
    +# All rights reserved.
    +#
    +# Redistribution and use in source and binary forms, with or without
    +# modification, are permitted provided that the following conditions
    +# are met:
    +#
    +#   * Redistributions of source code must retain the above copyright
    +#     notice, this list of conditions and the following disclaimer.
    +#   * Redistributions in binary form must reproduce the above copyright
    +#     notice, this list of conditions and the following disclaimer in
    +#     the documentation and/or other materials provided with the
    +#     distribution.
    +#   * Neither the name of Intel Corporation nor the names of its
    +#     contributors may be used to endorse or promote products derived
    +#     from this software without specific prior written permission.
    +#
    +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +
    +import time
    +from packet import Packet
    +from pmd_output import PmdOutput
    +
    +
    +class FlexibleRxdBase(object):
    +
    +    def init_base(self, pci, dst_mac, test_type, dut_index=0):
    +        tester_port_id = self.tester.get_local_port(self.dut_ports[dut_index])
    +        self.__tester_intf = self.tester.get_interface(tester_port_id)
    +        self.__src_mac = self.tester.get_mac(tester_port_id)
    +        self.__dst_mac = dst_mac
    +
    +        self.__app_path = self.dut.apps_name["test-pmd"]
    +        self.__pmdout = PmdOutput(self.dut)
    +        self.__test_type = test_type
    +        self.__pci = pci
    +        self.__pkg_count = 1
    +        self.__is_pmd_on = False
    +
    +    @property
    +    def __is_iavf(self):
    +        return self.__test_type == 'iavf'
    +
    +    @property
    +    def __is_pf(self):
    +        return self.__test_type == 'pf'
    +
    +    def __get_port_option(self, flex_opt='', queue_num=None):
    +        nb_core = 2
    +        num = 4 if self.nic == 'foxville' or self.__is_iavf else 32
    +        queue_num = queue_num if queue_num else num
    +        # port option
    +        port_option = (
    +            '{queue} '
    +            '--portmask=0x1 '
    +            '--nb-cores={nb_core}').format(**{
    +                'queue': '--rxq={0} --txq={0} '.format(queue_num)
    +                if flex_opt != 'ip_offset' else '',
    +                'nb_core': nb_core,
    +            })
    +        return port_option
    +
    +    def __check_rxdid(self, rxdid, out):
    +        rxdid = rxdid if isinstance(rxdid, list) else [rxdid]
    +        pat = "RXDID\[(\d+)\]"
    +        for rx in rxdid:
    +            if self.__is_pf:
    +                value = re.findall(pat, rx)
    +                if not value:
    +                    continue
    +                check_str = "RXDID : {}".format(value[0])
    +                self.verify(
    +                    check_str in out,
    +                    "rxdid value error, expected rxdid is %s" % check_str)
    +            else:
    +                self.verify(
    +                    rx in out,
    +                    "rxdid value error, expected rxdid is %s" % rx)
    +
    +    def start_testpmd(self, flex_opt, rxdid, queue_num=None):
    +        """
    +        start testpmd
    +        """
    +        param_type = 'proto_xtr'
    +        # port option
    +        port_option = self.__get_port_option(flex_opt, queue_num=queue_num)
    +        # start test pmd
    +        out = self.__pmdout.start_testpmd(
    +            "1S/3C/1T",
    +            param=port_option,
    +            eal_param='' if self.__is_iavf else '--log-level="ice,8"',
    +            ports=[self.__pci],
    +            port_options={self.__pci: '%s=%s' % (param_type, flex_opt)})
    +        self.__is_pmd_on = True
    +        # check rxdid value correct
    +        self.__check_rxdid(rxdid, out)
    +        # set test pmd command
    +        if flex_opt == 'ip_offset':
    +            cmds = [
    +                'set verbose 1',
    +                'start',
    +            ]
    +        else:
    +            cmds = [
    +                "set verbose 1",
    +                "set fwd io",
    +                "set promisc all off",
    +                "clear port stats all",
    +                "start", ]
    +        [self.dut.send_expect(cmd, "testpmd> ", 15) for cmd in cmds]
    +
    +    def close_testpmd(self):
    +        if not self.__is_pmd_on:
    +            return
    +        try:
    +            self.__pmdout.quit()
    +            self.__is_pmd_on = False
    +        except Exception as e:
    +            pass
    +
    +    def __send_pkts_and_get_output(self, pkt_str):
    +        pkt = Packet(pkt_str)
    +        pkt.send_pkt(
    +            self.tester,
    +            tx_port=self.__tester_intf,
    +            count=self.__pkg_count,
    +            timeout=30)
    +        time.sleep(0.5)
    +        output = self.dut.get_session_output(timeout=3)
    +        return output
    +
    +    def __verify_common(self, pkts_list, msg=None):
    +        """
    +        send MPLS type packet, verify packet ip_offset value correct
    +        param pkts_list:
    +            [send packets list, ip_offset expected value]
    +        """
    +        msg = msg if msg else "ip_offset value error, case test failed"
    +        for pkt_str, expected_strs in pkts_list:
    +            out = self.__send_pkts_and_get_output(
    +                pkt_str.format(**{
    +                    'src_mac': self.__src_mac,
    +                    'dst_mac': self.__dst_mac}))
    +            # validation results
    +            _expected_strs = [expected_strs] \
    +                if isinstance(expected_strs, str) else \
    +                expected_strs
    +            self.verify(all([e in out for e in _expected_strs]), msg)
    +
    +    def check_single_VLAN_fields_in_RXD_8021Q(self):
    +        """
    +        Check single VLAN fields in RXD (802.1Q)
    +        """
    +        self.start_testpmd("vlan", "RXDID[17]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x8100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
    +        msg = "The packet does not carry a VLAN tag."
    +        fields_list = ["vlan"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_single_VLAN_fields_in_RXD_8021ad(self):
    +        """
    +        Check single VLAN fields in RXD (802.1ad)
    +        """
    +        self.start_testpmd("vlan", "RXDID[17]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x88A8)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
    +        msg = "stag result is not expected (stag=1:0:23)"
    +        fields_list = ["stag=1:0:23"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag(self):
    +        """
    +        Check double VLAN fields in RXD (802.1Q) only 1 VLAN tag
    +        """
    +        self.start_testpmd("vlan", "RXDID[17]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x9100)/Dot1Q(prio=1,vlan=23)/IP()/UDP()/DNS()'
    +        msg = "stag result is not expected (stag=1:0:23)"
    +        fields_list = ["stag=1:0:23"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag(self):
    +        """
    +        Check double VLAN fields in RXD (802.1Q) 2 VLAN tags
    +        """
    +        self.start_testpmd("vlan", "RXDID[17]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x9100)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()'
    +        msg = "There are no related fields in the received VLAN packet"
    +        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_double_VLAN_fields_in_RXD_8021ad(self):
    +        """
    +        Check double VLAN fields in RXD (802.1ad)
    +        """
    +        self.start_testpmd("vlan", "RXDID[17]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}", type=0x88A8)/Dot1Q(prio=1,vlan=23)/Dot1Q(prio=4,vlan=56)/IP()/UDP()/DNS()'
    +        msg = "There are no related fields in the received VLAN packet"
    +        fields_list = ["stag=1:0:23", "ctag=4:0:56"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_IPv4_fields_in_RXD(self):
    +        """
    +        Check IPv4 fields in RXD
    +        """
    +        self.start_testpmd("ipv4", "RXDID[18]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IP(tos=23, ttl=98)/UDP()/Raw(load="XXXXXXXXXX")'
    +        msg = "There are no related fields in the received IPV4 packet"
    +        fields_list = ["ver=4", "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_IPv6_fields_in_RXD(self):
    +        """
    +        Check IPv6 fields in RXD
    +        """
    +        self.start_testpmd("ipv6", "RXDID[19]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
    +        msg = "There are no related fields in the received IPV6 packet"
    +        fields_list = [
    +            "ver=6", "tc=12", "flow_hi4=0x9", "nexthdr=17", "hoplimit=34"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_IPv6_flow_field_in_RXD(self):
    +        """
    +        Check IPv6 flow field in RXD
    +        """
    +        self.start_testpmd("ipv6_flow", "RXDID[20]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(tc=12,hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
    +        msg = "There are no related fields in the received IPV6_flow packet"
    +        fields_list = ["ver=6", "tc=12", "flow=0x98765"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_TCP_fields_in_IPv4_in_RXD(self):
    +        """
    +        Check TCP fields in IPv4 in RXD
    +        """
    +        self.start_testpmd("tcp", "RXDID[21]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IP()/TCP(flags="AS")/Raw(load="XXXXXXXXXX")'
    +        msg = "There are no related fields in the received TCP packet"
    +        fields_list = ["doff=5", "flags=AS"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_TCP_fields_in_IPv6_in_RXD(self):
    +        """
    +        Check TCP fields in IPv6 in RXD
    +        """
    +        self.start_testpmd("tcp", "RXDID[21]")
    +        pkts_str = 'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6()/TCP(flags="S")/Raw(load="XXXXXXXXXX")'
    +        msg = "There are no related fields in the received TCP packet"
    +        fields_list = ["doff=5", "flags=S"]
    +        self.__verify_common([[pkts_str, fields_list]], msg)
    +
    +    def check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues(self):
    +        """
    +        Check IPv4, IPv6, TCP fields in RXD on specific queues
    +        """
    +        self.start_testpmd(
    +            "'[(2):ipv4,(3):ipv6,(4):tcp]'",
    +            ["RXDID[18]", "RXDID[19]", "RXDID[22]"] if self.__is_iavf else
    +            ["RXDID[18]", "RXDID[19]", "RXDID[21]", "RXDID[22]"],
    +            16)
    +        self.dut.send_expect(
    +            "flow create 0 ingress pattern eth {}/ ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 23 ttl is 98 / end actions queue index 2 / end".format(
    +                '' if self.__is_iavf else "dst is {} ".format(self.__dst_mac)),
    +            "created")
    +        self.dut.send_expect(
    +            "flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end",
    +            "created")
    +        # send IPv4
    +        pkts_str = \
    +            'Ether(dst="{dst_mac}")/IP(src="192.168.0.1",dst="192.168.0.2",tos=23,ttl=98)/UDP()/Raw(load="XXXXXXXXXX")'
    +        msg1 = "There are no relevant fields in the received IPv4 packet."
    +        fields_list1 = ["Receive queue=0x2", "ver=4",
    +                        "hdrlen=5", "tos=23", "ttl=98", "proto=17"]
    +        self.__verify_common([[pkts_str, fields_list1]], msg1)
    +
    +        # send IPv6
    +        pkts_str = \
    +            'Ether(src="{src_mac}", dst="{dst_mac}")/IPv6(src="2001::3", dst="2001::4", tc=12, hlim=34,fl=0x98765)/UDP()/Raw(load="XXXXXXXXXX")'
    +        msg2 = "There are no relevant fields in the received IPv6 packet."
    +        fields_list2 = [
    +            "Receive queue=0x3",
    +            "ver=6",
    +            "tc=12",
    +            "flow_hi4=0x9",
    +            "nexthdr=17",
    +            "hoplimit=34"]
    +        self.__verify_common([[pkts_str, fields_list2]], msg2)
    +
    +        # send TCP
    +        self.dut.send_expect("flow flush 0", "testpmd>")
    +        self.dut.send_expect(
    +            "flow create 0 ingress pattern eth {0}/ ipv4 src is 192.168.0.1 dst is 192.168.0.2 / tcp src is 25 dst is 23 / end actions queue index {1} / end".format(
    +                '' if self.__is_iavf else "dst is {} ".format(self.__dst_mac),
    +                4, ),
    +            "created")
    +        pkts_str = \
    +            'Ether(dst="{dst_mac}")/IP(src="192.168.0.1", dst="192.168.0.2")/TCP(flags="AS", dport=23, sport=25)/Raw(load="XXXXXXXXXX")'
    +        msg3 = "There are no relevant fields in the received TCP packet."
    +        fields_list3 = [
    +            "Receive queue=0x4",
    +            "doff=5",
    +            "flags=AS"]
    +        self.__verify_common([[pkts_str, fields_list3]], msg3)
    +
    +    def check_testpmd_use_different_parameters(self):
    +        """
    +        Check testpmd use different parameters start
    +        """
    +        param_type = 'proto_xtr'
    +        # port option
    +        port_opt = self.__get_port_option()
    +        # use error parameter Launch testpmd, testpmd can not be started
    +        cmd = (
    +            "-l 1,2,3 "
    +            "-n {mem_channel} "
    +            "-w {pci},{param_type}=vxlan "
    +            "-- -i "
    +            "{port_opt}").format(**{
    +                'mem_channel': self.dut.get_memory_channels(),
    +                "pci": self.__pci,
    +                "param_type": param_type,
    +                "port_opt": port_opt,
    +            })
    +        try:
    +            out = self.__pmdout.execute_cmd(self.__app_path + cmd, "#")
    +            self.__is_pmd_on = False
    +        except Exception as e:
    +            self.__is_pmd_on = True
    +        expected = \
    +            "iavf_lookup_proto_xtr_type(): wrong proto_xtr type, it should be: vlan|ipv4|ipv6|ipv6_flow|tcp|ip_offset" \
    +            if self.__is_iavf else \
    +            "handle_proto_xtr_arg(): The protocol extraction parameter is wrong : 'vxlan'"
    +        self.close_testpmd()
    +        self.verify(expected in out, "case test failed, testpmd started")
    +        # don't use parameter launch testpmd, testpmd started and rxdid value
    +        # is the default
    +        cmd = (
    +            "-l 1,2,3 "
    +            "-n {mem_channel} "
    +            "-w {pci} "
    +            "--log-level='ice,8' "
    +            "-- -i "
    +            "{port_opt}").format(**{
    +                'mem_channel': self.dut.get_memory_channels(),
    +                "pci": self.__pci,
    +                "param_type": param_type,
    +                "port_opt": port_opt,
    +            })
    +        out = self.__pmdout.execute_cmd(self.__app_path + cmd, "testpmd>")
    +        self.__is_pmd_on = True
    +        self.close_testpmd()
    +        self.__check_rxdid("RXDID[22]", out)
    +
    +    def check_ip_offset_of_ip(self):
    +        """
    +        Check ip offset of ip
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=18'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=18']]
    +        self.__verify_common(pkts_list)
    +
    +    def check_ip_offset_with_vlan(self):
    +        """
    +        check ip offset with vlan
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=22'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=22']]
    +        self.__verify_common(pkts_list)
    +
    +    def check_ip_offset_with_2_vlan_tag(self):
    +        """
    +        check offset with 2 vlan tag
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=26']]
    +        self.__verify_common(pkts_list)
    +
    +    def check_ip_offset_with_multi_MPLS(self):
    +        """
    +        check ip offset with multi MPLS
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=18'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=22'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=34'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=18'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=22'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=34']]
    +        self.__verify_common(pkts_list)
    +
    +    def check_ip_offset_with_multi_MPLS_with_vlan_tag(self):
    +        """
    +        check ip offset with multi MPLS with vlan tag
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=22'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=34'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=38'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=22'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=34'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=38']]
    +        self.__verify_common(pkts_list)
    +
    +    def check_ip_offset_with_multi_MPLS_with_2_vlan_tag(self):
    +        """
    +        check ip offset with multi MPLS with 2 vlan tag
    +        """
    +        self.start_testpmd("ip_offset", "RXDID[25]")
    +        pkts_list = [
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IP()',
    +             'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=34'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=38'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IP()',
    +                'ip_offset=42'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=1)/IPv6()',
    +                'ip_offset=26'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=30'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=34'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=38'],
    +            ['Ether(src="{src_mac}", dst="{dst_mac}",type=0x88A8)/Dot1Q(type=0x8100)/Dot1Q(type=0x8847)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=0)/MPLS(s=1)/IPv6()',
    +                'ip_offset=42']]
    +        self.__verify_common(pkts_list)
    -- 
    2.21.0



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

* Re: [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls
  2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
                   ` (4 preceding siblings ...)
  2020-11-10  6:30 ` Xu, HailinX
@ 2020-11-19  8:36 ` Tu, Lijuan
  5 siblings, 0 replies; 8+ messages in thread
From: Tu, Lijuan @ 2020-11-19  8:36 UTC (permalink / raw)
  To: Mo, YufengX, dts, Xu,  HailinX; +Cc: Mo, YufengX

> 
> v6:
>  -  update compile dep file name based on 20.11 rc3 change.
>  -  upload iavf_flexible_descriptor suite script for flexible iavf merged in
> 20.11 rc3.
> 
> v5:
>  -  rebase source code
> 
> v4:
>  -  add non escape string limit.
> 
> v3:
>  -  update compile dep file name based on 20.11 rc1 change.
> 
> v2:
>  -  update iavf test content
>  -  change the 'flex_desc' to 'proto_xtr' when start testpmd.
>  -  change check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues RXDIDs.
> 
> v1:
>  - add test cases for iavf/mpls.
> 
> yufengmx (3):
>   flexible_rxd: unify common test content
>   flexible_rxd: add mpls test cases
>   iavf_flexible_descriptor: upload suite
> 
>  tests/TestSuite_flexible_rxd.py             | 255 ++++-------
>  tests/TestSuite_iavf_flexible_descriptor.py | 246 ++++++++++
>  tests/flexible_common.py                    | 483 ++++++++++++++++++++
>  3 files changed, 825 insertions(+), 159 deletions(-)  create mode 100644
> tests/TestSuite_iavf_flexible_descriptor.py
>  create mode 100644 tests/flexible_common.py
> 
> --
> 2.21.0

Applied


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

end of thread, other threads:[~2020-11-19  8:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-10  6:18 [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls yufengmx
2020-11-10  6:18 ` [dts] [PATCH V6 1/3] flexible_rxd: unify common test content yufengmx
2020-11-18  6:43   ` Chen, Zhaoyan
2020-11-10  6:18 ` [dts] [PATCH V6 2/3] flexible_rxd: add mpls test cases yufengmx
2020-11-10  6:18 ` [dts] [PATCH V6 3/3] iavf_flexible_descriptor: upload suite yufengmx
2020-11-10  6:24 ` [dts] [PATCH V6 0/3] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
2020-11-10  6:30 ` Xu, HailinX
2020-11-19  8:36 ` Tu, Lijuan

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